libavcodec/frame_thread_encoder.c
fde1bc64
 /*
  * Copyright (c) 2012 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
183216b2
 #include <stdatomic.h>
 
fde1bc64
 #include "frame_thread_encoder.h"
 
 #include "libavutil/fifo.h"
 #include "libavutil/avassert.h"
 #include "libavutil/imgutils.h"
7d317d47
 #include "libavutil/opt.h"
a8bb81a0
 #include "libavutil/thread.h"
fde1bc64
 #include "avcodec.h"
 #include "internal.h"
 #include "thread.h"
 
 #define MAX_THREADS 64
 #define BUFFER_SIZE (2*MAX_THREADS)
 
 typedef struct{
     void *indata;
     void *outdata;
     int64_t return_code;
     unsigned index;
 } Task;
 
 typedef struct{
     AVCodecContext *parent_avctx;
     pthread_mutex_t buffer_mutex;
 
     AVFifoBuffer *task_fifo;
     pthread_mutex_t task_fifo_mutex;
     pthread_cond_t task_fifo_cond;
 
     Task finished_tasks[BUFFER_SIZE];
     pthread_mutex_t finished_task_mutex;
     pthread_cond_t finished_task_cond;
 
     unsigned task_index;
     unsigned finished_task_index;
 
     pthread_t worker[MAX_THREADS];
183216b2
     atomic_int exit;
fde1bc64
 } ThreadContext;
 
 static void * attribute_align_arg worker(void *v){
     AVCodecContext *avctx = v;
     ThreadContext *c = avctx->internal->frame_thread_encoder;
     AVPacket *pkt = NULL;
 
183216b2
     while (!atomic_load(&c->exit)) {
fde1bc64
         int got_packet, ret;
         AVFrame *frame;
         Task task;
 
015f976a
         if(!pkt) pkt = av_packet_alloc();
fde1bc64
         if(!pkt) continue;
         av_init_packet(pkt);
 
         pthread_mutex_lock(&c->task_fifo_mutex);
183216b2
         while (av_fifo_size(c->task_fifo) <= 0 || atomic_load(&c->exit)) {
             if (atomic_load(&c->exit)) {
fde1bc64
                 pthread_mutex_unlock(&c->task_fifo_mutex);
                 goto end;
             }
             pthread_cond_wait(&c->task_fifo_cond, &c->task_fifo_mutex);
         }
         av_fifo_generic_read(c->task_fifo, &task, sizeof(task), NULL);
         pthread_mutex_unlock(&c->task_fifo_mutex);
         frame = task.indata;
 
         ret = avcodec_encode_video2(avctx, pkt, frame, &got_packet);
         pthread_mutex_lock(&c->buffer_mutex);
80e9e63c
         av_frame_unref(frame);
fde1bc64
         pthread_mutex_unlock(&c->buffer_mutex);
80e9e63c
         av_frame_free(&frame);
f4aaf987
         if(got_packet) {
f90c9c30
             int ret2 = av_dup_packet(pkt);
             if (ret >= 0 && ret2 < 0)
                 ret = ret2;
f4aaf987
         } else {
3affcc99
             pkt->data = NULL;
             pkt->size = 0;
f4aaf987
         }
fde1bc64
         pthread_mutex_lock(&c->finished_task_mutex);
         c->finished_tasks[task.index].outdata = pkt; pkt = NULL;
         c->finished_tasks[task.index].return_code = ret;
         pthread_cond_signal(&c->finished_task_cond);
         pthread_mutex_unlock(&c->finished_task_mutex);
     }
 end:
     av_free(pkt);
     pthread_mutex_lock(&c->buffer_mutex);
     avcodec_close(avctx);
     pthread_mutex_unlock(&c->buffer_mutex);
     av_freep(&avctx);
     return NULL;
 }
 
097a909e
 int ff_frame_thread_encoder_init(AVCodecContext *avctx, AVDictionary *options){
fde1bc64
     int i=0;
     ThreadContext *c;
 
 
     if(   !(avctx->thread_type & FF_THREAD_FRAME)
444e9874
        || !(avctx->codec->capabilities & AV_CODEC_CAP_INTRA_ONLY))
fde1bc64
         return 0;
 
cfc36666
     if(   !avctx->thread_count
        && avctx->codec_id == AV_CODEC_ID_MJPEG
94d68a41
        && !(avctx->flags & AV_CODEC_FLAG_QSCALE)) {
cfc36666
         av_log(avctx, AV_LOG_DEBUG,
                "Forcing thread count to 1 for MJPEG encoding, use -thread_type slice "
                "or a constant quantizer if you want to use multiple cpu cores\n");
         avctx->thread_count = 1;
     }
e1cb6dc5
     if(   avctx->thread_count > 1
        && avctx->codec_id == AV_CODEC_ID_MJPEG
94d68a41
        && !(avctx->flags & AV_CODEC_FLAG_QSCALE))
e1cb6dc5
         av_log(avctx, AV_LOG_WARNING,
                "MJPEG CBR encoding works badly with frame multi-threading, consider "
                "using -threads 1, -thread_type slice or a constant quantizer.\n");
f7459bcf
 
     if (avctx->codec_id == AV_CODEC_ID_HUFFYUV ||
         avctx->codec_id == AV_CODEC_ID_FFVHUFF) {
14677807
         int warn = 0;
1a2d6055
         int context_model = 0;
         AVDictionaryEntry *con = av_dict_get(options, "context", NULL, AV_DICT_MATCH_CASE);
 
         if (con && con->value)
             context_model = atoi(con->value);
 
94d68a41
         if (avctx->flags & AV_CODEC_FLAG_PASS1)
14677807
             warn = 1;
1a2d6055
         else if(context_model > 0) {
14677807
             AVDictionaryEntry *t = av_dict_get(options, "non_deterministic",
                                                NULL, AV_DICT_MATCH_CASE);
             warn = !t || !t->value || !atoi(t->value) ? 1 : 0;
         }
466988ab
         // huffyuv does not support these with multiple frame threads currently
14677807
         if (warn) {
3c7220fc
             av_log(avctx, AV_LOG_WARNING,
                "Forcing thread count to 1 for huffyuv encoding with first pass or context 1\n");
f7459bcf
             avctx->thread_count = 1;
         }
     }
 
fde1bc64
     if(!avctx->thread_count) {
42bb3e4d
         avctx->thread_count = av_cpu_count();
fde1bc64
         avctx->thread_count = FFMIN(avctx->thread_count, MAX_THREADS);
     }
 
     if(avctx->thread_count <= 1)
         return 0;
 
     if(avctx->thread_count > MAX_THREADS)
         return AVERROR(EINVAL);
 
     av_assert0(!avctx->internal->frame_thread_encoder);
     c = avctx->internal->frame_thread_encoder = av_mallocz(sizeof(ThreadContext));
     if(!c)
         return AVERROR(ENOMEM);
 
     c->parent_avctx = avctx;
 
bc4f362c
     c->task_fifo = av_fifo_alloc_array(BUFFER_SIZE, sizeof(Task));
fde1bc64
     if(!c->task_fifo)
         goto fail;
 
     pthread_mutex_init(&c->task_fifo_mutex, NULL);
     pthread_mutex_init(&c->finished_task_mutex, NULL);
     pthread_mutex_init(&c->buffer_mutex, NULL);
     pthread_cond_init(&c->task_fifo_cond, NULL);
     pthread_cond_init(&c->finished_task_cond, NULL);
183216b2
     atomic_init(&c->exit, 0);
fde1bc64
 
     for(i=0; i<avctx->thread_count ; i++){
097a909e
         AVDictionary *tmp = NULL;
3118e81f
         int ret;
f472d01c
         void *tmpv;
fde1bc64
         AVCodecContext *thread_avctx = avcodec_alloc_context3(avctx->codec);
         if(!thread_avctx)
             goto fail;
f472d01c
         tmpv = thread_avctx->priv_data;
fde1bc64
         *thread_avctx = *avctx;
3118e81f
         ret = av_opt_copy(thread_avctx, avctx);
a149fa97
         if (ret < 0)
             goto fail;
f472d01c
         thread_avctx->priv_data = tmpv;
fde1bc64
         thread_avctx->internal = NULL;
7d317d47
         if (avctx->codec->priv_class) {
             int ret = av_opt_copy(thread_avctx->priv_data, avctx->priv_data);
             if (ret < 0)
                 goto fail;
         } else
             memcpy(thread_avctx->priv_data, avctx->priv_data, avctx->codec->priv_data_size);
fde1bc64
         thread_avctx->thread_count = 1;
         thread_avctx->active_thread_type &= ~FF_THREAD_FRAME;
 
097a909e
         av_dict_copy(&tmp, options, 0);
         av_dict_set(&tmp, "threads", "1", 0);
         if(avcodec_open2(thread_avctx, avctx->codec, &tmp) < 0) {
             av_dict_free(&tmp);
fde1bc64
             goto fail;
         }
097a909e
         av_dict_free(&tmp);
fde1bc64
         av_assert0(!thread_avctx->internal->frame_thread_encoder);
         thread_avctx->internal->frame_thread_encoder = c;
         if(pthread_create(&c->worker[i], NULL, worker, thread_avctx)) {
             goto fail;
         }
     }
 
     avctx->active_thread_type = FF_THREAD_FRAME;
 
     return 0;
 fail:
     avctx->thread_count = i;
     av_log(avctx, AV_LOG_ERROR, "ff_frame_thread_encoder_init failed\n");
     ff_frame_thread_encoder_free(avctx);
     return -1;
 }
 
 void ff_frame_thread_encoder_free(AVCodecContext *avctx){
     int i;
     ThreadContext *c= avctx->internal->frame_thread_encoder;
 
     pthread_mutex_lock(&c->task_fifo_mutex);
183216b2
     atomic_store(&c->exit, 1);
fde1bc64
     pthread_cond_broadcast(&c->task_fifo_cond);
     pthread_mutex_unlock(&c->task_fifo_mutex);
 
     for (i=0; i<avctx->thread_count; i++) {
          pthread_join(c->worker[i], NULL);
     }
 
     pthread_mutex_destroy(&c->task_fifo_mutex);
     pthread_mutex_destroy(&c->finished_task_mutex);
     pthread_mutex_destroy(&c->buffer_mutex);
     pthread_cond_destroy(&c->task_fifo_cond);
     pthread_cond_destroy(&c->finished_task_cond);
9b60d907
     av_fifo_freep(&c->task_fifo);
fde1bc64
     av_freep(&avctx->internal->frame_thread_encoder);
 }
 
 int ff_thread_video_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet_ptr){
     ThreadContext *c = avctx->internal->frame_thread_encoder;
     Task task;
     int ret;
 
     av_assert1(!*got_packet_ptr);
 
     if(frame){
1ffcf6ac
         AVFrame *new = av_frame_alloc();
         if(!new)
             return AVERROR(ENOMEM);
         ret = av_frame_ref(new, frame);
         if(ret < 0) {
             av_frame_free(&new);
             return ret;
fde1bc64
         }
 
         task.index = c->task_index;
1ffcf6ac
         task.indata = (void*)new;
fde1bc64
         pthread_mutex_lock(&c->task_fifo_mutex);
         av_fifo_generic_write(c->task_fifo, &task, sizeof(task), NULL);
         pthread_cond_signal(&c->task_fifo_cond);
         pthread_mutex_unlock(&c->task_fifo_mutex);
 
         c->task_index = (c->task_index+1) % BUFFER_SIZE;
     }
 
     pthread_mutex_lock(&c->finished_task_mutex);
d98f34d7
     if (c->task_index == c->finished_task_index ||
         (frame && !c->finished_tasks[c->finished_task_index].outdata &&
          (c->task_index - c->finished_task_index) % BUFFER_SIZE <= avctx->thread_count)) {
             pthread_mutex_unlock(&c->finished_task_mutex);
             return 0;
         }
 
fde1bc64
     while (!c->finished_tasks[c->finished_task_index].outdata) {
         pthread_cond_wait(&c->finished_task_cond, &c->finished_task_mutex);
     }
     task = c->finished_tasks[c->finished_task_index];
     *pkt = *(AVPacket*)(task.outdata);
f4aaf987
     if(pkt->data)
         *got_packet_ptr = 1;
991db639
     av_freep(&c->finished_tasks[c->finished_task_index].outdata);
fde1bc64
     c->finished_task_index = (c->finished_task_index+1) % BUFFER_SIZE;
     pthread_mutex_unlock(&c->finished_task_mutex);
 
     return task.return_code;
 }