FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pthread_frame.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 /**
20  * @file
21  * Frame multithreading support functions
22  * @see doc/multithreading.txt
23  */
24 
25 #include "config.h"
26 
27 #include <stdint.h>
28 
29 #include "avcodec.h"
30 #include "internal.h"
31 #include "pthread_internal.h"
32 #include "thread.h"
33 #include "version.h"
34 
35 #include "libavutil/avassert.h"
36 #include "libavutil/buffer.h"
37 #include "libavutil/common.h"
38 #include "libavutil/cpu.h"
39 #include "libavutil/frame.h"
40 #include "libavutil/internal.h"
41 #include "libavutil/log.h"
42 #include "libavutil/mem.h"
43 #include "libavutil/opt.h"
44 #include "libavutil/thread.h"
45 
46 /**
47  * Context used by codec threads and stored in their AVCodecInternal thread_ctx.
48  */
49 typedef struct PerThreadContext {
51 
54  pthread_cond_t input_cond; ///< Used to wait for a new packet from the main thread.
55  pthread_cond_t progress_cond; ///< Used by child threads to wait for progress to change.
56  pthread_cond_t output_cond; ///< Used by the main thread to wait for frames to finish.
57 
58  pthread_mutex_t mutex; ///< Mutex used to protect the contents of the PerThreadContext.
59  pthread_mutex_t progress_mutex; ///< Mutex used to protect frame progress values and progress_cond.
60 
61  AVCodecContext *avctx; ///< Context used to decode packets passed to this thread.
62 
63  AVPacket avpkt; ///< Input packet (for decoding) or output (for encoding).
64 
65  AVFrame *frame; ///< Output frame (for decoding) or input (for encoding).
66  int got_frame; ///< The output of got_picture_ptr from the last avcodec_decode_video() call.
67  int result; ///< The result of the last codec decode/encode() call.
68 
69  enum {
70  STATE_INPUT_READY, ///< Set when the thread is awaiting a packet.
71  STATE_SETTING_UP, ///< Set before the codec has called ff_thread_finish_setup().
73  * Set when the codec calls get_buffer().
74  * State is returned to STATE_SETTING_UP afterwards.
75  */
77  * Set when the codec calls get_format().
78  * State is returned to STATE_SETTING_UP afterwards.
79  */
80  STATE_SETUP_FINISHED ///< Set after the codec has called ff_thread_finish_setup().
81  } state;
82 
83  /**
84  * Array of frames passed to ff_thread_release_buffer().
85  * Frames are released after all threads referencing them are finished.
86  */
90 
91  AVFrame *requested_frame; ///< AVFrame the codec passed to get_buffer()
92  int requested_flags; ///< flags passed to get_buffer() for requested_frame
93 
94  const enum AVPixelFormat *available_formats; ///< Format array for get_format()
95  enum AVPixelFormat result_format; ///< get_format() result
96 
97  int die; ///< Set when the thread should exit.
99 
100 /**
101  * Context stored in the client AVCodecInternal thread_ctx.
102  */
103 typedef struct FrameThreadContext {
104  PerThreadContext *threads; ///< The contexts for each thread.
105  PerThreadContext *prev_thread; ///< The last thread submit_packet() was called on.
106 
107  pthread_mutex_t buffer_mutex; ///< Mutex used to protect get/release_buffer().
108 
109  int next_decoding; ///< The next context to submit a packet to.
110  int next_finished; ///< The next context to return output from.
111 
112  int delaying; /**<
113  * Set for the first N packets, where N is the number of threads.
114  * While it is set, ff_thread_en/decode_frame won't return any results.
115  */
117 
118 #define THREAD_SAFE_CALLBACKS(avctx) \
119 ((avctx)->thread_safe_callbacks || (avctx)->get_buffer2 == avcodec_default_get_buffer2)
120 
121 /**
122  * Codec worker thread.
123  *
124  * Automatically calls ff_thread_finish_setup() if the codec does
125  * not provide an update_thread_context method, or if the codec returns
126  * before calling it.
127  */
128 static attribute_align_arg void *frame_worker_thread(void *arg)
129 {
130  PerThreadContext *p = arg;
131  AVCodecContext *avctx = p->avctx;
132  const AVCodec *codec = avctx->codec;
133 
135  while (1) {
136  while (p->state == STATE_INPUT_READY && !p->die)
138 
139  if (p->die) break;
140 
141  if (!codec->update_thread_context && THREAD_SAFE_CALLBACKS(avctx))
142  ff_thread_finish_setup(avctx);
143 
144  av_frame_unref(p->frame);
145  p->got_frame = 0;
146  p->result = codec->decode(avctx, p->frame, &p->got_frame, &p->avpkt);
147 
148  if ((p->result < 0 || !p->got_frame) && p->frame->buf[0]) {
149  if (avctx->internal->allocate_progress)
150  av_log(avctx, AV_LOG_ERROR, "A frame threaded decoder did not "
151  "free the frame on failure. This is a bug, please report it.\n");
152  av_frame_unref(p->frame);
153  }
154 
155  if (p->state == STATE_SETTING_UP) ff_thread_finish_setup(avctx);
156 
158 #if 0 //BUFREF-FIXME
159  for (i = 0; i < MAX_BUFFERS; i++)
160  if (p->progress_used[i] && (p->got_frame || p->result<0 || avctx->codec_id != AV_CODEC_ID_H264)) {
161  p->progress[i][0] = INT_MAX;
162  p->progress[i][1] = INT_MAX;
163  }
164 #endif
165  p->state = STATE_INPUT_READY;
166 
170  }
172 
173  return NULL;
174 }
175 
176 /**
177  * Update the next thread's AVCodecContext with values from the reference thread's context.
178  *
179  * @param dst The destination context.
180  * @param src The source context.
181  * @param for_user 0 if the destination is a codec thread, 1 if the destination is the user's thread
182  * @return 0 on success, negative error code on failure
183  */
185 {
186  int err = 0;
187 
188  if (dst != src) {
189  dst->time_base = src->time_base;
190  dst->framerate = src->framerate;
191  dst->width = src->width;
192  dst->height = src->height;
193  dst->pix_fmt = src->pix_fmt;
194 
195  dst->coded_width = src->coded_width;
196  dst->coded_height = src->coded_height;
197 
198  dst->has_b_frames = src->has_b_frames;
199  dst->idct_algo = src->idct_algo;
200 
203 #if FF_API_AFD
207 #endif /* FF_API_AFD */
208 
209  dst->profile = src->profile;
210  dst->level = src->level;
211 
213  dst->ticks_per_frame = src->ticks_per_frame;
214  dst->color_primaries = src->color_primaries;
215 
216  dst->color_trc = src->color_trc;
217  dst->colorspace = src->colorspace;
218  dst->color_range = src->color_range;
220 
221  dst->hwaccel = src->hwaccel;
222  dst->hwaccel_context = src->hwaccel_context;
223 
224  dst->channels = src->channels;
225  dst->sample_rate = src->sample_rate;
226  dst->sample_fmt = src->sample_fmt;
227  dst->channel_layout = src->channel_layout;
229  }
230 
231  if (for_user) {
232  dst->delay = src->thread_count - 1;
233 #if FF_API_CODED_FRAME
235  dst->coded_frame = src->coded_frame;
237 #endif
238  } else {
239  if (dst->codec->update_thread_context)
240  err = dst->codec->update_thread_context(dst, src);
241  }
242 
243  return err;
244 }
245 
246 /**
247  * Update the next thread's AVCodecContext with values set by the user.
248  *
249  * @param dst The destination context.
250  * @param src The source context.
251  * @return 0 on success, negative error code on failure
252  */
254 {
255 #define copy_fields(s, e) memcpy(&dst->s, &src->s, (char*)&dst->e - (char*)&dst->s);
256  dst->flags = src->flags;
257 
258  dst->draw_horiz_band= src->draw_horiz_band;
259  dst->get_buffer2 = src->get_buffer2;
260 
261  dst->opaque = src->opaque;
262  dst->debug = src->debug;
263  dst->debug_mv = src->debug_mv;
264 
265  dst->slice_flags = src->slice_flags;
266  dst->flags2 = src->flags2;
267 
268  copy_fields(skip_loop_filter, subtitle_header);
269 
270  dst->frame_number = src->frame_number;
273 
274  if (src->slice_count && src->slice_offset) {
275  if (dst->slice_count < src->slice_count) {
276  int err = av_reallocp_array(&dst->slice_offset, src->slice_count,
277  sizeof(*dst->slice_offset));
278  if (err < 0)
279  return err;
280  }
281  memcpy(dst->slice_offset, src->slice_offset,
282  src->slice_count * sizeof(*dst->slice_offset));
283  }
284  dst->slice_count = src->slice_count;
285  return 0;
286 #undef copy_fields
287 }
288 
289 /// Releases the buffers that this decoding thread was the last user of.
291 {
292  FrameThreadContext *fctx = p->parent;
293 
294  while (p->num_released_buffers > 0) {
295  AVFrame *f;
296 
298 
299  // fix extended data in case the caller screwed it up
303  f->extended_data = f->data;
304  av_frame_unref(f);
305 
307  }
308 }
309 
311 {
312  FrameThreadContext *fctx = p->parent;
313  PerThreadContext *prev_thread = fctx->prev_thread;
314  const AVCodec *codec = p->avctx->codec;
315 
316  if (!avpkt->size && !(codec->capabilities & AV_CODEC_CAP_DELAY))
317  return 0;
318 
320 
322 
323  if (prev_thread) {
324  int err;
325  if (prev_thread->state == STATE_SETTING_UP) {
326  pthread_mutex_lock(&prev_thread->progress_mutex);
327  while (prev_thread->state == STATE_SETTING_UP)
328  pthread_cond_wait(&prev_thread->progress_cond, &prev_thread->progress_mutex);
329  pthread_mutex_unlock(&prev_thread->progress_mutex);
330  }
331 
332  err = update_context_from_thread(p->avctx, prev_thread->avctx, 0);
333  if (err) {
335  return err;
336  }
337  }
338 
339  av_packet_unref(&p->avpkt);
340  av_packet_ref(&p->avpkt, avpkt);
341 
342  p->state = STATE_SETTING_UP;
345 
346  /*
347  * If the client doesn't have a thread-safe get_buffer(),
348  * then decoding threads call back to the main thread,
349  * and it calls back to the client here.
350  */
351 
352  if (!p->avctx->thread_safe_callbacks && (
355  while (p->state != STATE_SETUP_FINISHED && p->state != STATE_INPUT_READY) {
356  int call_done = 1;
358  while (p->state == STATE_SETTING_UP)
360 
361  switch (p->state) {
362  case STATE_GET_BUFFER:
364  break;
365  case STATE_GET_FORMAT:
367  break;
368  default:
369  call_done = 0;
370  break;
371  }
372  if (call_done) {
373  p->state = STATE_SETTING_UP;
375  }
377  }
378  }
379 
380  fctx->prev_thread = p;
381  fctx->next_decoding++;
382 
383  return 0;
384 }
385 
387  AVFrame *picture, int *got_picture_ptr,
388  AVPacket *avpkt)
389 {
390  FrameThreadContext *fctx = avctx->internal->thread_ctx;
391  int finished = fctx->next_finished;
392  PerThreadContext *p;
393  int err;
394 
395  /*
396  * Submit a packet to the next decoding thread.
397  */
398 
399  p = &fctx->threads[fctx->next_decoding];
400  err = update_context_from_user(p->avctx, avctx);
401  if (err) return err;
402  err = submit_packet(p, avpkt);
403  if (err) return err;
404 
405  /*
406  * If we're still receiving the initial packets, don't return a frame.
407  */
408 
409  if (fctx->next_decoding > (avctx->thread_count-1-(avctx->codec_id == AV_CODEC_ID_FFV1)))
410  fctx->delaying = 0;
411 
412  if (fctx->delaying) {
413  *got_picture_ptr=0;
414  if (avpkt->size)
415  return avpkt->size;
416  }
417 
418  /*
419  * Return the next available frame from the oldest thread.
420  * If we're at the end of the stream, then we have to skip threads that
421  * didn't output a frame, because we don't want to accidentally signal
422  * EOF (avpkt->size == 0 && *got_picture_ptr == 0).
423  */
424 
425  do {
426  p = &fctx->threads[finished++];
427 
428  if (p->state != STATE_INPUT_READY) {
430  while (p->state != STATE_INPUT_READY)
433  }
434 
435  av_frame_move_ref(picture, p->frame);
436  *got_picture_ptr = p->got_frame;
437  picture->pkt_dts = p->avpkt.dts;
438 
439  if (p->result < 0)
440  err = p->result;
441 
442  /*
443  * A later call with avkpt->size == 0 may loop over all threads,
444  * including this one, searching for a frame to return before being
445  * stopped by the "finished != fctx->next_finished" condition.
446  * Make sure we don't mistakenly return the same frame again.
447  */
448  p->got_frame = 0;
449 
450  if (finished >= avctx->thread_count) finished = 0;
451  } while (!avpkt->size && !*got_picture_ptr && finished != fctx->next_finished);
452 
453  update_context_from_thread(avctx, p->avctx, 1);
454 
455  if (fctx->next_decoding >= avctx->thread_count) fctx->next_decoding = 0;
456 
457  fctx->next_finished = finished;
458 
459  /*
460  * When no frame was found while flushing, but an error occurred in
461  * any thread, return it instead of 0.
462  * Otherwise the error can get lost.
463  */
464  if (!avpkt->size && !*got_picture_ptr)
465  return err;
466 
467  /* return the size of the consumed packet if no error occurred */
468  return (p->result >= 0) ? avpkt->size : p->result;
469 }
470 
471 void ff_thread_report_progress(ThreadFrame *f, int n, int field)
472 {
473  PerThreadContext *p;
474  volatile int *progress = f->progress ? (int*)f->progress->data : NULL;
475 
476  if (!progress || progress[field] >= n) return;
477 
478  p = f->owner->internal->thread_ctx;
479 
480  if (f->owner->debug&FF_DEBUG_THREADS)
481  av_log(f->owner, AV_LOG_DEBUG, "%p finished %d field %d\n", progress, n, field);
482 
484  progress[field] = n;
487 }
488 
489 void ff_thread_await_progress(ThreadFrame *f, int n, int field)
490 {
491  PerThreadContext *p;
492  volatile int *progress = f->progress ? (int*)f->progress->data : NULL;
493 
494  if (!progress || progress[field] >= n) return;
495 
496  p = f->owner->internal->thread_ctx;
497 
498  if (f->owner->debug&FF_DEBUG_THREADS)
499  av_log(f->owner, AV_LOG_DEBUG, "thread awaiting %d field %d from %p\n", n, field, progress);
500 
502  while (progress[field] < n)
505 }
506 
508  PerThreadContext *p = avctx->internal->thread_ctx;
509 
510  if (!(avctx->active_thread_type&FF_THREAD_FRAME)) return;
511 
512  if(p->state == STATE_SETUP_FINISHED){
513  av_log(avctx, AV_LOG_WARNING, "Multiple ff_thread_finish_setup() calls\n");
514  }
515 
517  p->state = STATE_SETUP_FINISHED;
520 }
521 
522 /// Waits for all threads to finish.
523 static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
524 {
525  int i;
526 
527  for (i = 0; i < thread_count; i++) {
528  PerThreadContext *p = &fctx->threads[i];
529 
530  if (p->state != STATE_INPUT_READY) {
532  while (p->state != STATE_INPUT_READY)
535  }
536  p->got_frame = 0;
537  }
538 }
539 
540 void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
541 {
542  FrameThreadContext *fctx = avctx->internal->thread_ctx;
543  const AVCodec *codec = avctx->codec;
544  int i;
545 
546  park_frame_worker_threads(fctx, thread_count);
547 
548  if (fctx->prev_thread && fctx->prev_thread != fctx->threads)
549  if (update_context_from_thread(fctx->threads->avctx, fctx->prev_thread->avctx, 0) < 0) {
550  av_log(avctx, AV_LOG_ERROR, "Final thread update failed\n");
552  fctx->threads->avctx->internal->is_copy = 1;
553  }
554 
555  for (i = 0; i < thread_count; i++) {
556  PerThreadContext *p = &fctx->threads[i];
557 
559  p->die = 1;
562 
563  if (p->thread_init)
564  pthread_join(p->thread, NULL);
565  p->thread_init=0;
566 
567  if (codec->close && p->avctx)
568  codec->close(p->avctx);
569 
571  av_frame_free(&p->frame);
572  }
573 
574  for (i = 0; i < thread_count; i++) {
575  PerThreadContext *p = &fctx->threads[i];
576 
582  av_packet_unref(&p->avpkt);
584 
585  if (i && p->avctx) {
586  av_freep(&p->avctx->priv_data);
588  }
589 
590  if (p->avctx)
591  av_freep(&p->avctx->internal);
592  av_freep(&p->avctx);
593  }
594 
595  av_freep(&fctx->threads);
597  av_freep(&avctx->internal->thread_ctx);
598 
599  if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
600  av_opt_free(avctx->priv_data);
601  avctx->codec = NULL;
602 }
603 
605 {
606  int thread_count = avctx->thread_count;
607  const AVCodec *codec = avctx->codec;
608  AVCodecContext *src = avctx;
609  FrameThreadContext *fctx;
610  int i, err = 0;
611 
612 #if HAVE_W32THREADS
613  w32thread_init();
614 #endif
615 
616  if (!thread_count) {
617  int nb_cpus = av_cpu_count();
618  if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) || avctx->debug_mv)
619  nb_cpus = 1;
620  // use number of cores + 1 as thread count if there is more than one
621  if (nb_cpus > 1)
622  thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);
623  else
624  thread_count = avctx->thread_count = 1;
625  }
626 
627  if (thread_count <= 1) {
628  avctx->active_thread_type = 0;
629  return 0;
630  }
631 
632  avctx->internal->thread_ctx = fctx = av_mallocz(sizeof(FrameThreadContext));
633  if (!fctx)
634  return AVERROR(ENOMEM);
635 
636  fctx->threads = av_mallocz_array(thread_count, sizeof(PerThreadContext));
637  if (!fctx->threads) {
638  av_freep(&avctx->internal->thread_ctx);
639  return AVERROR(ENOMEM);
640  }
641 
643  fctx->delaying = 1;
644 
645  for (i = 0; i < thread_count; i++) {
647  PerThreadContext *p = &fctx->threads[i];
648 
654 
655  p->frame = av_frame_alloc();
656  if (!p->frame) {
657  av_freep(&copy);
658  err = AVERROR(ENOMEM);
659  goto error;
660  }
661 
662  p->parent = fctx;
663  p->avctx = copy;
664 
665  if (!copy) {
666  err = AVERROR(ENOMEM);
667  goto error;
668  }
669 
670  *copy = *src;
671 
672  copy->internal = av_malloc(sizeof(AVCodecInternal));
673  if (!copy->internal) {
674  copy->priv_data = NULL;
675  err = AVERROR(ENOMEM);
676  goto error;
677  }
678  *copy->internal = *src->internal;
679  copy->internal->thread_ctx = p;
680  copy->internal->pkt = &p->avpkt;
681 
682  if (!i) {
683  src = copy;
684 
685  if (codec->init)
686  err = codec->init(copy);
687 
688  update_context_from_thread(avctx, copy, 1);
689  } else {
690  copy->priv_data = av_malloc(codec->priv_data_size);
691  if (!copy->priv_data) {
692  err = AVERROR(ENOMEM);
693  goto error;
694  }
695  memcpy(copy->priv_data, src->priv_data, codec->priv_data_size);
696  copy->internal->is_copy = 1;
697 
698  if (codec->init_thread_copy)
699  err = codec->init_thread_copy(copy);
700  }
701 
702  if (err) goto error;
703 
705  p->thread_init= !err;
706  if(!p->thread_init)
707  goto error;
708  }
709 
710  return 0;
711 
712 error:
713  ff_frame_thread_free(avctx, i+1);
714 
715  return err;
716 }
717 
719 {
720  int i;
721  FrameThreadContext *fctx = avctx->internal->thread_ctx;
722 
723  if (!fctx) return;
724 
726  if (fctx->prev_thread) {
727  if (fctx->prev_thread != &fctx->threads[0])
729  }
730 
731  fctx->next_decoding = fctx->next_finished = 0;
732  fctx->delaying = 1;
733  fctx->prev_thread = NULL;
734  for (i = 0; i < avctx->thread_count; i++) {
735  PerThreadContext *p = &fctx->threads[i];
736  // Make sure decode flush calls with size=0 won't return old frames
737  p->got_frame = 0;
738  av_frame_unref(p->frame);
739 
741 
742  if (avctx->codec->flush)
743  avctx->codec->flush(p->avctx);
744  }
745 }
746 
748 {
749  PerThreadContext *p = avctx->internal->thread_ctx;
750  if ((avctx->active_thread_type&FF_THREAD_FRAME) && p->state != STATE_SETTING_UP &&
751  (avctx->codec->update_thread_context || !THREAD_SAFE_CALLBACKS(avctx))) {
752  return 0;
753  }
754  return 1;
755 }
756 
758 {
759  PerThreadContext *p = avctx->internal->thread_ctx;
760  int err;
761 
762  f->owner = avctx;
763 
764  ff_init_buffer_info(avctx, f->f);
765 
766  if (!(avctx->active_thread_type & FF_THREAD_FRAME))
767  return ff_get_buffer(avctx, f->f, flags);
768 
769  if (p->state != STATE_SETTING_UP &&
770  (avctx->codec->update_thread_context || !THREAD_SAFE_CALLBACKS(avctx))) {
771  av_log(avctx, AV_LOG_ERROR, "get_buffer() cannot be called after ff_thread_finish_setup()\n");
772  return -1;
773  }
774 
775  if (avctx->internal->allocate_progress) {
776  int *progress;
777  f->progress = av_buffer_alloc(2 * sizeof(int));
778  if (!f->progress) {
779  return AVERROR(ENOMEM);
780  }
781  progress = (int*)f->progress->data;
782 
783  progress[0] = progress[1] = -1;
784  }
785 
787  if (avctx->thread_safe_callbacks ||
789  err = ff_get_buffer(avctx, f->f, flags);
790  } else {
792  p->requested_frame = f->f;
793  p->requested_flags = flags;
794  p->state = STATE_GET_BUFFER;
796 
797  while (p->state != STATE_SETTING_UP)
799 
800  err = p->result;
801 
803 
804  }
805  if (!THREAD_SAFE_CALLBACKS(avctx) && !avctx->codec->update_thread_context)
806  ff_thread_finish_setup(avctx);
807  if (err)
809 
811 
812  return err;
813 }
814 
816 {
817  enum AVPixelFormat res;
818  PerThreadContext *p = avctx->internal->thread_ctx;
819  if (!(avctx->active_thread_type & FF_THREAD_FRAME) || avctx->thread_safe_callbacks ||
821  return ff_get_format(avctx, fmt);
822  if (p->state != STATE_SETTING_UP) {
823  av_log(avctx, AV_LOG_ERROR, "get_format() cannot be called after ff_thread_finish_setup()\n");
824  return -1;
825  }
827  p->available_formats = fmt;
828  p->state = STATE_GET_FORMAT;
830 
831  while (p->state != STATE_SETTING_UP)
833 
834  res = p->result_format;
835 
837 
838  return res;
839 }
840 
842 {
843  int ret = thread_get_buffer_internal(avctx, f, flags);
844  if (ret < 0)
845  av_log(avctx, AV_LOG_ERROR, "thread_get_buffer() failed\n");
846  return ret;
847 }
848 
850 {
851  PerThreadContext *p = avctx->internal->thread_ctx;
852  FrameThreadContext *fctx;
853  AVFrame *dst, *tmp;
854  int can_direct_free = !(avctx->active_thread_type & FF_THREAD_FRAME) ||
855  avctx->thread_safe_callbacks ||
857 
858  if (!f->f || !f->f->buf[0])
859  return;
860 
861  if (avctx->debug & FF_DEBUG_BUFFERS)
862  av_log(avctx, AV_LOG_DEBUG, "thread_release_buffer called on pic %p\n", f);
863 
865  f->owner = NULL;
866 
867  if (can_direct_free) {
868  av_frame_unref(f->f);
869  return;
870  }
871 
872  fctx = p->parent;
874 
875  if (p->num_released_buffers + 1 >= INT_MAX / sizeof(*p->released_buffers))
876  goto fail;
878  (p->num_released_buffers + 1) *
879  sizeof(*p->released_buffers));
880  if (!tmp)
881  goto fail;
882  p->released_buffers = tmp;
883 
885  av_frame_move_ref(dst, f->f);
886 
888 
889 fail:
891 }
static int thread_get_buffer_internal(AVCodecContext *avctx, ThreadFrame *f, int flags)
static av_unused void w32thread_init(void)
Definition: w32pthreads.h:397
#define FF_DEBUG_VIS_MB_TYPE
only access through AVOptions from outside libavcodec
Definition: avcodec.h:2939
pthread_cond_t progress_cond
Used by child threads to wait for progress to change.
Definition: pthread_frame.c:55
#define NULL
Definition: coverity.c:32
const struct AVCodec * codec
Definition: avcodec.h:1685
AVRational framerate
Definition: avcodec.h:3375
static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex)
Definition: os2threads.h:106
static void copy(const float *p1, float *p2, const int length)
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
#define copy_fields(s, e)
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
enum PerThreadContext::@105 state
static av_always_inline int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
Definition: os2threads.h:164
Context used by codec threads and stored in their AVCodecInternal thread_ctx.
Definition: pthread_frame.c:49
int av_cpu_count(void)
Definition: cpu.c:256
AVFrame * requested_frame
AVFrame the codec passed to get_buffer()
Definition: pthread_frame.c:91
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:1878
const char * fmt
Definition: avisynth_c.h:769
void(* flush)(AVCodecContext *)
Flush buffers.
Definition: avcodec.h:3704
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
AVFrame * f
Definition: thread.h:36
Memory handling functions.
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:367
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:2413
int size
Definition: avcodec.h:1602
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:2087
AVPacket * pkt
Current packet as passed into the decoder, to avoid having to pass the packet into every function...
Definition: internal.h:144
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1904
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:517
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:252
int(* decode)(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt)
Definition: avcodec.h:3683
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:3077
pthread_cond_t input_cond
Used to wait for a new packet from the main thread.
Definition: pthread_frame.c:54
void ff_thread_await_progress(ThreadFrame *f, int n, int field)
Wait for earlier decoding threads to finish reference pictures.
int profile
profile
Definition: avcodec.h:3181
enum AVPixelFormat * available_formats
Format array for get_format()
Definition: pthread_frame.c:94
AVCodec.
Definition: avcodec.h:3600
static av_always_inline int pthread_cond_destroy(pthread_cond_t *cond)
Definition: os2threads.h:138
AVPacket avpkt
Input packet (for decoding) or output (for encoding).
Definition: pthread_frame.c:63
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1813
struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2996
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:984
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int(* init_thread_copy)(AVCodecContext *)
If defined, called on thread contexts when they are created.
Definition: avcodec.h:3647
HMTX pthread_mutex_t
Definition: os2threads.h:49
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Definition: utils.c:1047
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:2446
#define av_malloc(s)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:145
void * hwaccel_context
Hardware accelerator context.
Definition: avcodec.h:3008
AVOptions.
static attribute_align_arg void * frame_worker_thread(void *arg)
Codec worker thread.
void * thread_ctx
Definition: internal.h:138
Multithreading support functions.
#define THREAD_SAFE_CALLBACKS(avctx)
static int submit_packet(PerThreadContext *p, AVPacket *avpkt)
int requested_flags
flags passed to get_buffer() for requested_frame
Definition: pthread_frame.c:92
int next_decoding
The next context to submit a packet to.
static av_always_inline int pthread_cond_signal(pthread_cond_t *cond)
Definition: os2threads.h:146
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:3070
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2420
Context stored in the client AVCodecInternal thread_ctx.
AVCodecContext * avctx
Context used to decode packets passed to this thread.
Definition: pthread_frame.c:61
#define av_log(a,...)
AVCodecContext * owner
Definition: thread.h:37
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
Definition: avpacket.c:576
int die
Set when the thread should exit.
Definition: pthread_frame.c:97
int ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt)
Submit a new frame to a decoding thread.
int slice_count
slice count
Definition: avcodec.h:2062
Libavcodec version macros.
int(* close)(AVCodecContext *)
Definition: avcodec.h:3684
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1998
PerThreadContext * prev_thread
The last thread submit_packet() was called on.
void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
Wrapper around release_buffer() frame-for multithreaded codecs.
int is_copy
Whether the parent AVCodecContext is a copy of the context which had init() called on it...
Definition: internal.h:111
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:158
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:3126
int capabilities
Codec capabilities.
Definition: avcodec.h:3619
int result
The result of the last codec decode/encode() call.
Definition: pthread_frame.c:67
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
const char * arg
Definition: jacosubdec.c:66
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1771
simple assert() macros that are a bit more flexible than ISO C assert().
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:226
#define fail()
Definition: checkasm.h:83
reference-counted frame API
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2489
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:215
common internal API header
pthread_cond_t output_cond
Used by the main thread to wait for frames to finish.
Definition: pthread_frame.c:56
void(* draw_horiz_band)(struct AVCodecContext *s, const AVFrame *src, int offset[AV_NUM_DATA_POINTERS], int y, int type, int height)
If non NULL, 'draw_horiz_band' is called by the libavcodec decoder to draw a horizontal band...
Definition: avcodec.h:1937
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:3118
#define FFMIN(a, b)
Definition: common.h:96
int width
picture width / height.
Definition: avcodec.h:1863
int idct_algo
IDCT algorithm, see FF_IDCT_* below.
Definition: avcodec.h:3035
int priv_data_size
Definition: avcodec.h:3636
void ff_thread_report_progress(ThreadFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:2392
static av_always_inline int pthread_join(pthread_t thread, void **value_ptr)
Definition: os2threads.h:88
static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
Definition: os2threads.h:98
int level
level
Definition: avcodec.h:3279
#define FF_DEBUG_BUFFERS
Definition: avcodec.h:2941
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
Definition: mem.c:480
int64_t reordered_opaque
opaque 64-bit number (generally a PTS) that will be reordered and output in AVFrame.reordered_opaque
Definition: avcodec.h:2989
int n
Definition: avisynth_c.h:684
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:1822
pthread_t thread
Definition: pthread_frame.c:52
#define FF_DEBUG_THREADS
Definition: avcodec.h:2942
#define src
Definition: vp9dsp.c:530
Set when the codec calls get_format().
Definition: pthread_frame.c:76
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:3107
int got_frame
The output of got_picture_ptr from the last avcodec_decode_video() call.
Definition: pthread_frame.c:66
static int update_context_from_user(AVCodecContext *dst, AVCodecContext *src)
Update the next thread's AVCodecContext with values set by the user.
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: utils.c:1111
pthread_mutex_t buffer_mutex
Mutex used to protect get/release_buffer().
AVBufferRef * progress
Definition: thread.h:40
pthread_mutex_t progress_mutex
Mutex used to protect frame progress values and progress_cond.
Definition: pthread_frame.c:59
static av_always_inline int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg)
Definition: os2threads.h:74
int avcodec_default_get_buffer2(AVCodecContext *s, AVFrame *frame, int flags)
The default callback for AVCodecContext.get_buffer2().
Definition: utils.c:723
Libavcodec external API header.
enum AVMediaType codec_type
Definition: avcodec.h:1684
enum AVCodecID codec_id
Definition: avcodec.h:1693
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:66
int sample_rate
samples per second
Definition: avcodec.h:2438
int debug
debug
Definition: avcodec.h:2916
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition: avcodec.h:1676
Set before the codec has called ff_thread_finish_setup().
Definition: pthread_frame.c:71
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:567
uint8_t * data
The data buffer.
Definition: buffer.h:89
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:947
int ff_init_buffer_info(AVCodecContext *s, AVFrame *frame)
does needed setup of pkt_pts/pos and such for (re)get_buffer();
Definition: utils.c:755
int slice_flags
slice flags
Definition: avcodec.h:2219
int coded_height
Definition: avcodec.h:1878
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
Definition: avcodec.h:1954
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:2406
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:2399
enum AVPixelFormat result_format
get_format() result
Definition: pthread_frame.c:95
int delaying
Set for the first N packets, where N is the number of threads.
refcounted data buffer API
enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Wrapper around get_format() for frame-multithreaded codecs.
Set when the codec calls get_buffer().
Definition: pthread_frame.c:72
int(* get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags)
This callback is called at the beginning of each frame to get data buffer(s) for it.
Definition: avcodec.h:2593
Set after the codec has called ff_thread_finish_setup().
Definition: pthread_frame.c:80
attribute_deprecated int dtg_active_format
DTG active format information (additional aspect ratio information only used in DVB MPEG-2 transport ...
Definition: avcodec.h:2182
PerThreadContext * threads
The contexts for each thread.
int allocate_progress
Whether to allocate progress for frame threading.
Definition: internal.h:126
#define MAX_AUTO_THREADS
AVFrame * released_buffers
Array of frames passed to ff_thread_release_buffer().
Definition: pthread_frame.c:87
struct FrameThreadContext * parent
Definition: pthread_frame.c:50
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:493
static int flags
Definition: cpu.c:47
const AVClass * priv_class
AVClass for the private context.
Definition: avcodec.h:3626
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
int64_t pkt_dts
DTS copied from the AVPacket that triggered returning this frame.
Definition: frame.h:284
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1516
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
common internal api header.
common internal and external API header
if(ret< 0)
Definition: vf_mcdeint.c:282
int released_buffers_allocated
Definition: pthread_frame.c:89
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:162
static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src, int for_user)
Update the next thread's AVCodecContext with values from the reference thread's context.
static av_always_inline int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
Definition: os2threads.h:127
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:3098
int thread_safe_callbacks
Set by the client if its custom get_buffer() callback can be called synchronously from another thread...
Definition: avcodec.h:3136
Set when the thread is awaiting a packet.
Definition: pthread_frame.c:70
void * priv_data
Definition: avcodec.h:1718
int(* update_thread_context)(AVCodecContext *dst, const AVCodecContext *src)
Copy necessary context variables from a previous thread context to the current one.
Definition: avcodec.h:3655
void ff_thread_flush(AVCodecContext *avctx)
Wait for decoding threads to finish and reset internal state.
AVFrame * frame
Output frame (for decoding) or input (for encoding).
Definition: pthread_frame.c:65
int ff_thread_can_start_frame(AVCodecContext *avctx)
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:81
static av_always_inline int pthread_cond_broadcast(pthread_cond_t *cond)
Definition: os2threads.h:156
int channels
number of audio channels
Definition: avcodec.h:2439
static av_always_inline int pthread_mutex_unlock(pthread_mutex_t *mutex)
Definition: os2threads.h:120
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:1726
static uint8_t tmp[8]
Definition: des.c:38
pthread_mutex_t mutex
Mutex used to protect the contents of the PerThreadContext.
Definition: pthread_frame.c:58
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1778
static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
Waits for all threads to finish.
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1600
int * slice_offset
slice offsets in the frame in bytes
Definition: avcodec.h:2078
int frame_number
Frame counter, set by libavcodec.
Definition: avcodec.h:2469
static void release_delayed_buffers(PerThreadContext *p)
Releases the buffers that this decoding thread was the last user of.
#define av_freep(p)
#define FF_DEBUG_VIS_QP
only access through AVOptions from outside libavcodec
Definition: avcodec.h:2938
static av_always_inline int pthread_mutex_lock(pthread_mutex_t *mutex)
Definition: os2threads.h:113
int debug_mv
debug Code outside libavcodec should access this field using AVOptions
Definition: avcodec.h:2953
int next_finished
The next context to return output from.
int(* init)(AVCodecContext *)
Definition: avcodec.h:3668
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:231
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
This structure stores compressed data.
Definition: avcodec.h:1578
int delay
Codec delay.
Definition: avcodec.h:1846
int ff_frame_thread_init(AVCodecContext *avctx)
void * opaque
Private data of the user, can be used to carry app specific stuff.
Definition: avcodec.h:1733