Skip to content
Snippets Groups Projects
pthread.c 32.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •     pthread_mutex_unlock(&fctx->buffer_mutex);
    
    }
    
    /**
     * Set the threading algorithms used.
     *
     * Threading requires more than one thread.
     * Frame threading requires entire frames to be passed to the codec,
     * and introduces extra decoding delay, so is incompatible with low_delay.
     *
     * @param avctx The context.
     */
    static void validate_thread_parameters(AVCodecContext *avctx)
    {
        int frame_threading_supported = (avctx->codec->capabilities & CODEC_CAP_FRAME_THREADS)
                                    && !(avctx->flags & CODEC_FLAG_TRUNCATED)
                                    && !(avctx->flags & CODEC_FLAG_LOW_DELAY)
                                    && !(avctx->flags2 & CODEC_FLAG2_CHUNKS);
        if (avctx->thread_count == 1) {
            avctx->active_thread_type = 0;
        } else if (frame_threading_supported && (avctx->thread_type & FF_THREAD_FRAME)) {
            avctx->active_thread_type = FF_THREAD_FRAME;
    
        } else if (avctx->codec->capabilities & CODEC_CAP_SLICE_THREADS &&
                   avctx->thread_type & FF_THREAD_SLICE) {
    
            avctx->active_thread_type = FF_THREAD_SLICE;
    
        } else if (!(avctx->codec->capabilities & CODEC_CAP_AUTO_THREADS)) {
            avctx->thread_count       = 1;
            avctx->active_thread_type = 0;
    
    
        if (avctx->thread_count > MAX_AUTO_THREADS)
            av_log(avctx, AV_LOG_WARNING,
                   "Application has requested %d threads. Using a thread count greater than %d is not recommended.\n",
                   avctx->thread_count, MAX_AUTO_THREADS);
    
    int ff_thread_init(AVCodecContext *avctx)
    
    {
        if (avctx->thread_opaque) {
            av_log(avctx, AV_LOG_ERROR, "avcodec_thread_init is ignored after avcodec_open\n");
            return -1;
        }
    
    
    #if HAVE_W32THREADS
        w32thread_init();
    #endif
    
    
        if (avctx->codec) {
            validate_thread_parameters(avctx);
    
            if (avctx->active_thread_type&FF_THREAD_SLICE)
                return thread_init(avctx);
            else if (avctx->active_thread_type&FF_THREAD_FRAME)
                return frame_thread_init(avctx);
        }
    
        return 0;
    }
    
    
    void ff_thread_free(AVCodecContext *avctx)
    
    {
        if (avctx->active_thread_type&FF_THREAD_FRAME)
            frame_thread_free(avctx, avctx->thread_count);
        else
            thread_free(avctx);
    }