FFmpeg
decode.c
Go to the documentation of this file.
1 /*
2  * generic decoding-related code
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include <assert.h>
22 #include <stdint.h>
23 #include <stdbool.h>
24 #include <string.h>
25 
26 #include "config.h"
27 
28 #if CONFIG_ICONV
29 # include <iconv.h>
30 #endif
31 
32 #include "libavutil/avassert.h"
34 #include "libavutil/common.h"
35 #include "libavutil/emms.h"
36 #include "libavutil/frame.h"
37 #include "libavutil/hwcontext.h"
38 #include "libavutil/imgutils.h"
39 #include "libavutil/internal.h"
41 #include "libavutil/mem.h"
42 #include "libavutil/stereo3d.h"
43 
44 #include "avcodec.h"
45 #include "avcodec_internal.h"
46 #include "bytestream.h"
47 #include "bsf.h"
48 #include "codec_desc.h"
49 #include "codec_internal.h"
50 #include "decode.h"
51 #include "exif.h"
52 #include "hwaccel_internal.h"
53 #include "hwconfig.h"
54 #include "internal.h"
55 #include "lcevcdec.h"
56 #include "packet_internal.h"
57 #include "progressframe.h"
58 #include "libavutil/refstruct.h"
59 #include "thread.h"
60 #include "threadprogress.h"
61 
62 typedef struct DecodeContext {
64 
65  /**
66  * This is set to AV_FRAME_FLAG_KEY for decoders of intra-only formats
67  * (those whose codec descriptor has AV_CODEC_PROP_INTRA_ONLY set)
68  * to set the flag generically.
69  */
71 
72  /**
73  * This is set to AV_PICTURE_TYPE_I for intra only video decoders
74  * and to AV_PICTURE_TYPE_NONE for other decoders. It is used to set
75  * the AVFrame's pict_type before the decoder receives it.
76  */
78 
79  /* to prevent infinite loop on errors when draining */
81 
82  /**
83  * The caller has submitted a NULL packet on input.
84  */
86 
87  int64_t pts_correction_num_faulty_pts; /// Number of incorrect PTS values so far
88  int64_t pts_correction_num_faulty_dts; /// Number of incorrect DTS values so far
89  int64_t pts_correction_last_pts; /// PTS of the last frame
90  int64_t pts_correction_last_dts; /// DTS of the last frame
91 
92  /**
93  * Bitmask indicating for which side data types we prefer user-supplied
94  * (global or attached to packets) side data over bytestream.
95  */
97 
98 #if CONFIG_LIBLCEVC_DEC
99  struct {
101  int frame;
102  enum AVPixelFormat format;
103  int base_width;
104  int base_height;
105  int width;
106  int height;
107  } lcevc;
108 #endif
109 } DecodeContext;
110 
112 {
113  return (DecodeContext *)avci;
114 }
115 
116 static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
117 {
118  int ret;
119  size_t size;
120  const uint8_t *data;
121  uint32_t flags;
122  int64_t val;
123 
125  if (!data)
126  return 0;
127 
128  if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
129  av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
130  "changes, but PARAM_CHANGE side data was sent to it.\n");
131  ret = AVERROR(EINVAL);
132  goto fail2;
133  }
134 
135  if (size < 4)
136  goto fail;
137 
138  flags = bytestream_get_le32(&data);
139  size -= 4;
140 
142  if (size < 4)
143  goto fail;
144  val = bytestream_get_le32(&data);
145  if (val <= 0 || val > INT_MAX) {
146  av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
148  goto fail2;
149  }
150  avctx->sample_rate = val;
151  size -= 4;
152  }
154  if (size < 8)
155  goto fail;
156  avctx->width = bytestream_get_le32(&data);
157  avctx->height = bytestream_get_le32(&data);
158  size -= 8;
159  ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
160  if (ret < 0)
161  goto fail2;
162  }
163 
164  return 0;
165 fail:
166  av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
168 fail2:
169  if (ret < 0) {
170  av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
171  if (avctx->err_recognition & AV_EF_EXPLODE)
172  return ret;
173  }
174  return 0;
175 }
176 
178 {
179  int ret = 0;
180 
182  if (pkt) {
184  }
185  return ret;
186 }
187 
189 {
190  AVCodecInternal *avci = avctx->internal;
191  const FFCodec *const codec = ffcodec(avctx->codec);
192  int ret;
193 
194  if (avci->bsf)
195  return 0;
196 
197  ret = av_bsf_list_parse_str(codec->bsfs, &avci->bsf);
198  if (ret < 0) {
199  av_log(avctx, AV_LOG_ERROR, "Error parsing decoder bitstream filters '%s': %s\n", codec->bsfs, av_err2str(ret));
200  if (ret != AVERROR(ENOMEM))
201  ret = AVERROR_BUG;
202  goto fail;
203  }
204 
205  /* We do not currently have an API for passing the input timebase into decoders,
206  * but no filters used here should actually need it.
207  * So we make up some plausible-looking number (the MPEG 90kHz timebase) */
208  avci->bsf->time_base_in = (AVRational){ 1, 90000 };
210  if (ret < 0)
211  goto fail;
212 
213  ret = av_bsf_init(avci->bsf);
214  if (ret < 0)
215  goto fail;
216 
217  return 0;
218 fail:
219  av_bsf_free(&avci->bsf);
220  return ret;
221 }
222 
223 #if !HAVE_THREADS
224 #define ff_thread_get_packet(avctx, pkt) (AVERROR_BUG)
225 #define ff_thread_receive_frame(avctx, frame, flags) (AVERROR_BUG)
226 #endif
227 
229 {
230  AVCodecInternal *avci = avctx->internal;
231  int ret;
232 
233  ret = av_bsf_receive_packet(avci->bsf, pkt);
234  if (ret < 0)
235  return ret;
236 
239  if (ret < 0)
240  goto finish;
241  }
242 
243  ret = apply_param_change(avctx, pkt);
244  if (ret < 0)
245  goto finish;
246 
247  return 0;
248 finish:
250  return ret;
251 }
252 
254 {
255  AVCodecInternal *avci = avctx->internal;
256  DecodeContext *dc = decode_ctx(avci);
257 
258  if (avci->draining)
259  return AVERROR_EOF;
260 
261  /* If we are a worker thread, get the next packet from the threading
262  * context. Otherwise we are the main (user-facing) context, so we get the
263  * next packet from the input filterchain.
264  */
265  if (avctx->internal->is_frame_mt)
266  return ff_thread_get_packet(avctx, pkt);
267 
268  while (1) {
269  int ret = decode_get_packet(avctx, pkt);
270  if (ret == AVERROR(EAGAIN) &&
271  (!AVPACKET_IS_EMPTY(avci->buffer_pkt) || dc->draining_started)) {
272  ret = av_bsf_send_packet(avci->bsf, avci->buffer_pkt);
273  if (ret >= 0)
274  continue;
275 
277  }
278 
279  if (ret == AVERROR_EOF)
280  avci->draining = 1;
281  return ret;
282  }
283 }
284 
285 /**
286  * Attempt to guess proper monotonic timestamps for decoded video frames
287  * which might have incorrect times. Input timestamps may wrap around, in
288  * which case the output will as well.
289  *
290  * @param pts the pts field of the decoded AVPacket, as passed through
291  * AVFrame.pts
292  * @param dts the dts field of the decoded AVPacket
293  * @return one of the input values, may be AV_NOPTS_VALUE
294  */
296  int64_t reordered_pts, int64_t dts)
297 {
299 
300  if (dts != AV_NOPTS_VALUE) {
301  dc->pts_correction_num_faulty_dts += dts <= dc->pts_correction_last_dts;
302  dc->pts_correction_last_dts = dts;
303  } else if (reordered_pts != AV_NOPTS_VALUE)
304  dc->pts_correction_last_dts = reordered_pts;
305 
306  if (reordered_pts != AV_NOPTS_VALUE) {
307  dc->pts_correction_num_faulty_pts += reordered_pts <= dc->pts_correction_last_pts;
308  dc->pts_correction_last_pts = reordered_pts;
309  } else if(dts != AV_NOPTS_VALUE)
310  dc->pts_correction_last_pts = dts;
311 
312  if ((dc->pts_correction_num_faulty_pts<=dc->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
313  && reordered_pts != AV_NOPTS_VALUE)
314  pts = reordered_pts;
315  else
316  pts = dts;
317 
318  return pts;
319 }
320 
321 static int discard_samples(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
322 {
323  AVCodecInternal *avci = avctx->internal;
324  AVFrameSideData *side;
325  uint32_t discard_padding = 0;
326  uint8_t skip_reason = 0;
327  uint8_t discard_reason = 0;
328 
330  if (side && side->size >= 10) {
331  avci->skip_samples = AV_RL32(side->data);
332  avci->skip_samples = FFMAX(0, avci->skip_samples);
333  discard_padding = AV_RL32(side->data + 4);
334  av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
335  avci->skip_samples, (int)discard_padding);
336  skip_reason = AV_RL8(side->data + 8);
337  discard_reason = AV_RL8(side->data + 9);
338  }
339 
340  if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
341  if (!side && (avci->skip_samples || discard_padding))
343  if (side && (avci->skip_samples || discard_padding)) {
344  AV_WL32(side->data, avci->skip_samples);
345  AV_WL32(side->data + 4, discard_padding);
346  AV_WL8(side->data + 8, skip_reason);
347  AV_WL8(side->data + 9, discard_reason);
348  avci->skip_samples = 0;
349  }
350  return 0;
351  }
353 
354  if ((frame->flags & AV_FRAME_FLAG_DISCARD)) {
355  avci->skip_samples = FFMAX(0, avci->skip_samples - frame->nb_samples);
356  *discarded_samples += frame->nb_samples;
357  return AVERROR(EAGAIN);
358  }
359 
360  if (avci->skip_samples > 0) {
361  if (frame->nb_samples <= avci->skip_samples){
362  *discarded_samples += frame->nb_samples;
363  avci->skip_samples -= frame->nb_samples;
364  av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
365  avci->skip_samples);
366  return AVERROR(EAGAIN);
367  } else {
368  av_samples_copy(frame->extended_data, frame->extended_data, 0, avci->skip_samples,
369  frame->nb_samples - avci->skip_samples, avctx->ch_layout.nb_channels, frame->format);
370  if (avctx->pkt_timebase.num && avctx->sample_rate) {
371  int64_t diff_ts = av_rescale_q(avci->skip_samples,
372  (AVRational){1, avctx->sample_rate},
373  avctx->pkt_timebase);
374  if (frame->pts != AV_NOPTS_VALUE)
375  frame->pts += diff_ts;
376  if (frame->pkt_dts != AV_NOPTS_VALUE)
377  frame->pkt_dts += diff_ts;
378  if (frame->duration >= diff_ts)
379  frame->duration -= diff_ts;
380  } else
381  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
382 
383  av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
384  avci->skip_samples, frame->nb_samples);
385  *discarded_samples += avci->skip_samples;
386  frame->nb_samples -= avci->skip_samples;
387  avci->skip_samples = 0;
388  }
389  }
390 
391  if (discard_padding > 0 && discard_padding <= frame->nb_samples) {
392  if (discard_padding == frame->nb_samples) {
393  *discarded_samples += frame->nb_samples;
394  return AVERROR(EAGAIN);
395  } else {
396  if (avctx->pkt_timebase.num && avctx->sample_rate) {
397  int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
398  (AVRational){1, avctx->sample_rate},
399  avctx->pkt_timebase);
400  frame->duration = diff_ts;
401  } else
402  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
403 
404  av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
405  (int)discard_padding, frame->nb_samples);
406  frame->nb_samples -= discard_padding;
407  }
408  }
409 
410  return 0;
411 }
412 
413 /*
414  * The core of the receive_frame_wrapper for the decoders implementing
415  * the simple API. Certain decoders might consume partial packets without
416  * returning any output, so this function needs to be called in a loop until it
417  * returns EAGAIN.
418  **/
419 static inline int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
420 {
421  AVCodecInternal *avci = avctx->internal;
422  DecodeContext *dc = decode_ctx(avci);
423  AVPacket *const pkt = avci->in_pkt;
424  const FFCodec *const codec = ffcodec(avctx->codec);
425  int got_frame, consumed;
426  int ret;
427 
428  if (!pkt->data && !avci->draining) {
430  ret = ff_decode_get_packet(avctx, pkt);
431  if (ret < 0 && ret != AVERROR_EOF)
432  return ret;
433  }
434 
435  // Some codecs (at least wma lossless) will crash when feeding drain packets
436  // after EOF was signaled.
437  if (avci->draining_done)
438  return AVERROR_EOF;
439 
440  if (!pkt->data &&
442  return AVERROR_EOF;
443 
444  got_frame = 0;
445 
446  frame->pict_type = dc->initial_pict_type;
447  frame->flags |= dc->intra_only_flag;
448  consumed = codec->cb.decode(avctx, frame, &got_frame, pkt);
449 
451  frame->pkt_dts = pkt->dts;
452  emms_c();
453 
454  if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
455  ret = (!got_frame || frame->flags & AV_FRAME_FLAG_DISCARD)
456  ? AVERROR(EAGAIN)
457  : 0;
458  } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
459  ret = !got_frame ? AVERROR(EAGAIN)
460  : discard_samples(avctx, frame, discarded_samples);
461  } else
462  av_assert0(0);
463 
464  if (ret == AVERROR(EAGAIN))
466 
467  // FF_CODEC_CB_TYPE_DECODE decoders must not return AVERROR EAGAIN
468  // code later will add AVERROR(EAGAIN) to a pointer
469  av_assert0(consumed != AVERROR(EAGAIN));
470  if (consumed < 0)
471  ret = consumed;
472  if (consumed >= 0 && avctx->codec->type == AVMEDIA_TYPE_VIDEO)
473  consumed = pkt->size;
474 
475  if (!ret)
476  av_assert0(frame->buf[0]);
477  if (ret == AVERROR(EAGAIN))
478  ret = 0;
479 
480  /* do not stop draining when got_frame != 0 or ret < 0 */
481  if (avci->draining && !got_frame) {
482  if (ret < 0) {
483  /* prevent infinite loop if a decoder wrongly always return error on draining */
484  /* reasonable nb_errors_max = maximum b frames + thread count */
485  int nb_errors_max = 20 + (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME ?
486  avctx->thread_count : 1);
487 
488  if (decode_ctx(avci)->nb_draining_errors++ >= nb_errors_max) {
489  av_log(avctx, AV_LOG_ERROR, "Too many errors when draining, this is a bug. "
490  "Stop draining and force EOF.\n");
491  avci->draining_done = 1;
492  ret = AVERROR_BUG;
493  }
494  } else {
495  avci->draining_done = 1;
496  }
497  }
498 
499  if (consumed >= pkt->size || ret < 0) {
501  } else {
502  pkt->data += consumed;
503  pkt->size -= consumed;
509  }
510  }
511 
512  return ret;
513 }
514 
515 #if CONFIG_LCMS2
516 static int detect_colorspace(AVCodecContext *avctx, AVFrame *frame)
517 {
518  AVCodecInternal *avci = avctx->internal;
520  AVColorPrimariesDesc coeffs;
521  enum AVColorPrimaries prim;
522  cmsHPROFILE profile;
523  AVFrameSideData *sd;
524  int ret;
525  if (!(avctx->flags2 & AV_CODEC_FLAG2_ICC_PROFILES))
526  return 0;
527 
529  if (!sd || !sd->size)
530  return 0;
531 
532  if (!avci->icc.avctx) {
533  ret = ff_icc_context_init(&avci->icc, avctx);
534  if (ret < 0)
535  return ret;
536  }
537 
538  profile = cmsOpenProfileFromMemTHR(avci->icc.ctx, sd->data, sd->size);
539  if (!profile)
540  return AVERROR_INVALIDDATA;
541 
542  ret = ff_icc_profile_sanitize(&avci->icc, profile);
543  if (!ret)
544  ret = ff_icc_profile_read_primaries(&avci->icc, profile, &coeffs);
545  if (!ret)
546  ret = ff_icc_profile_detect_transfer(&avci->icc, profile, &trc);
547  cmsCloseProfile(profile);
548  if (ret < 0)
549  return ret;
550 
551  prim = av_csp_primaries_id_from_desc(&coeffs);
552  if (prim != AVCOL_PRI_UNSPECIFIED)
553  frame->color_primaries = prim;
554  if (trc != AVCOL_TRC_UNSPECIFIED)
555  frame->color_trc = trc;
556  return 0;
557 }
558 #else /* !CONFIG_LCMS2 */
560 {
561  return 0;
562 }
563 #endif
564 
565 static int fill_frame_props(const AVCodecContext *avctx, AVFrame *frame)
566 {
567  int ret;
568 
569  if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
570  frame->color_primaries = avctx->color_primaries;
571  if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
572  frame->color_trc = avctx->color_trc;
573  if (frame->colorspace == AVCOL_SPC_UNSPECIFIED)
574  frame->colorspace = avctx->colorspace;
575  if (frame->color_range == AVCOL_RANGE_UNSPECIFIED)
576  frame->color_range = avctx->color_range;
577  if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
578  frame->chroma_location = avctx->chroma_sample_location;
579  if (frame->alpha_mode == AVALPHA_MODE_UNSPECIFIED)
580  frame->alpha_mode = avctx->alpha_mode;
581 
582  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
583  if (!frame->sample_aspect_ratio.num) frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
584  if (frame->format == AV_PIX_FMT_NONE) frame->format = avctx->pix_fmt;
585  } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
586  if (frame->format == AV_SAMPLE_FMT_NONE)
587  frame->format = avctx->sample_fmt;
588  if (!frame->ch_layout.nb_channels) {
589  ret = av_channel_layout_copy(&frame->ch_layout, &avctx->ch_layout);
590  if (ret < 0)
591  return ret;
592  }
593  if (!frame->sample_rate)
594  frame->sample_rate = avctx->sample_rate;
595  }
596 
597  return 0;
598 }
599 
601 {
602  int ret;
603  int64_t discarded_samples = 0;
604 
605  while (!frame->buf[0]) {
606  if (discarded_samples > avctx->max_samples)
607  return AVERROR(EAGAIN);
608  ret = decode_simple_internal(avctx, frame, &discarded_samples);
609  if (ret < 0)
610  return ret;
611  }
612 
613  return 0;
614 }
615 
617 {
618  AVCodecInternal *avci = avctx->internal;
619  DecodeContext *dc = decode_ctx(avci);
620  const FFCodec *const codec = ffcodec(avctx->codec);
621  int ret;
622 
623  av_assert0(!frame->buf[0]);
624 
625  if (codec->cb_type == FF_CODEC_CB_TYPE_RECEIVE_FRAME) {
626  while (1) {
627  frame->pict_type = dc->initial_pict_type;
628  frame->flags |= dc->intra_only_flag;
629  ret = codec->cb.receive_frame(avctx, frame);
630  emms_c();
631  if (!ret) {
632  if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
633  int64_t discarded_samples = 0;
634  ret = discard_samples(avctx, frame, &discarded_samples);
635  }
636  if (ret == AVERROR(EAGAIN) || (frame->flags & AV_FRAME_FLAG_DISCARD)) {
638  continue;
639  }
640  }
641  break;
642  }
643  } else
645 
646  if (ret == AVERROR_EOF)
647  avci->draining_done = 1;
648 
649  return ret;
650 }
651 
653  unsigned flags)
654 {
655  AVCodecInternal *avci = avctx->internal;
656  DecodeContext *dc = decode_ctx(avci);
657  int ret, ok;
658 
659  if (avctx->active_thread_type & FF_THREAD_FRAME)
661  else
663 
664  /* preserve ret */
665  ok = detect_colorspace(avctx, frame);
666  if (ok < 0) {
668  return ok;
669  }
670 
671  if (!ret) {
672  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
673  if (!frame->width)
674  frame->width = avctx->width;
675  if (!frame->height)
676  frame->height = avctx->height;
677  }
678 
679  ret = fill_frame_props(avctx, frame);
680  if (ret < 0) {
682  return ret;
683  }
684 
685  frame->best_effort_timestamp = guess_correct_pts(dc,
686  frame->pts,
687  frame->pkt_dts);
688 
689  /* the only case where decode data is not set should be decoders
690  * that do not call ff_get_buffer() */
691  av_assert0(frame->private_ref ||
692  !(avctx->codec->capabilities & AV_CODEC_CAP_DR1));
693 
694  if (frame->private_ref) {
695  FrameDecodeData *fdd = frame->private_ref;
696 
697  if (fdd->hwaccel_priv_post_process) {
698  ret = fdd->hwaccel_priv_post_process(avctx, frame);
699  if (ret < 0) {
701  return ret;
702  }
703  }
704 
705  if (fdd->post_process) {
706  ret = fdd->post_process(avctx, frame);
707  if (ret < 0) {
709  return ret;
710  }
711  }
712  }
713  }
714 
715  /* free the per-frame decode data */
716  av_refstruct_unref(&frame->private_ref);
717 
718  return ret;
719 }
720 
722 {
723  AVCodecInternal *avci = avctx->internal;
724  DecodeContext *dc = decode_ctx(avci);
725  int ret;
726 
727  if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
728  return AVERROR(EINVAL);
729 
730  if (dc->draining_started)
731  return AVERROR_EOF;
732 
733  if (avpkt && !avpkt->size && avpkt->data)
734  return AVERROR(EINVAL);
735 
736  if (avpkt && (avpkt->data || avpkt->side_data_elems)) {
737  if (!AVPACKET_IS_EMPTY(avci->buffer_pkt))
738  return AVERROR(EAGAIN);
739  ret = av_packet_ref(avci->buffer_pkt, avpkt);
740  if (ret < 0)
741  return ret;
742  } else
743  dc->draining_started = 1;
744 
745  if (!avci->buffer_frame->buf[0] && !dc->draining_started) {
747  if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
748  return ret;
749  }
750 
751  return 0;
752 }
753 
755 {
756  /* make sure we are noisy about decoders returning invalid cropping data */
757  if (frame->crop_left >= INT_MAX - frame->crop_right ||
758  frame->crop_top >= INT_MAX - frame->crop_bottom ||
759  (frame->crop_left + frame->crop_right) >= frame->width ||
760  (frame->crop_top + frame->crop_bottom) >= frame->height) {
761  av_log(avctx, AV_LOG_WARNING,
762  "Invalid cropping information set by a decoder: "
763  "%zu/%zu/%zu/%zu (frame size %dx%d). "
764  "This is a bug, please report it\n",
765  frame->crop_left, frame->crop_right, frame->crop_top, frame->crop_bottom,
766  frame->width, frame->height);
767  frame->crop_left = 0;
768  frame->crop_right = 0;
769  frame->crop_top = 0;
770  frame->crop_bottom = 0;
771  return 0;
772  }
773 
774  if (!avctx->apply_cropping)
775  return 0;
776 
779 }
780 
781 // make sure frames returned to the caller are valid
783 {
784  if (!frame->buf[0] || frame->format < 0)
785  goto fail;
786 
787  switch (avctx->codec_type) {
788  case AVMEDIA_TYPE_VIDEO:
789  if (frame->width <= 0 || frame->height <= 0)
790  goto fail;
791  break;
792  case AVMEDIA_TYPE_AUDIO:
793  if (!av_channel_layout_check(&frame->ch_layout) ||
794  frame->sample_rate <= 0)
795  goto fail;
796 
797  break;
798  default: av_assert0(0);
799  }
800 
801  return 0;
802 fail:
803  av_log(avctx, AV_LOG_ERROR, "An invalid frame was output by a decoder. "
804  "This is a bug, please report it.\n");
805  return AVERROR_BUG;
806 }
807 
809 {
810  AVCodecInternal *avci = avctx->internal;
811  int ret;
812 
813  if (avci->buffer_frame->buf[0]) {
815  } else {
817  if (ret < 0)
818  return ret;
819  }
820 
821  ret = frame_validate(avctx, frame);
822  if (ret < 0)
823  goto fail;
824 
825  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
826  ret = apply_cropping(avctx, frame);
827  if (ret < 0)
828  goto fail;
829  }
830 
831  avctx->frame_num++;
832 
833  return 0;
834 fail:
836  return ret;
837 }
838 
840 {
841  memset(sub, 0, sizeof(*sub));
842  sub->pts = AV_NOPTS_VALUE;
843 }
844 
845 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
846 static int recode_subtitle(AVCodecContext *avctx, const AVPacket **outpkt,
847  const AVPacket *inpkt, AVPacket *buf_pkt)
848 {
849 #if CONFIG_ICONV
850  iconv_t cd = (iconv_t)-1;
851  int ret = 0;
852  char *inb, *outb;
853  size_t inl, outl;
854 #endif
855 
856  if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0) {
857  *outpkt = inpkt;
858  return 0;
859  }
860 
861 #if CONFIG_ICONV
862  inb = inpkt->data;
863  inl = inpkt->size;
864 
865  if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
866  av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
867  return AVERROR(ERANGE);
868  }
869 
870  cd = iconv_open("UTF-8", avctx->sub_charenc);
871  av_assert0(cd != (iconv_t)-1);
872 
873  ret = av_new_packet(buf_pkt, inl * UTF8_MAX_BYTES);
874  if (ret < 0)
875  goto end;
876  ret = av_packet_copy_props(buf_pkt, inpkt);
877  if (ret < 0)
878  goto end;
879  outb = buf_pkt->data;
880  outl = buf_pkt->size;
881 
882  if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
883  iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
884  outl >= buf_pkt->size || inl != 0) {
885  ret = FFMIN(AVERROR(errno), -1);
886  av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
887  "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
888  goto end;
889  }
890  buf_pkt->size -= outl;
891  memset(buf_pkt->data + buf_pkt->size, 0, outl);
892  *outpkt = buf_pkt;
893 
894  ret = 0;
895 end:
896  if (ret < 0)
897  av_packet_unref(buf_pkt);
898  if (cd != (iconv_t)-1)
899  iconv_close(cd);
900  return ret;
901 #else
902  av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
903  return AVERROR(EINVAL);
904 #endif
905 }
906 
907 static int utf8_check(const uint8_t *str)
908 {
909  const uint8_t *byte;
910  uint32_t codepoint, min;
911 
912  while (*str) {
913  byte = str;
914  GET_UTF8(codepoint, *(byte++), return 0;);
915  min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
916  1 << (5 * (byte - str) - 4);
917  if (codepoint < min || codepoint >= 0x110000 ||
918  codepoint == 0xFFFE /* BOM */ ||
919  codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
920  return 0;
921  str = byte;
922  }
923  return 1;
924 }
925 
927  int *got_sub_ptr, const AVPacket *avpkt)
928 {
929  int ret = 0;
930 
931  if (!avpkt->data && avpkt->size) {
932  av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
933  return AVERROR(EINVAL);
934  }
935  if (!avctx->codec)
936  return AVERROR(EINVAL);
938  av_log(avctx, AV_LOG_ERROR, "Codec not subtitle decoder\n");
939  return AVERROR(EINVAL);
940  }
941 
942  *got_sub_ptr = 0;
944 
945  if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
946  AVCodecInternal *avci = avctx->internal;
947  const AVPacket *pkt;
948 
949  ret = recode_subtitle(avctx, &pkt, avpkt, avci->buffer_pkt);
950  if (ret < 0)
951  return ret;
952 
953  if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
954  sub->pts = av_rescale_q(avpkt->pts,
955  avctx->pkt_timebase, AV_TIME_BASE_Q);
956  ret = ffcodec(avctx->codec)->cb.decode_sub(avctx, sub, got_sub_ptr, pkt);
957  if (pkt == avci->buffer_pkt) // did we recode?
959  if (ret < 0) {
960  *got_sub_ptr = 0;
961  avsubtitle_free(sub);
962  return ret;
963  }
964  av_assert1(!sub->num_rects || *got_sub_ptr);
965 
966  if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
967  avctx->pkt_timebase.num) {
968  AVRational ms = { 1, 1000 };
969  sub->end_display_time = av_rescale_q(avpkt->duration,
970  avctx->pkt_timebase, ms);
971  }
972 
974  sub->format = 0;
975  else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
976  sub->format = 1;
977 
978  for (unsigned i = 0; i < sub->num_rects; i++) {
980  sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
981  av_log(avctx, AV_LOG_ERROR,
982  "Invalid UTF-8 in decoded subtitles text; "
983  "maybe missing -sub_charenc option\n");
984  avsubtitle_free(sub);
985  *got_sub_ptr = 0;
986  return AVERROR_INVALIDDATA;
987  }
988  }
989 
990  if (*got_sub_ptr)
991  avctx->frame_num++;
992  }
993 
994  return ret;
995 }
996 
998  const enum AVPixelFormat *fmt)
999 {
1000  const AVCodecHWConfig *config;
1001  int i, n;
1002 
1003  // If a device was supplied when the codec was opened, assume that the
1004  // user wants to use it.
1005  if (avctx->hw_device_ctx && ffcodec(avctx->codec)->hw_configs) {
1006  AVHWDeviceContext *device_ctx =
1008  for (i = 0;; i++) {
1009  config = &ffcodec(avctx->codec)->hw_configs[i]->public;
1010  if (!config)
1011  break;
1012  if (!(config->methods &
1014  continue;
1015  if (device_ctx->type != config->device_type)
1016  continue;
1017  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1018  if (config->pix_fmt == fmt[n])
1019  return fmt[n];
1020  }
1021  }
1022  }
1023  // No device or other setup, so we have to choose from things which
1024  // don't any other external information.
1025 
1026  // Choose the first software format
1027  // (this should be best software format if any exist).
1028  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1029  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt[n]);
1030  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1031  return fmt[n];
1032  }
1033 
1034  // Finally, traverse the list in order and choose the first entry
1035  // with no external dependencies (if there is no hardware configuration
1036  // information available then this just picks the first entry).
1037  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1038  for (i = 0;; i++) {
1039  config = avcodec_get_hw_config(avctx->codec, i);
1040  if (!config)
1041  break;
1042  if (config->pix_fmt == fmt[n])
1043  break;
1044  }
1045  if (!config) {
1046  // No specific config available, so the decoder must be able
1047  // to handle this format without any additional setup.
1048  return fmt[n];
1049  }
1050  if (config->methods & AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1051  // Usable with only internal setup.
1052  return fmt[n];
1053  }
1054  }
1055 
1056  // Nothing is usable, give up.
1057  return AV_PIX_FMT_NONE;
1058 }
1059 
1061  enum AVHWDeviceType dev_type)
1062 {
1063  AVHWDeviceContext *device_ctx;
1064  AVHWFramesContext *frames_ctx;
1065  int ret;
1066 
1067  if (!avctx->hwaccel)
1068  return AVERROR(ENOSYS);
1069 
1070  if (avctx->hw_frames_ctx)
1071  return 0;
1072  if (!avctx->hw_device_ctx) {
1073  av_log(avctx, AV_LOG_ERROR, "A hardware frames or device context is "
1074  "required for hardware accelerated decoding.\n");
1075  return AVERROR(EINVAL);
1076  }
1077 
1078  device_ctx = (AVHWDeviceContext *)avctx->hw_device_ctx->data;
1079  if (device_ctx->type != dev_type) {
1080  av_log(avctx, AV_LOG_ERROR, "Device type %s expected for hardware "
1081  "decoding, but got %s.\n", av_hwdevice_get_type_name(dev_type),
1082  av_hwdevice_get_type_name(device_ctx->type));
1083  return AVERROR(EINVAL);
1084  }
1085 
1087  avctx->hw_device_ctx,
1088  avctx->hwaccel->pix_fmt,
1089  &avctx->hw_frames_ctx);
1090  if (ret < 0)
1091  return ret;
1092 
1093  frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1094 
1095 
1096  if (frames_ctx->initial_pool_size) {
1097  // We guarantee 4 base work surfaces. The function above guarantees 1
1098  // (the absolute minimum), so add the missing count.
1099  frames_ctx->initial_pool_size += 3;
1100  }
1101 
1103  if (ret < 0) {
1104  av_buffer_unref(&avctx->hw_frames_ctx);
1105  return ret;
1106  }
1107 
1108  return 0;
1109 }
1110 
1112  AVBufferRef *device_ref,
1114  AVBufferRef **out_frames_ref)
1115 {
1116  AVBufferRef *frames_ref = NULL;
1117  const AVCodecHWConfigInternal *hw_config;
1118  const FFHWAccel *hwa;
1119  int i, ret;
1120  bool clean_priv_data = false;
1121 
1122  for (i = 0;; i++) {
1123  hw_config = ffcodec(avctx->codec)->hw_configs[i];
1124  if (!hw_config)
1125  return AVERROR(ENOENT);
1126  if (hw_config->public.pix_fmt == hw_pix_fmt)
1127  break;
1128  }
1129 
1130  hwa = hw_config->hwaccel;
1131  if (!hwa || !hwa->frame_params)
1132  return AVERROR(ENOENT);
1133 
1134  frames_ref = av_hwframe_ctx_alloc(device_ref);
1135  if (!frames_ref)
1136  return AVERROR(ENOMEM);
1137 
1138  if (!avctx->internal->hwaccel_priv_data) {
1139  avctx->internal->hwaccel_priv_data =
1140  av_mallocz(hwa->priv_data_size);
1141  if (!avctx->internal->hwaccel_priv_data) {
1142  av_buffer_unref(&frames_ref);
1143  return AVERROR(ENOMEM);
1144  }
1145  clean_priv_data = true;
1146  }
1147 
1148  ret = hwa->frame_params(avctx, frames_ref);
1149  if (ret >= 0) {
1150  AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frames_ref->data;
1151 
1152  if (frames_ctx->initial_pool_size) {
1153  // If the user has requested that extra output surfaces be
1154  // available then add them here.
1155  if (avctx->extra_hw_frames > 0)
1156  frames_ctx->initial_pool_size += avctx->extra_hw_frames;
1157 
1158  // If frame threading is enabled then an extra surface per thread
1159  // is also required.
1160  if (avctx->active_thread_type & FF_THREAD_FRAME)
1161  frames_ctx->initial_pool_size += avctx->thread_count;
1162  }
1163 
1164  *out_frames_ref = frames_ref;
1165  } else {
1166  if (clean_priv_data)
1168  av_buffer_unref(&frames_ref);
1169  }
1170  return ret;
1171 }
1172 
1173 static int hwaccel_init(AVCodecContext *avctx,
1174  const FFHWAccel *hwaccel)
1175 {
1176  int err;
1177 
1178  if (hwaccel->p.capabilities & AV_HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1180  av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1181  hwaccel->p.name);
1182  return AVERROR_PATCHWELCOME;
1183  }
1184 
1185  if (!avctx->internal->hwaccel_priv_data && hwaccel->priv_data_size) {
1186  avctx->internal->hwaccel_priv_data =
1187  av_mallocz(hwaccel->priv_data_size);
1188  if (!avctx->internal->hwaccel_priv_data)
1189  return AVERROR(ENOMEM);
1190  }
1191 
1192  avctx->hwaccel = &hwaccel->p;
1193  if (hwaccel->init) {
1194  err = hwaccel->init(avctx);
1195  if (err < 0) {
1196  av_log(avctx, AV_LOG_ERROR, "Failed setup for format %s: "
1197  "hwaccel initialisation returned error.\n",
1198  av_get_pix_fmt_name(hwaccel->p.pix_fmt));
1200  avctx->hwaccel = NULL;
1201  return err;
1202  }
1203  }
1204 
1205  return 0;
1206 }
1207 
1209 {
1210  if (FF_HW_HAS_CB(avctx, uninit))
1211  FF_HW_SIMPLE_CALL(avctx, uninit);
1212 
1214 
1215  avctx->hwaccel = NULL;
1216 
1217  av_buffer_unref(&avctx->hw_frames_ctx);
1218 }
1219 
1220 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1221 {
1222  const AVPixFmtDescriptor *desc;
1223  enum AVPixelFormat *choices;
1224  enum AVPixelFormat ret, user_choice;
1225  const AVCodecHWConfigInternal *hw_config;
1226  const AVCodecHWConfig *config;
1227  int i, n, err;
1228 
1229  // Find end of list.
1230  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1231  // Must contain at least one entry.
1232  av_assert0(n >= 1);
1233  // If a software format is available, it must be the last entry.
1234  desc = av_pix_fmt_desc_get(fmt[n - 1]);
1235  if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
1236  // No software format is available.
1237  } else {
1238  avctx->sw_pix_fmt = fmt[n - 1];
1239  }
1240 
1241  choices = av_memdup(fmt, (n + 1) * sizeof(*choices));
1242  if (!choices)
1243  return AV_PIX_FMT_NONE;
1244 
1245  for (;;) {
1246  // Remove the previous hwaccel, if there was one.
1247  ff_hwaccel_uninit(avctx);
1248 
1249  user_choice = avctx->get_format(avctx, choices);
1250  if (user_choice == AV_PIX_FMT_NONE) {
1251  // Explicitly chose nothing, give up.
1252  ret = AV_PIX_FMT_NONE;
1253  break;
1254  }
1255 
1256  desc = av_pix_fmt_desc_get(user_choice);
1257  if (!desc) {
1258  av_log(avctx, AV_LOG_ERROR, "Invalid format returned by "
1259  "get_format() callback.\n");
1260  ret = AV_PIX_FMT_NONE;
1261  break;
1262  }
1263  av_log(avctx, AV_LOG_DEBUG, "Format %s chosen by get_format().\n",
1264  desc->name);
1265 
1266  for (i = 0; i < n; i++) {
1267  if (choices[i] == user_choice)
1268  break;
1269  }
1270  if (i == n) {
1271  av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
1272  "%s not in possible list.\n", desc->name);
1273  ret = AV_PIX_FMT_NONE;
1274  break;
1275  }
1276 
1277  if (ffcodec(avctx->codec)->hw_configs) {
1278  for (i = 0;; i++) {
1279  hw_config = ffcodec(avctx->codec)->hw_configs[i];
1280  if (!hw_config)
1281  break;
1282  if (hw_config->public.pix_fmt == user_choice)
1283  break;
1284  }
1285  } else {
1286  hw_config = NULL;
1287  }
1288 
1289  if (!hw_config) {
1290  // No config available, so no extra setup required.
1291  ret = user_choice;
1292  break;
1293  }
1294  config = &hw_config->public;
1295 
1296  if (config->methods &
1298  avctx->hw_frames_ctx) {
1299  const AVHWFramesContext *frames_ctx =
1301  if (frames_ctx->format != user_choice) {
1302  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1303  "does not match the format of the provided frames "
1304  "context.\n", desc->name);
1305  goto try_again;
1306  }
1307  } else if (config->methods &
1309  avctx->hw_device_ctx) {
1310  const AVHWDeviceContext *device_ctx =
1312  if (device_ctx->type != config->device_type) {
1313  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1314  "does not match the type of the provided device "
1315  "context.\n", desc->name);
1316  goto try_again;
1317  }
1318  } else if (config->methods &
1320  // Internal-only setup, no additional configuration.
1321  } else if (config->methods &
1323  // Some ad-hoc configuration we can't see and can't check.
1324  } else {
1325  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1326  "missing configuration.\n", desc->name);
1327  goto try_again;
1328  }
1329  if (hw_config->hwaccel) {
1330  av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel %s "
1331  "initialisation.\n", desc->name, hw_config->hwaccel->p.name);
1332  err = hwaccel_init(avctx, hw_config->hwaccel);
1333  if (err < 0)
1334  goto try_again;
1335  }
1336  ret = user_choice;
1337  break;
1338 
1339  try_again:
1340  av_log(avctx, AV_LOG_DEBUG, "Format %s not usable, retrying "
1341  "get_format() without it.\n", desc->name);
1342  for (i = 0; i < n; i++) {
1343  if (choices[i] == user_choice)
1344  break;
1345  }
1346  for (; i + 1 < n; i++)
1347  choices[i] = choices[i + 1];
1348  --n;
1349  }
1350 
1351  if (ret < 0)
1352  ff_hwaccel_uninit(avctx);
1353 
1354  av_freep(&choices);
1355  return ret;
1356 }
1357 
1358 static const AVPacketSideData*
1361 {
1362  for (int i = 0; i < nb_sd; i++)
1363  if (sd[i].type == type)
1364  return &sd[i];
1365 
1366  return NULL;
1367 }
1368 
1371 {
1373 }
1374 
1376  const AVPacketSideData *sd_pkt)
1377 {
1378  const AVStereo3D *src;
1379  AVStereo3D *dst;
1380  int ret;
1381 
1382  ret = av_buffer_make_writable(&sd_frame->buf);
1383  if (ret < 0)
1384  return ret;
1385  sd_frame->data = sd_frame->buf->data;
1386 
1387  dst = ( AVStereo3D*)sd_frame->data;
1388  src = (const AVStereo3D*)sd_pkt->data;
1389 
1390  if (dst->type == AV_STEREO3D_UNSPEC)
1391  dst->type = src->type;
1392 
1393  if (dst->view == AV_STEREO3D_VIEW_UNSPEC)
1394  dst->view = src->view;
1395 
1396  if (dst->primary_eye == AV_PRIMARY_EYE_NONE)
1397  dst->primary_eye = src->primary_eye;
1398 
1399  if (!dst->baseline)
1400  dst->baseline = src->baseline;
1401 
1402  if (!dst->horizontal_disparity_adjustment.num)
1403  dst->horizontal_disparity_adjustment = src->horizontal_disparity_adjustment;
1404 
1405  if (!dst->horizontal_field_of_view.num)
1406  dst->horizontal_field_of_view = src->horizontal_field_of_view;
1407 
1408  return 0;
1409 }
1410 
1412 {
1413  AVExifMetadata ifd = { 0 };
1414  AVExifEntry *entry = NULL;
1415  AVBufferRef *buf = NULL;
1416  AVFrameSideData *sd_frame;
1417  int ret;
1418 
1419  ret = av_exif_parse_buffer(NULL, sd_pkt->data, sd_pkt->size, &ifd,
1421  if (ret < 0)
1422  return ret;
1423 
1424  ret = av_exif_get_entry(NULL, &ifd, av_exif_get_tag_id("Orientation"), 0, &entry);
1425  if (ret < 0)
1426  goto end;
1427 
1428  if (!entry) {
1429  ret = av_exif_ifd_to_dict(NULL, &ifd, &dst->metadata);
1430  if (ret < 0)
1431  goto end;
1432 
1433  sd_frame = av_frame_side_data_new(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_EXIF,
1434  sd_pkt->size, 0);
1435  if (sd_frame)
1436  memcpy(sd_frame->data, sd_pkt->data, sd_pkt->size);
1437  ret = sd_frame ? 0 : AVERROR(ENOMEM);
1438 
1439  goto end;
1440  } else if (entry->count <= 0 || entry->type != AV_TIFF_SHORT) {
1442  goto end;
1443  }
1444 
1445  // If a display matrix already exists in the frame, give it priority
1446  if (av_frame_side_data_get(dst->side_data, dst->nb_side_data, AV_FRAME_DATA_DISPLAYMATRIX))
1447  goto finish;
1448 
1449  sd_frame = av_frame_side_data_new(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_DISPLAYMATRIX,
1450  sizeof(int32_t) * 9, 0);
1451  if (!sd_frame) {
1452  ret = AVERROR(ENOMEM);
1453  goto end;
1454  }
1455 
1456  ret = av_exif_orientation_to_matrix((int32_t *)sd_frame->data, entry->value.uint[0]);
1457  if (ret < 0)
1458  goto end;
1459 
1460 finish:
1461  av_exif_remove_entry(NULL, &ifd, entry->id, 0);
1462 
1463  ret = av_exif_ifd_to_dict(NULL, &ifd, &dst->metadata);
1464  if (ret < 0)
1465  goto end;
1466 
1467  ret = av_exif_write(NULL, &ifd, &buf, AV_EXIF_TIFF_HEADER);
1468  if (ret < 0)
1469  goto end;
1470 
1471  if (!av_frame_side_data_add(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_EXIF, &buf, 0)) {
1472  ret = AVERROR(ENOMEM);
1473  goto end;
1474  }
1475 
1476  ret = 0;
1477 end:
1478  av_buffer_unref(&buf);
1479  av_exif_free(&ifd);
1480  return ret;
1481 }
1482 
1484  const AVPacketSideData *sd_src, int nb_sd_src,
1485  const SideDataMap *map)
1486 
1487 {
1488  for (int i = 0; map[i].packet < AV_PKT_DATA_NB; i++) {
1489  const enum AVPacketSideDataType type_pkt = map[i].packet;
1490  const enum AVFrameSideDataType type_frame = map[i].frame;
1491  const AVPacketSideData *sd_pkt;
1492  AVFrameSideData *sd_frame;
1493 
1494  sd_pkt = packet_side_data_get(sd_src, nb_sd_src, type_pkt);
1495  if (!sd_pkt)
1496  continue;
1497 
1498  sd_frame = av_frame_get_side_data(dst, type_frame);
1499  if (sd_frame) {
1500  if (type_frame == AV_FRAME_DATA_STEREO3D) {
1501  int ret = side_data_stereo3d_merge(sd_frame, sd_pkt);
1502  if (ret < 0)
1503  return ret;
1504  }
1505 
1506  continue;
1507  }
1508 
1509  switch (type_pkt) {
1510  case AV_PKT_DATA_EXIF: {
1511  int ret = side_data_exif_parse(dst, sd_pkt);
1512  if (ret < 0)
1513  return ret;
1514  break;
1515  }
1516  default:
1517  sd_frame = av_frame_new_side_data(dst, type_frame, sd_pkt->size);
1518  if (!sd_frame)
1519  return AVERROR(ENOMEM);
1520 
1521  memcpy(sd_frame->data, sd_pkt->data, sd_pkt->size);
1522  break;
1523  }
1524  }
1525 
1526  return 0;
1527 }
1528 
1530 {
1531  size_t size;
1532  const uint8_t *side_metadata;
1533 
1534  AVDictionary **frame_md = &frame->metadata;
1535 
1536  side_metadata = av_packet_get_side_data(avpkt,
1538  return av_packet_unpack_dictionary(side_metadata, size, frame_md);
1539 }
1540 
1542  AVFrame *frame, const AVPacket *pkt)
1543 {
1544  static const SideDataMap sd[] = {
1552  { AV_PKT_DATA_NB }
1553  };
1554 
1555  int ret = 0;
1556 
1557  frame->pts = pkt->pts;
1558  frame->duration = pkt->duration;
1559 
1560  if (pkt->side_data_elems) {
1562  if (ret < 0)
1563  return ret;
1564 
1566  if (ret < 0)
1567  return ret;
1568 
1570  }
1571 
1572  if (pkt->flags & AV_PKT_FLAG_DISCARD) {
1573  frame->flags |= AV_FRAME_FLAG_DISCARD;
1574  }
1575 
1576  if (avctx->flags & AV_CODEC_FLAG_COPY_OPAQUE) {
1577  ret = av_buffer_replace(&frame->opaque_ref, pkt->opaque_ref);
1578  if (ret < 0)
1579  return ret;
1580  frame->opaque = pkt->opaque;
1581  }
1582 
1583  return 0;
1584 }
1585 
1587 {
1588  int ret;
1589 
1592  if (ret < 0)
1593  return ret;
1594 
1595  for (int i = 0; i < avctx->nb_decoded_side_data; i++) {
1596  const AVFrameSideData *src = avctx->decoded_side_data[i];
1597  if (av_frame_get_side_data(frame, src->type))
1598  continue;
1599  ret = av_frame_side_data_clone(&frame->side_data, &frame->nb_side_data, src, 0);
1600  if (ret < 0)
1601  return ret;
1602  }
1603 
1605  const AVPacket *pkt = avctx->internal->last_pkt_props;
1606 
1608  if (ret < 0)
1609  return ret;
1610  }
1611 
1612  ret = fill_frame_props(avctx, frame);
1613  if (ret < 0)
1614  return ret;
1615 
1616  switch (avctx->codec->type) {
1617  case AVMEDIA_TYPE_VIDEO:
1618  if (frame->width && frame->height &&
1619  av_image_check_sar(frame->width, frame->height,
1620  frame->sample_aspect_ratio) < 0) {
1621  av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1622  frame->sample_aspect_ratio.num,
1623  frame->sample_aspect_ratio.den);
1624  frame->sample_aspect_ratio = (AVRational){ 0, 1 };
1625  }
1626  break;
1627  }
1628 
1629 #if CONFIG_LIBLCEVC_DEC
1630  AVCodecInternal *avci = avctx->internal;
1631  DecodeContext *dc = decode_ctx(avci);
1632 
1633  dc->lcevc.frame = dc->lcevc.ctx &&
1635 
1636  if (dc->lcevc.frame) {
1637  ret = ff_lcevc_parse_frame(dc->lcevc.ctx, frame, &dc->lcevc.format,
1638  &dc->lcevc.width, &dc->lcevc.height, avctx);
1639  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
1640  return ret;
1641 
1642  // force get_buffer2() to allocate the base frame using the same dimensions
1643  // as the final enhanced frame, in order to prevent reinitializing the buffer
1644  // pools unnecessarely
1645  if (!ret && dc->lcevc.width && dc->lcevc.height) {
1646  dc->lcevc.base_width = frame->width;
1647  dc->lcevc.base_height = frame->height;
1648  frame->width = dc->lcevc.width;
1649  frame->height = dc->lcevc.height;
1650  } else
1651  dc->lcevc.frame = 0;
1652  }
1653 #endif
1654 
1655  return 0;
1656 }
1657 
1659 {
1660  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1661  int i;
1662  int num_planes = av_pix_fmt_count_planes(frame->format);
1664  int flags = desc ? desc->flags : 0;
1665  if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
1666  num_planes = 2;
1667  for (i = 0; i < num_planes; i++) {
1668  av_assert0(frame->data[i]);
1669  }
1670  // For formats without data like hwaccel allow unused pointers to be non-NULL.
1671  for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
1672  if (frame->data[i])
1673  av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
1674  frame->data[i] = NULL;
1675  }
1676  }
1677 }
1678 
1679 static void decode_data_free(AVRefStructOpaque unused, void *obj)
1680 {
1681  FrameDecodeData *fdd = obj;
1682 
1683  if (CONFIG_LIBLCEVC_DEC)
1685  else
1687 
1688  if (fdd->hwaccel_priv_free)
1689  fdd->hwaccel_priv_free(fdd->hwaccel_priv);
1690 }
1691 
1693 {
1694  FrameDecodeData *fdd;
1695 
1696  av_assert1(!frame->private_ref);
1697  av_refstruct_unref(&frame->private_ref);
1698 
1699  fdd = av_refstruct_alloc_ext(sizeof(*fdd), 0, NULL, decode_data_free);
1700  if (!fdd)
1701  return AVERROR(ENOMEM);
1702 
1703  frame->private_ref = fdd;
1704 
1705 #if CONFIG_LIBLCEVC_DEC
1706  AVCodecInternal *avci = avctx->internal;
1707  DecodeContext *dc = decode_ctx(avci);
1708 
1709  if (!dc->lcevc.frame) {
1710  dc->lcevc.frame = dc->lcevc.ctx &&
1712 
1713  if (dc->lcevc.frame) {
1714  int ret = ff_lcevc_parse_frame(dc->lcevc.ctx, frame, &dc->lcevc.format,
1715  &dc->lcevc.width, &dc->lcevc.height, avctx);
1716  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
1717  return ret;
1718 
1719  if (!ret && dc->lcevc.width && dc->lcevc.height) {
1720  dc->lcevc.base_width = frame->width;
1721  dc->lcevc.base_height = frame->height;
1722  } else
1723  dc->lcevc.frame = 0;
1724  }
1725  }
1726  if (dc->lcevc.frame) {
1727  FFLCEVCFrame *frame_ctx;
1728  int ret;
1729 
1730  if (fdd->post_process || !dc->lcevc.width || !dc->lcevc.height) {
1731  dc->lcevc.frame = 0;
1732  return 0;
1733  }
1734 
1735  frame_ctx = av_refstruct_pool_get(dc->lcevc.ctx->frame_pool);
1736  if (!frame_ctx)
1737  return AVERROR(ENOMEM);
1738 
1739  frame_ctx->lcevc = av_refstruct_ref(dc->lcevc.ctx);
1740  frame_ctx->frame->width = dc->lcevc.width;
1741  frame_ctx->frame->height = dc->lcevc.height;
1742  frame_ctx->frame->format = dc->lcevc.format;
1744 
1745  frame->width = dc->lcevc.base_width;
1746  frame->height = dc->lcevc.base_height;
1747 
1748  ret = avctx->get_buffer2(avctx, frame_ctx->frame, 0);
1749  if (ret < 0) {
1750  av_refstruct_unref(&frame_ctx);
1751  return ret;
1752  }
1753 
1754  validate_avframe_allocation(avctx, frame_ctx->frame);
1755 
1756  fdd->post_process_opaque = frame_ctx;
1758  }
1759  dc->lcevc.frame = 0;
1760 #endif
1761 
1762  return 0;
1763 }
1764 
1766 {
1767  const FFHWAccel *hwaccel = ffhwaccel(avctx->hwaccel);
1768  int override_dimensions = 1;
1769  int ret;
1770 
1772 
1773  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1774  if ((unsigned)avctx->width > INT_MAX - STRIDE_ALIGN ||
1775  (ret = av_image_check_size2(FFALIGN(avctx->width, STRIDE_ALIGN), avctx->height, avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx)) < 0 || avctx->pix_fmt<0) {
1776  av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
1777  ret = AVERROR(EINVAL);
1778  goto fail;
1779  }
1780 
1781  if (frame->width <= 0 || frame->height <= 0) {
1782  frame->width = FFMAX(avctx->width, AV_CEIL_RSHIFT(avctx->coded_width, avctx->lowres));
1783  frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
1784  override_dimensions = 0;
1785  }
1786 
1787  if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
1788  av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
1789  ret = AVERROR(EINVAL);
1790  goto fail;
1791  }
1792  } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1793  if (frame->nb_samples * (int64_t)avctx->ch_layout.nb_channels > avctx->max_samples) {
1794  av_log(avctx, AV_LOG_ERROR, "samples per frame %d, exceeds max_samples %"PRId64"\n", frame->nb_samples, avctx->max_samples);
1795  ret = AVERROR(EINVAL);
1796  goto fail;
1797  }
1798  }
1799  ret = ff_decode_frame_props(avctx, frame);
1800  if (ret < 0)
1801  goto fail;
1802 
1803  if (hwaccel) {
1804  if (hwaccel->alloc_frame) {
1805  ret = hwaccel->alloc_frame(avctx, frame);
1806  goto end;
1807  }
1808  } else {
1809  avctx->sw_pix_fmt = avctx->pix_fmt;
1810  }
1811 
1812  ret = avctx->get_buffer2(avctx, frame, flags);
1813  if (ret < 0)
1814  goto fail;
1815 
1817 
1818  ret = ff_attach_decode_data(avctx, frame);
1819  if (ret < 0)
1820  goto fail;
1821 
1822 end:
1823  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions &&
1825  frame->width = avctx->width;
1826  frame->height = avctx->height;
1827  }
1828 
1829 fail:
1830  if (ret < 0) {
1831  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1833  }
1834 
1835  return ret;
1836 }
1837 
1839 {
1840  int ret;
1841 
1843 
1844  // make sure the discard flag does not persist
1845  frame->flags &= ~AV_FRAME_FLAG_DISCARD;
1846 
1847  if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1848  av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1849  frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1851  }
1852 
1853  if (!frame->data[0])
1854  return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1855 
1856  av_frame_side_data_free(&frame->side_data, &frame->nb_side_data);
1857 
1859  return ff_decode_frame_props(avctx, frame);
1860 
1861  uint8_t *data[AV_VIDEO_MAX_PLANES];
1863  int linesize[AV_VIDEO_MAX_PLANES];
1864 
1865  static_assert(AV_VIDEO_MAX_PLANES <= FF_ARRAY_ELEMS(frame->data) &&
1868  "Copying code needs to be adjusted");
1869  static_assert(sizeof(frame->linesize[0]) == sizeof(linesize[0]),
1870  "linesize needs to be switched to ptrdiff_t");
1871 
1872  for (int i = 0; i < AV_VIDEO_MAX_PLANES; ++i) {
1873  data[i] = frame->data[i];
1874  linesize[i] = frame->linesize[i];
1875  buf[i] = frame->buf[i];
1876  frame->buf[i] = NULL;
1877  }
1878  av_assert1(!frame->buf[AV_VIDEO_MAX_PLANES] && !frame->extended_buf);
1879 
1881 
1883  if (ret >= 0) {
1884  av_image_copy2(frame->data, frame->linesize,
1885  data, linesize,
1886  frame->format, frame->width, frame->height);
1887  }
1888  for (int i = 0; i < AV_VIDEO_MAX_PLANES; ++i)
1889  av_buffer_unref(&buf[i]);
1890 
1891  return ret;
1892 }
1893 
1895 {
1896  int ret = reget_buffer_internal(avctx, frame, flags);
1897  if (ret < 0)
1898  av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
1899  return ret;
1900 }
1901 
1902 typedef struct ProgressInternal {
1904  struct AVFrame *f;
1906 
1908 {
1909  av_assert1(!!f->f == !!f->progress);
1910  av_assert1(!f->progress || f->progress->f == f->f);
1911 }
1912 
1914 {
1916 
1917  av_assert1(!f->f && !f->progress);
1918 
1919  f->progress = av_refstruct_pool_get(pool);
1920  if (!f->progress)
1921  return AVERROR(ENOMEM);
1922 
1923  f->f = f->progress->f;
1924  return 0;
1925 }
1926 
1928 {
1929  int ret = ff_progress_frame_alloc(avctx, f);
1930  if (ret < 0)
1931  return ret;
1932 
1933  ret = ff_thread_get_buffer(avctx, f->progress->f, flags);
1934  if (ret < 0) {
1935  f->f = NULL;
1936  av_refstruct_unref(&f->progress);
1937  return ret;
1938  }
1939  return 0;
1940 }
1941 
1943 {
1944  av_assert1(src->progress && src->f && src->f == src->progress->f);
1945  av_assert1(!dst->f && !dst->progress);
1946  dst->f = src->f;
1947  dst->progress = av_refstruct_ref(src->progress);
1948 }
1949 
1951 {
1953  f->f = NULL;
1954  av_refstruct_unref(&f->progress);
1955 }
1956 
1958 {
1959  if (dst == src)
1960  return;
1963  if (src->f)
1965 }
1966 
1968 {
1969  ff_thread_progress_report(&f->progress->progress, n);
1970 }
1971 
1973 {
1974  ff_thread_progress_await(&f->progress->progress, n);
1975 }
1976 
1977 #if !HAVE_THREADS
1979 {
1981 }
1982 #endif /* !HAVE_THREADS */
1983 
1985 {
1986  const AVCodecContext *avctx = opaque.nc;
1987  ProgressInternal *progress = obj;
1988  int ret;
1989 
1991  if (ret < 0)
1992  return ret;
1993 
1994  progress->f = av_frame_alloc();
1995  if (!progress->f)
1996  return AVERROR(ENOMEM);
1997 
1998  return 0;
1999 }
2000 
2001 static void progress_frame_pool_reset_cb(AVRefStructOpaque unused, void *obj)
2002 {
2003  ProgressInternal *progress = obj;
2004 
2005  ff_thread_progress_reset(&progress->progress);
2006  av_frame_unref(progress->f);
2007 }
2008 
2010 {
2011  ProgressInternal *progress = obj;
2012 
2014  av_frame_free(&progress->f);
2015 }
2016 
2018 {
2019  AVCodecInternal *avci = avctx->internal;
2020  DecodeContext *dc = decode_ctx(avci);
2021  int ret = 0;
2022 
2023  dc->initial_pict_type = AV_PICTURE_TYPE_NONE;
2025  dc->intra_only_flag = AV_FRAME_FLAG_KEY;
2026  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO)
2027  dc->initial_pict_type = AV_PICTURE_TYPE_I;
2028  }
2029 
2030  /* if the decoder init function was already called previously,
2031  * free the already allocated subtitle_header before overwriting it */
2032  av_freep(&avctx->subtitle_header);
2033 
2034  if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
2035  av_log(avctx, AV_LOG_WARNING, "The maximum value for lowres supported by the decoder is %d\n",
2036  avctx->codec->max_lowres);
2037  avctx->lowres = avctx->codec->max_lowres;
2038  }
2039  if (avctx->sub_charenc) {
2040  if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
2041  av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
2042  "supported with subtitles codecs\n");
2043  return AVERROR(EINVAL);
2044  } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
2045  av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
2046  "subtitles character encoding will be ignored\n",
2047  avctx->codec_descriptor->name);
2049  } else {
2050  /* input character encoding is set for a text based subtitle
2051  * codec at this point */
2054 
2056 #if CONFIG_ICONV
2057  iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
2058  if (cd == (iconv_t)-1) {
2059  ret = AVERROR(errno);
2060  av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
2061  "with input character encoding \"%s\"\n", avctx->sub_charenc);
2062  return ret;
2063  }
2064  iconv_close(cd);
2065 #else
2066  av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
2067  "conversion needs a libavcodec built with iconv support "
2068  "for this codec\n");
2069  return AVERROR(ENOSYS);
2070 #endif
2071  }
2072  }
2073  }
2074 
2075  dc->pts_correction_num_faulty_pts =
2076  dc->pts_correction_num_faulty_dts = 0;
2077  dc->pts_correction_last_pts =
2078  dc->pts_correction_last_dts = INT64_MIN;
2079 
2080  if ( !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
2082  av_log(avctx, AV_LOG_WARNING,
2083  "gray decoding requested but not enabled at configuration time\n");
2084  if (avctx->flags2 & AV_CODEC_FLAG2_EXPORT_MVS) {
2086  }
2087 
2088  if (avctx->nb_side_data_prefer_packet == 1 &&
2089  avctx->side_data_prefer_packet[0] == -1)
2090  dc->side_data_pref_mask = ~0ULL;
2091  else {
2092  for (unsigned i = 0; i < avctx->nb_side_data_prefer_packet; i++) {
2093  int val = avctx->side_data_prefer_packet[i];
2094 
2095  if (val < 0 || val >= AV_PKT_DATA_NB) {
2096  av_log(avctx, AV_LOG_ERROR, "Invalid side data type: %d\n", val);
2097  return AVERROR(EINVAL);
2098  }
2099 
2100  for (unsigned j = 0; ff_sd_global_map[j].packet < AV_PKT_DATA_NB; j++) {
2101  if (ff_sd_global_map[j].packet == val) {
2102  val = ff_sd_global_map[j].frame;
2103 
2104  // this code will need to be changed when we have more than
2105  // 64 frame side data types
2106  if (val >= 64) {
2107  av_log(avctx, AV_LOG_ERROR, "Side data type too big\n");
2108  return AVERROR_BUG;
2109  }
2110 
2111  dc->side_data_pref_mask |= 1ULL << val;
2112  }
2113  }
2114  }
2115  }
2116 
2117  avci->in_pkt = av_packet_alloc();
2118  avci->last_pkt_props = av_packet_alloc();
2119  if (!avci->in_pkt || !avci->last_pkt_props)
2120  return AVERROR(ENOMEM);
2121 
2123  avci->progress_frame_pool =
2129  if (!avci->progress_frame_pool)
2130  return AVERROR(ENOMEM);
2131  }
2132  ret = decode_bsfs_init(avctx);
2133  if (ret < 0)
2134  return ret;
2135 
2137  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2138 #if CONFIG_LIBLCEVC_DEC
2139  ret = ff_lcevc_alloc(&dc->lcevc.ctx, avctx);
2140  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
2141  return ret;
2142 #endif
2143  }
2144  }
2145 
2146  return 0;
2147 }
2148 
2149 /**
2150  * Check side data preference and clear existing side data from frame
2151  * if needed.
2152  *
2153  * @retval 0 side data of this type can be added to frame
2154  * @retval 1 side data of this type should not be added to frame
2155  */
2156 static int side_data_pref(const AVCodecContext *avctx, AVFrameSideData ***sd,
2157  int *nb_sd, enum AVFrameSideDataType type)
2158 {
2159  DecodeContext *dc = decode_ctx(avctx->internal);
2160 
2161  // Note: could be skipped for `type` without corresponding packet sd
2162  if (av_frame_side_data_get(*sd, *nb_sd, type)) {
2163  if (dc->side_data_pref_mask & (1ULL << type))
2164  return 1;
2165  av_frame_side_data_remove(sd, nb_sd, type);
2166  }
2167 
2168  return 0;
2169 }
2170 
2171 
2173  enum AVFrameSideDataType type, size_t size,
2174  AVFrameSideData **psd)
2175 {
2176  AVFrameSideData *sd;
2177 
2178  if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data, type)) {
2179  if (psd)
2180  *psd = NULL;
2181  return 0;
2182  }
2183 
2185  if (psd)
2186  *psd = sd;
2187 
2188  return sd ? 0 : AVERROR(ENOMEM);
2189 }
2190 
2192  AVFrameSideData ***sd, int *nb_sd,
2194  AVBufferRef **buf)
2195 {
2196  int ret = 0;
2197 
2198  if (side_data_pref(avctx, sd, nb_sd, type))
2199  goto finish;
2200 
2201  if (!av_frame_side_data_add(sd, nb_sd, type, buf, 0))
2202  ret = AVERROR(ENOMEM);
2203 
2204 finish:
2206 
2207  return ret;
2208 }
2209 
2212  AVBufferRef **buf)
2213 {
2215  &frame->side_data, &frame->nb_side_data,
2216  type, buf);
2217 }
2218 
2220  AVFrameSideData ***sd, int *nb_sd,
2221  struct AVMasteringDisplayMetadata **mdm)
2222 {
2223  AVBufferRef *buf;
2224  size_t size;
2225 
2227  *mdm = NULL;
2228  return 0;
2229  }
2230 
2232  if (!*mdm)
2233  return AVERROR(ENOMEM);
2234 
2235  buf = av_buffer_create((uint8_t *)*mdm, size, NULL, NULL, 0);
2236  if (!buf) {
2237  av_freep(mdm);
2238  return AVERROR(ENOMEM);
2239  }
2240 
2242  &buf, 0)) {
2243  *mdm = NULL;
2244  av_buffer_unref(&buf);
2245  return AVERROR(ENOMEM);
2246  }
2247 
2248  return 0;
2249 }
2250 
2253 {
2254  if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data,
2256  *mdm = NULL;
2257  return 0;
2258  }
2259 
2261  return *mdm ? 0 : AVERROR(ENOMEM);
2262 }
2263 
2265  AVFrameSideData ***sd, int *nb_sd,
2266  AVContentLightMetadata **clm)
2267 {
2268  AVBufferRef *buf;
2269  size_t size;
2270 
2271  if (side_data_pref(avctx, sd, nb_sd, AV_FRAME_DATA_CONTENT_LIGHT_LEVEL)) {
2272  *clm = NULL;
2273  return 0;
2274  }
2275 
2277  if (!*clm)
2278  return AVERROR(ENOMEM);
2279 
2280  buf = av_buffer_create((uint8_t *)*clm, size, NULL, NULL, 0);
2281  if (!buf) {
2282  av_freep(clm);
2283  return AVERROR(ENOMEM);
2284  }
2285 
2287  &buf, 0)) {
2288  *clm = NULL;
2289  av_buffer_unref(&buf);
2290  return AVERROR(ENOMEM);
2291  }
2292 
2293  return 0;
2294 }
2295 
2297  AVContentLightMetadata **clm)
2298 {
2299  if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data,
2301  *clm = NULL;
2302  return 0;
2303  }
2304 
2306  return *clm ? 0 : AVERROR(ENOMEM);
2307 }
2308 
2309 int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
2310 {
2311  size_t size;
2312  const void *pal = av_packet_get_side_data(src, AV_PKT_DATA_PALETTE, &size);
2313 
2314  if (pal && size == AVPALETTE_SIZE) {
2315  memcpy(dst, pal, AVPALETTE_SIZE);
2316  return 1;
2317  } else if (pal) {
2318  av_log(logctx, AV_LOG_ERROR,
2319  "Palette size %zu is wrong\n", size);
2320  }
2321  return 0;
2322 }
2323 
2324 int ff_hwaccel_frame_priv_alloc(AVCodecContext *avctx, void **hwaccel_picture_private)
2325 {
2326  const FFHWAccel *hwaccel = ffhwaccel(avctx->hwaccel);
2327 
2328  if (!hwaccel || !hwaccel->frame_priv_data_size)
2329  return 0;
2330 
2331  av_assert0(!*hwaccel_picture_private);
2332 
2333  if (hwaccel->free_frame_priv) {
2334  AVHWFramesContext *frames_ctx;
2335 
2336  if (!avctx->hw_frames_ctx)
2337  return AVERROR(EINVAL);
2338 
2339  frames_ctx = (AVHWFramesContext *) avctx->hw_frames_ctx->data;
2340  *hwaccel_picture_private = av_refstruct_alloc_ext(hwaccel->frame_priv_data_size, 0,
2341  frames_ctx->device_ctx,
2342  hwaccel->free_frame_priv);
2343  } else {
2344  *hwaccel_picture_private = av_refstruct_allocz(hwaccel->frame_priv_data_size);
2345  }
2346 
2347  if (!*hwaccel_picture_private)
2348  return AVERROR(ENOMEM);
2349 
2350  return 0;
2351 }
2352 
2354 {
2355  AVCodecInternal *avci = avctx->internal;
2356  DecodeContext *dc = decode_ctx(avci);
2357 
2359  av_packet_unref(avci->in_pkt);
2360 
2361  dc->pts_correction_last_pts =
2362  dc->pts_correction_last_dts = INT64_MIN;
2363 
2364  if (avci->bsf)
2365  av_bsf_flush(avci->bsf);
2366 
2367  dc->nb_draining_errors = 0;
2368  dc->draining_started = 0;
2369 }
2370 
2372 {
2373  return av_mallocz(sizeof(DecodeContext));
2374 }
2375 
2377 {
2378  const DecodeContext *src_dc = decode_ctx(src->internal);
2379  DecodeContext *dst_dc = decode_ctx(dst->internal);
2380 
2381  dst_dc->initial_pict_type = src_dc->initial_pict_type;
2382  dst_dc->intra_only_flag = src_dc->intra_only_flag;
2383  dst_dc->side_data_pref_mask = src_dc->side_data_pref_mask;
2384 #if CONFIG_LIBLCEVC_DEC
2385  av_refstruct_replace(&dst_dc->lcevc.ctx, src_dc->lcevc.ctx);
2386  dst_dc->lcevc.width = src_dc->lcevc.width;
2387  dst_dc->lcevc.height = src_dc->lcevc.height;
2388  dst_dc->lcevc.format = src_dc->lcevc.format;
2389 #endif
2390 }
2391 
2393 {
2394 #if CONFIG_LIBLCEVC_DEC
2395  AVCodecInternal *avci = avctx->internal;
2396  DecodeContext *dc = decode_ctx(avci);
2397 
2398  av_refstruct_unref(&dc->lcevc.ctx);
2399 #endif
2400 }
2401 
2402 static int attach_displaymatrix(AVCodecContext *avctx, AVFrame *frame, int orientation)
2403 {
2404  AVFrameSideData *sd = NULL;
2405  int32_t *matrix;
2406  int ret;
2407  /* invalid orientation */
2408  if (orientation < 1 || orientation > 8)
2409  return AVERROR_INVALIDDATA;
2411  if (ret < 0) {
2412  av_log(avctx, AV_LOG_ERROR, "Could not allocate frame side data: %s\n", av_err2str(ret));
2413  return ret;
2414  }
2415  if (sd) {
2416  matrix = (int32_t *) sd->data;
2417  ret = av_exif_orientation_to_matrix(matrix, orientation);
2418  }
2419 
2420  return ret;
2421 }
2422 
2423 static int exif_attach_ifd(AVCodecContext *avctx, AVFrame *frame, const AVExifMetadata *ifd, AVBufferRef **pbuf)
2424 {
2425  const AVExifEntry *orient = NULL;
2426  AVExifMetadata *cloned = NULL;
2427  int ret;
2428 
2429  for (size_t i = 0; i < ifd->count; i++) {
2430  const AVExifEntry *entry = &ifd->entries[i];
2431  if (entry->id == av_exif_get_tag_id("Orientation") &&
2432  entry->count > 0 && entry->type == AV_TIFF_SHORT) {
2433  orient = entry;
2434  break;
2435  }
2436  }
2437 
2438  if (orient) {
2439  av_log(avctx, AV_LOG_DEBUG, "found EXIF orientation: %" PRIu64 "\n", orient->value.uint[0]);
2440  ret = attach_displaymatrix(avctx, frame, orient->value.uint[0]);
2441  if (ret < 0) {
2442  av_log(avctx, AV_LOG_WARNING, "unable to attach displaymatrix from EXIF\n");
2443  } else {
2444  cloned = av_exif_clone_ifd(ifd);
2445  if (!cloned) {
2446  ret = AVERROR(ENOMEM);
2447  goto end;
2448  }
2449  av_exif_remove_entry(avctx, cloned, orient->id, 0);
2450  ifd = cloned;
2451  }
2452  }
2453 
2454  ret = av_exif_ifd_to_dict(avctx, ifd, &frame->metadata);
2455  if (ret < 0)
2456  goto end;
2457 
2458  if (cloned || !*pbuf) {
2459  av_buffer_unref(pbuf);
2460  ret = av_exif_write(avctx, ifd, pbuf, AV_EXIF_TIFF_HEADER);
2461  if (ret < 0)
2462  goto end;
2463  }
2464 
2466  if (ret < 0)
2467  goto end;
2468 
2469  ret = 0;
2470 
2471 end:
2472  av_buffer_unref(pbuf);
2473  av_exif_free(cloned);
2474  av_free(cloned);
2475  return ret;
2476 }
2477 
2479 {
2480  AVBufferRef *dummy = NULL;
2481  return exif_attach_ifd(avctx, frame, ifd, &dummy);
2482 }
2483 
2485  enum AVExifHeaderMode header_mode)
2486 {
2487  int ret;
2488  AVBufferRef *data = *pbuf;
2489  AVExifMetadata ifd = { 0 };
2490 
2491  ret = av_exif_parse_buffer(avctx, data->data, data->size, &ifd, header_mode);
2492  if (ret < 0)
2493  goto end;
2494 
2495  ret = exif_attach_ifd(avctx, frame, &ifd, pbuf);
2496 
2497 end:
2498  av_buffer_unref(pbuf);
2499  av_exif_free(&ifd);
2500  return ret;
2501 }
lcevcdec.h
flags
const SwsFlags flags[]
Definition: swscale.c:72
ff_get_coded_side_data
const AVPacketSideData * ff_get_coded_side_data(const AVCodecContext *avctx, enum AVPacketSideDataType type)
Get side data of the given type from a decoding context.
Definition: decode.c:1369
DecodeContext::intra_only_flag
int intra_only_flag
This is set to AV_FRAME_FLAG_KEY for decoders of intra-only formats (those whose codec descriptor has...
Definition: decode.c:70
AVSubtitle
Definition: avcodec.h:2094
hwconfig.h
ff_progress_frame_report
void ff_progress_frame_report(ProgressFrame *f, int n)
Notify later decoding threads when part of their reference frame is ready.
Definition: decode.c:1967
av_samples_copy
int av_samples_copy(uint8_t *const *dst, uint8_t *const *src, int dst_offset, int src_offset, int nb_samples, int nb_channels, enum AVSampleFormat sample_fmt)
Copy samples from src to dst.
Definition: samplefmt.c:222
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: packet.c:433
AVCodecContext::hwaccel
const struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:1417
exif_attach_ifd
static int exif_attach_ifd(AVCodecContext *avctx, AVFrame *frame, const AVExifMetadata *ifd, AVBufferRef **pbuf)
Definition: decode.c:2423
FFCodec::receive_frame
int(* receive_frame)(struct AVCodecContext *avctx, struct AVFrame *frame)
Decode API with decoupled packet/frame dataflow.
Definition: codec_internal.h:219
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:203
AVBSFContext::par_in
AVCodecParameters * par_in
Parameters of the input stream.
Definition: bsf.h:90
hwaccel_init
static int hwaccel_init(AVCodecContext *avctx, const FFHWAccel *hwaccel)
Definition: decode.c:1173
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
ff_decode_get_packet
int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
Called by decoders to get the next packet for decoding.
Definition: decode.c:253
hw_pix_fmt
static enum AVPixelFormat hw_pix_fmt
Definition: hw_decode.c:46
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
Frame::width
int width
Definition: ffplay.c:160
entry
#define entry
Definition: aom_film_grain_template.c:66
AV_CODEC_HW_CONFIG_METHOD_INTERNAL
@ AV_CODEC_HW_CONFIG_METHOD_INTERNAL
The codec supports this format by some internal method.
Definition: codec.h:318
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
ff_thread_progress_report
void ff_thread_progress_report(ThreadProgress *pro, int n)
This function is a no-op in no-op mode; otherwise it notifies other threads that a certain level of p...
Definition: threadprogress.c:53
AVCodecContext::alpha_mode
enum AVAlphaMode alpha_mode
Indicates how the alpha channel of the video is represented.
Definition: avcodec.h:1944
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVSubtitle::rects
AVSubtitleRect ** rects
Definition: avcodec.h:2099
threadprogress.h
AVCodecContext::get_format
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Callback to negotiate the pixel format.
Definition: avcodec.h:769
ff_icc_profile_read_primaries
int ff_icc_profile_read_primaries(FFIccContext *s, cmsHPROFILE profile, AVColorPrimariesDesc *out_primaries)
Read the color primaries and white point coefficients encoded by an ICC profile, and return the raw v...
Definition: fflcms2.c:253
AV_WL32
#define AV_WL32(p, v)
Definition: intreadwrite.h:422
av_exif_parse_buffer
int av_exif_parse_buffer(void *logctx, const uint8_t *buf, size_t size, AVExifMetadata *ifd, enum AVExifHeaderMode header_mode)
Decodes the EXIF data provided in the buffer and writes it into the struct *ifd.
Definition: exif.c:882
AVCodecContext::colorspace
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:667
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:666
FFCodec::cb
union FFCodec::@106 cb
AVCodecContext::decoded_side_data
AVFrameSideData ** decoded_side_data
Array containing static side data, such as HDR10 CLL / MDCV structures.
Definition: avcodec.h:1936
ff_get_format
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: decode.c:1220
apply_cropping
static int apply_cropping(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:754
ThreadProgress
ThreadProgress is an API to easily notify other threads about progress of any kind as long as it can ...
Definition: threadprogress.h:43
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1036
av_frame_get_side_data
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:659
AVExifEntry
Definition: exif.h:85
av_frame_new_side_data
AVFrameSideData * av_frame_new_side_data(AVFrame *frame, enum AVFrameSideDataType type, size_t size)
Add a new side data to a frame.
Definition: frame.c:647
av_exif_write
int av_exif_write(void *logctx, const AVExifMetadata *ifd, AVBufferRef **buffer, enum AVExifHeaderMode header_mode)
Allocates a buffer using av_malloc of an appropriate size and writes the EXIF data represented by ifd...
Definition: exif.c:753
AVExifMetadata
Definition: exif.h:76
AVColorPrimariesDesc
Struct that contains both white point location and primaries location, providing the complete descrip...
Definition: csp.h:78
DecodeContext::initial_pict_type
enum AVPictureType initial_pict_type
This is set to AV_PICTURE_TYPE_I for intra only video decoders and to AV_PICTURE_TYPE_NONE for other ...
Definition: decode.c:77
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3456
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
AV_HWACCEL_CODEC_CAP_EXPERIMENTAL
#define AV_HWACCEL_CODEC_CAP_EXPERIMENTAL
HWAccel is experimental and is thus avoided in favor of non experimental codecs.
Definition: avcodec.h:1995
AV_FRAME_DATA_A53_CC
@ AV_FRAME_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:59
AVRefStructOpaque
RefStruct is an API for creating reference-counted objects with minimal overhead.
Definition: refstruct.h:58
matrix
Definition: vc1dsp.c:43
AV_PKT_FLAG_DISCARD
#define AV_PKT_FLAG_DISCARD
Flag is used to discard packets which are required to maintain valid decoder state but are not requir...
Definition: packet.h:657
AVHWFramesContext::format
enum AVPixelFormat format
The pixel format identifying the underlying HW surface type.
Definition: hwcontext.h:200
AVPictureType
AVPictureType
Definition: avutil.h:276
av_exif_ifd_to_dict
int av_exif_ifd_to_dict(void *logctx, const AVExifMetadata *ifd, AVDictionary **metadata)
Recursively reads all tags from the IFD and stores them in the provided metadata dictionary.
Definition: exif.c:1053
AVCodecInternal::skip_samples
int skip_samples
Number of audio samples to skip at the start of the next decoded frame.
Definition: internal.h:125
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1410
AV_CODEC_FLAG_UNALIGNED
#define AV_CODEC_FLAG_UNALIGNED
Allow decoders to produce frames with data planes that are not aligned to CPU requirements (e....
Definition: avcodec.h:209
AVCodecContext::codec_descriptor
const struct AVCodecDescriptor * codec_descriptor
AVCodecDescriptor.
Definition: avcodec.h:1716
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:263
AVCodecDescriptor::name
const char * name
Name of the codec described by this descriptor.
Definition: codec_desc.h:46
AV_WL8
#define AV_WL8(p, d)
Definition: intreadwrite.h:395
AVCodecContext::coded_side_data
AVPacketSideData * coded_side_data
Additional data associated with the entire coded stream.
Definition: avcodec.h:1775
int64_t
long long int64_t
Definition: coverity.c:34
av_exif_orientation_to_matrix
int av_exif_orientation_to_matrix(int32_t *matrix, int orientation)
Convert an orientation constant used by EXIF's orientation tag into a display matrix used by AV_FRAME...
Definition: exif.c:1333
AV_VIDEO_MAX_PLANES
#define AV_VIDEO_MAX_PLANES
Maximum number of planes in any pixel format.
Definition: pixfmt.h:40
AVSubtitle::num_rects
unsigned num_rects
Definition: avcodec.h:2098
AVExifHeaderMode
AVExifHeaderMode
Definition: exif.h:58
av_unused
#define av_unused
Definition: attributes.h:164
decode_simple_receive_frame
static int decode_simple_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:600
AV_FRAME_DATA_S12M_TIMECODE
@ AV_FRAME_DATA_S12M_TIMECODE
Timecode which conforms to SMPTE ST 12-1.
Definition: frame.h:152
FFHWAccel::p
AVHWAccel p
The public AVHWAccel.
Definition: hwaccel_internal.h:38
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:64
AVFrame::opaque
void * opaque
Frame owner's private data.
Definition: frame.h:572
FrameDecodeData
This struct stores per-frame lavc-internal data and is attached to it via private_ref.
Definition: decode.h:33
av_hwframe_ctx_init
int av_hwframe_ctx_init(AVBufferRef *ref)
Finalize the context before use.
Definition: hwcontext.c:337
DecodeContext::pts_correction_last_pts
int64_t pts_correction_last_pts
Number of incorrect DTS values so far.
Definition: decode.c:89
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:434
AVFrameSideData::buf
AVBufferRef * buf
Definition: frame.h:294
AVCodecContext::color_trc
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:660
AVFrame::width
int width
Definition: frame.h:506
AVPacketSideData
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition: packet.h:416
AVCodec::capabilities
int capabilities
Codec capabilities.
Definition: codec.h:191
FFHWAccel::frame_params
int(* frame_params)(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx)
Fill the given hw_frames context with current codec parameters.
Definition: hwaccel_internal.h:146
av_hwframe_ctx_alloc
AVBufferRef * av_hwframe_ctx_alloc(AVBufferRef *device_ref_in)
Allocate an AVHWFramesContext tied to a given device context.
Definition: hwcontext.c:263
internal.h
AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX
@ AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX
The codec supports this format via the hw_frames_ctx interface.
Definition: codec.h:311
AVPacket::data
uint8_t * data
Definition: packet.h:595
FFLCEVCContext
Definition: lcevcdec.h:34
AVComponentDescriptor::depth
int depth
Number of bits in the component.
Definition: pixdesc.h:57
AVCOL_TRC_UNSPECIFIED
@ AVCOL_TRC_UNSPECIFIED
Definition: pixfmt.h:669
ff_progress_frame_get_buffer
int ff_progress_frame_get_buffer(AVCodecContext *avctx, ProgressFrame *f, int flags)
Wrapper around ff_progress_frame_alloc() and ff_thread_get_buffer().
Definition: decode.c:1927
data
const char data[16]
Definition: mxf.c:149
AV_PKT_DATA_S12M_TIMECODE
@ AV_PKT_DATA_S12M_TIMECODE
Timecode which conforms to SMPTE ST 12-1:2014.
Definition: packet.h:288
FFCodec
Definition: codec_internal.h:127
AVCodecContext::subtitle_header
uint8_t * subtitle_header
Definition: avcodec.h:1751
AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
@ AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
Definition: packet.h:672
FrameDecodeData::hwaccel_priv_free
void(* hwaccel_priv_free)(void *priv)
Definition: decode.h:55
FF_HW_SIMPLE_CALL
#define FF_HW_SIMPLE_CALL(avctx, function)
Definition: hwaccel_internal.h:176
AV_FRAME_DATA_DISPLAYMATRIX
@ AV_FRAME_DATA_DISPLAYMATRIX
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
Definition: frame.h:85
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:613
FF_COMPLIANCE_EXPERIMENTAL
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
Definition: defs.h:62
FF_SUB_CHARENC_MODE_PRE_DECODER
#define FF_SUB_CHARENC_MODE_PRE_DECODER
the AVPacket data needs to be recoded to UTF-8 before being fed to the decoder, requires iconv
Definition: avcodec.h:1734
AVDictionary
Definition: dict.c:32
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AVColorPrimaries
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition: pixfmt.h:636
avcodec_default_get_format
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Definition: decode.c:997
av_frame_side_data_clone
int av_frame_side_data_clone(AVFrameSideData ***sd, int *nb_sd, const AVFrameSideData *src, unsigned int flags)
Add a new side data entry to an array based on existing side data, taking a reference towards the con...
Definition: side_data.c:249
avcodec_is_open
int avcodec_is_open(AVCodecContext *s)
Definition: avcodec.c:705
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
AVFrame::buf
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:611
AV_RL8
#define AV_RL8(x)
Definition: intreadwrite.h:394
ff_set_dimensions
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:91
decode_ctx
static DecodeContext * decode_ctx(AVCodecInternal *avci)
Definition: decode.c:111
av_bsf_free
void av_bsf_free(AVBSFContext **pctx)
Free a bitstream filter context and everything associated with it; write NULL into the supplied point...
Definition: bsf.c:52
FF_SUB_CHARENC_MODE_AUTOMATIC
#define FF_SUB_CHARENC_MODE_AUTOMATIC
libavcodec will select the mode itself
Definition: avcodec.h:1733
AV_STEREO3D_VIEW_UNSPEC
@ AV_STEREO3D_VIEW_UNSPEC
Content is unspecified.
Definition: stereo3d.h:168
tf_sess_config.config
config
Definition: tf_sess_config.py:33
thread.h
dummy
static int dummy
Definition: ffplay.c:3751
AV_STEREO3D_UNSPEC
@ AV_STEREO3D_UNSPEC
Video is stereoscopic but the packing is unspecified.
Definition: stereo3d.h:143
av_frame_apply_cropping
int av_frame_apply_cropping(AVFrame *frame, int flags)
Crop the given video AVFrame according to its crop_left/crop_top/crop_right/ crop_bottom fields.
Definition: frame.c:760
DecodeContext::pts_correction_num_faulty_dts
int64_t pts_correction_num_faulty_dts
Number of incorrect PTS values so far.
Definition: decode.c:88
ff_hwaccel_uninit
void ff_hwaccel_uninit(AVCodecContext *avctx)
Definition: decode.c:1208
av_memdup
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
Definition: mem.c:304
AVContentLightMetadata
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
Definition: mastering_display_metadata.h:107
decode_get_packet
static int decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
Definition: decode.c:228
AVCodec::max_lowres
uint8_t max_lowres
maximum value for lowres supported by the decoder
Definition: codec.h:192
AVPacketSideData::size
size_t size
Definition: packet.h:418
AV_TIFF_SHORT
@ AV_TIFF_SHORT
Definition: exif.h:45
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3496
DecodeContext::frame
AVFrame * frame
Definition: decode_simple.h:39
DecodeContext::nb_draining_errors
int nb_draining_errors
Definition: decode.c:80
AV_CODEC_FLAG_COPY_OPAQUE
#define AV_CODEC_FLAG_COPY_OPAQUE
Definition: avcodec.h:279
finish
static void finish(void)
Definition: movenc.c:374
FFHWAccel
Definition: hwaccel_internal.h:34
bsf.h
guess_correct_pts
static int64_t guess_correct_pts(DecodeContext *dc, int64_t reordered_pts, int64_t dts)
Attempt to guess proper monotonic timestamps for decoded video frames which might have incorrect time...
Definition: decode.c:295
AVCodecContext::codec
const struct AVCodec * codec
Definition: avcodec.h:448
AV_PKT_DATA_PALETTE
@ AV_PKT_DATA_PALETTE
An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE bytes worth of palette.
Definition: packet.h:47
AVPacket::opaque_ref
AVBufferRef * opaque_ref
AVBufferRef for free use by the API user.
Definition: packet.h:631
STRIDE_ALIGN
#define STRIDE_ALIGN
Definition: internal.h:46
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1051
fail
#define fail()
Definition: checkasm.h:224
ff_icc_context_init
int ff_icc_context_init(FFIccContext *s, void *avctx)
Initializes an FFIccContext.
Definition: fflcms2.c:30
AVCodecContext::thread_count
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
Definition: avcodec.h:1573
AV_PIX_FMT_FLAG_HWACCEL
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:128
ff_lcevc_process
int ff_lcevc_process(void *logctx, AVFrame *frame)
Definition: lcevcdec.c:359
av_exif_free
void av_exif_free(AVExifMetadata *ifd)
Frees all resources associated with the given EXIF metadata struct.
Definition: exif.c:659
FF_SUB_CHARENC_MODE_DO_NOTHING
#define FF_SUB_CHARENC_MODE_DO_NOTHING
do nothing (demuxer outputs a stream supposed to be already in UTF-8, or the codec is bitmap for inst...
Definition: avcodec.h:1732
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:496
val
static double val(void *priv, double ch)
Definition: aeval.c:77
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
ff_decode_frame_props_from_pkt
int ff_decode_frame_props_from_pkt(const AVCodecContext *avctx, AVFrame *frame, const AVPacket *pkt)
Set various frame properties from the provided packet.
Definition: decode.c:1541
pts
static int64_t pts
Definition: transcode_aac.c:644
add_metadata_from_side_data
static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
Definition: decode.c:1529
AVCodecContext::coded_height
int coded_height
Definition: avcodec.h:615
AVCodecContext::max_samples
int64_t max_samples
The number of samples per frame to maximally accept.
Definition: avcodec.h:1837
AVRational::num
int num
Numerator.
Definition: rational.h:59
progressframe.h
AVFrameSideDataType
AVFrameSideDataType
Definition: frame.h:49
refstruct.h
AVSubtitleRect::ass
char * ass
0 terminated ASS/SSA compatible event line.
Definition: avcodec.h:2091
av_image_check_size2
int av_image_check_size2(unsigned int w, unsigned int h, int64_t max_pixels, enum AVPixelFormat pix_fmt, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of a plane of an image with...
Definition: imgutils.c:289
ff_decode_internal_sync
av_cold void ff_decode_internal_sync(AVCodecContext *dst, const AVCodecContext *src)
Definition: decode.c:2376
ff_frame_new_side_data_from_buf
int ff_frame_new_side_data_from_buf(const AVCodecContext *avctx, AVFrame *frame, enum AVFrameSideDataType type, AVBufferRef **buf)
Similar to ff_frame_new_side_data, but using an existing buffer ref.
Definition: decode.c:2210
avsubtitle_free
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: avcodec.c:413
av_refstruct_allocz
static void * av_refstruct_allocz(size_t size)
Equivalent to av_refstruct_alloc_ext(size, 0, NULL, NULL)
Definition: refstruct.h:105
AVHWDeviceContext
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
Definition: hwcontext.h:63
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:52
AVCodecContext::get_buffer2
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:1212
GET_UTF8
#define GET_UTF8(val, GET_BYTE, ERROR)
Convert a UTF-8 character (up to 4 bytes) to its 32-bit UCS-4 encoded form.
Definition: common.h:488
avcodec_decode_subtitle2
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
Decode a subtitle message.
Definition: decode.c:926
ff_decode_content_light_new_ext
int ff_decode_content_light_new_ext(const AVCodecContext *avctx, AVFrameSideData ***sd, int *nb_sd, AVContentLightMetadata **clm)
Same as ff_decode_content_light_new, but taking a AVFrameSideData array directly instead of an AVFram...
Definition: decode.c:2264
avassert.h
FF_CODEC_CAP_USES_PROGRESSFRAMES
#define FF_CODEC_CAP_USES_PROGRESSFRAMES
The decoder might make use of the ProgressFrame API.
Definition: codec_internal.h:69
AVCodecContext::color_primaries
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:653
AV_PKT_DATA_PARAM_CHANGE
@ AV_PKT_DATA_PARAM_CHANGE
An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows:
Definition: packet.h:69
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
AVFrameSideData::size
size_t size
Definition: frame.h:292
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:119
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:649
emms_c
#define emms_c()
Definition: emms.h:89
ff_progress_frame_ref
void ff_progress_frame_ref(ProgressFrame *dst, const ProgressFrame *src)
Set dst->f to src->f and make dst a co-owner of src->f.
Definition: decode.c:1942
AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
@ AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
Definition: packet.h:673
AVCodecContext::side_data_prefer_packet
int * side_data_prefer_packet
Decoding only.
Definition: avcodec.h:1920
stereo3d.h
FrameDecodeData::hwaccel_priv_post_process
int(* hwaccel_priv_post_process)(void *logctx, AVFrame *frame)
Per-frame private data for hwaccels.
Definition: decode.h:53
ff_hwaccel_frame_priv_alloc
int ff_hwaccel_frame_priv_alloc(AVCodecContext *avctx, void **hwaccel_picture_private)
Allocate a hwaccel frame private data if the provided avctx uses a hwaccel method that needs it.
Definition: decode.c:2324
get_subtitle_defaults
static void get_subtitle_defaults(AVSubtitle *sub)
Definition: decode.c:839
FrameDecodeData::post_process_opaque
void * post_process_opaque
RefStruct reference.
Definition: decode.h:45
av_new_packet
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: packet.c:98
ff_decode_internal_uninit
av_cold void ff_decode_internal_uninit(AVCodecContext *avctx)
Definition: decode.c:2392
validate_avframe_allocation
static void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1658
AVCodecInternal::buffer_pkt
AVPacket * buffer_pkt
Temporary buffers for newly received or not yet output packets/frames.
Definition: internal.h:144
av_bsf_flush
void av_bsf_flush(AVBSFContext *ctx)
Reset the internal bitstream filter state.
Definition: bsf.c:190
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:60
FFHWAccel::priv_data_size
int priv_data_size
Size of the private data to allocate in AVCodecInternal.hwaccel_priv_data.
Definition: hwaccel_internal.h:114
AVCodecContext::nb_decoded_side_data
int nb_decoded_side_data
Definition: avcodec.h:1937
AV_GET_BUFFER_FLAG_REF
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition: avcodec.h:411
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
ff_thread_get_buffer
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
Definition: pthread_frame.c:1044
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:42
AVHWDeviceType
AVHWDeviceType
Definition: hwcontext.h:27
AVCodecDescriptor::type
enum AVMediaType type
Definition: codec_desc.h:40
av_refstruct_alloc_ext
static void * av_refstruct_alloc_ext(size_t size, unsigned flags, void *opaque, void(*free_cb)(AVRefStructOpaque opaque, void *obj))
A wrapper around av_refstruct_alloc_ext_c() for the common case of a non-const qualified opaque.
Definition: refstruct.h:94
av_exif_clone_ifd
AVExifMetadata * av_exif_clone_ifd(const AVExifMetadata *ifd)
Allocates a duplicate of the provided EXIF metadata struct.
Definition: exif.c:1284
AVCodecContext::bits_per_raw_sample
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:1565
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:231
AVPacketSideData::data
uint8_t * data
Definition: packet.h:417
AVRefStructPool
AVRefStructPool is an API for a thread-safe pool of objects managed via the RefStruct API.
Definition: refstruct.c:183
ctx
static AVFormatContext * ctx
Definition: movenc.c:49
ff_progress_frame_unref
void ff_progress_frame_unref(ProgressFrame *f)
Give up a reference to the underlying frame contained in a ProgressFrame and reset the ProgressFrame,...
Definition: decode.c:1950
decode.h
AVBSFContext::time_base_in
AVRational time_base_in
The timebase used for the timestamps of the input packets.
Definition: bsf.h:102
AV_FRAME_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
@ AV_FRAME_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
HDR dynamic metadata associated with a video frame.
Definition: frame.h:269
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
AVCodecHWConfig::pix_fmt
enum AVPixelFormat pix_fmt
For decoders, a hardware pixel format which that decoder may be able to decode to if suitable hardwar...
Definition: codec.h:339
AVSubtitle::pts
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition: avcodec.h:2100
av_csp_primaries_id_from_desc
enum AVColorPrimaries av_csp_primaries_id_from_desc(const AVColorPrimariesDesc *prm)
Detects which enum AVColorPrimaries constant corresponds to the given complete gamut description.
Definition: csp.c:115
AVCodecContext::max_pixels
int64_t max_pixels
The number of pixels per image to maximally accept.
Definition: avcodec.h:1794
AV_PKT_DATA_LCEVC
@ AV_PKT_DATA_LCEVC
Raw LCEVC payload data, as a uint8_t array, with NAL emulation bytes intact.
Definition: packet.h:346
av_hwdevice_get_type_name
const char * av_hwdevice_get_type_name(enum AVHWDeviceType type)
Get the string name of an AVHWDeviceType.
Definition: hwcontext.c:120
progress_frame_pool_init_cb
static av_cold int progress_frame_pool_init_cb(AVRefStructOpaque opaque, void *obj)
Definition: decode.c:1984
av_mallocz
#define av_mallocz(s)
Definition: tableprint_vlc.h:31
AVPacket::opaque
void * opaque
for some private data of the user
Definition: packet.h:620
ProgressInternal
Definition: decode.c:1902
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:639
AVCodecHWConfigInternal::hwaccel
const struct FFHWAccel * hwaccel
If this configuration uses a hwaccel, a pointer to it.
Definition: hwconfig.h:35
check_progress_consistency
static void check_progress_consistency(const ProgressFrame *f)
Definition: decode.c:1907
av_content_light_metadata_alloc
AVContentLightMetadata * av_content_light_metadata_alloc(size_t *size)
Allocate an AVContentLightMetadata structure and set its fields to default values.
Definition: mastering_display_metadata.c:72
FFCodec::decode
int(* decode)(struct AVCodecContext *avctx, struct AVFrame *frame, int *got_frame_ptr, struct AVPacket *avpkt)
Decode to an AVFrame.
Definition: codec_internal.h:202
discard_samples
static int discard_samples(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
Definition: decode.c:321
ff_decode_get_hw_frames_ctx
int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx, enum AVHWDeviceType dev_type)
Make sure avctx.hw_frames_ctx is set.
Definition: decode.c:1060
ff_decode_mastering_display_new
int ff_decode_mastering_display_new(const AVCodecContext *avctx, AVFrame *frame, AVMasteringDisplayMetadata **mdm)
Wrapper around av_mastering_display_metadata_create_side_data(), which rejects side data overridden b...
Definition: decode.c:2251
DecodeContext::draining_started
int draining_started
The caller has submitted a NULL packet on input.
Definition: decode.c:85
ff_thread_get_packet
#define ff_thread_get_packet(avctx, pkt)
Definition: decode.c:224
AVCodecDescriptor::props
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: codec_desc.h:54
if
if(ret)
Definition: filter_design.txt:179
ff_attach_decode_data
int ff_attach_decode_data(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1692
AVCodecContext::sub_charenc
char * sub_charenc
Character encoding of the input subtitles file.
Definition: avcodec.h:1723
AV_CODEC_FLAG2_SKIP_MANUAL
#define AV_CODEC_FLAG2_SKIP_MANUAL
Do not skip samples and export skip information as frame side data.
Definition: avcodec.h:368
AV_CODEC_PROP_INTRA_ONLY
#define AV_CODEC_PROP_INTRA_ONLY
Codec uses only intra compression.
Definition: codec_desc.h:72
AVCodecInternal::progress_frame_pool
struct AVRefStructPool * progress_frame_pool
Definition: internal.h:71
av_exif_get_tag_id
int32_t av_exif_get_tag_id(const char *name)
Retrieves the tag ID associated with the provided tag string name.
Definition: exif.c:244
ff_thread_progress_await
void ff_thread_progress_await(const ThreadProgress *pro_c, int n)
This function is a no-op in no-op mode; otherwise it waits until other threads have reached a certain...
Definition: threadprogress.c:64
AV_PKT_DATA_EXIF
@ AV_PKT_DATA_EXIF
Extensible image file format metadata.
Definition: packet.h:369
ff_decode_exif_attach_ifd
int ff_decode_exif_attach_ifd(AVCodecContext *avctx, AVFrame *frame, const AVExifMetadata *ifd)
Definition: decode.c:2478
av_bsf_init
int av_bsf_init(AVBSFContext *ctx)
Prepare the filter for use, after all the parameters and options have been set.
Definition: bsf.c:149
utf8_check
static int utf8_check(const uint8_t *str)
Definition: decode.c:907
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
format
New swscale design to change SwsGraph is what coordinates multiple passes These can include cascaded scaling error diffusion and so on Or we could have separate passes for the vertical and horizontal scaling In between each SwsPass lies a fully allocated image buffer Graph passes may have different levels of e g we can have a single threaded error diffusion pass following a multi threaded scaling pass SwsGraph is internally recreated whenever the image format
Definition: swscale-v2.txt:14
AVCodecContext::apply_cropping
int apply_cropping
Video decoding only.
Definition: avcodec.h:1821
AVCodecContext::color_range
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:677
av_buffer_unref
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:139
AV_EXIF_TIFF_HEADER
@ AV_EXIF_TIFF_HEADER
The TIFF header starts with 0x49492a00, or 0x4d4d002a.
Definition: exif.h:63
hwaccel_internal.h
av_bsf_receive_packet
int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
Retrieve a filtered packet.
Definition: bsf.c:230
AVCodec::type
enum AVMediaType type
Definition: codec.h:185
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVCodecContext::nb_coded_side_data
int nb_coded_side_data
Definition: avcodec.h:1776
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:474
av_frame_side_data_remove
void av_frame_side_data_remove(AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type)
Remove and free all side data instances of the given type from an array.
Definition: side_data.c:103
FF_CODEC_CB_TYPE_DECODE_SUB
@ FF_CODEC_CB_TYPE_DECODE_SUB
Definition: codec_internal.h:112
AVPALETTE_SIZE
#define AVPALETTE_SIZE
Definition: pixfmt.h:32
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:278
AV_CODEC_PROP_BITMAP_SUB
#define AV_CODEC_PROP_BITMAP_SUB
Subtitle codec is bitmap based Decoded AVSubtitle data can be read from the AVSubtitleRect->pict fiel...
Definition: codec_desc.h:111
AV_FRAME_DATA_ICC_PROFILE
@ AV_FRAME_DATA_ICC_PROFILE
The data contains an ICC profile as an opaque octet buffer following the format described by ISO 1507...
Definition: frame.h:144
av_refstruct_pool_alloc_ext
static AVRefStructPool * av_refstruct_pool_alloc_ext(size_t size, unsigned flags, void *opaque, int(*init_cb)(AVRefStructOpaque opaque, void *obj), void(*reset_cb)(AVRefStructOpaque opaque, void *obj), void(*free_entry_cb)(AVRefStructOpaque opaque, void *obj), void(*free_cb)(AVRefStructOpaque opaque))
A wrapper around av_refstruct_pool_alloc_ext_c() for the common case of a non-const qualified opaque.
Definition: refstruct.h:258
AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
@ AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata associated with a video frame.
Definition: frame.h:120
av_refstruct_pool_get
void * av_refstruct_pool_get(AVRefStructPool *pool)
Get an object from the pool, reusing an old one from the pool when available.
Definition: refstruct.c:297
FFLCEVCFrame::lcevc
FFLCEVCContext * lcevc
Definition: lcevcdec.h:45
AV_REFSTRUCT_POOL_FLAG_FREE_ON_INIT_ERROR
#define AV_REFSTRUCT_POOL_FLAG_FREE_ON_INIT_ERROR
If this flag is set and both init_cb and free_entry_cb callbacks are provided, then free_cb will be c...
Definition: refstruct.h:213
DecodeContext::pts_correction_last_dts
int64_t pts_correction_last_dts
PTS of the last frame.
Definition: decode.c:90
AV_CODEC_FLAG2_ICC_PROFILES
#define AV_CODEC_FLAG2_ICC_PROFILES
Generate/parse ICC profiles on encode/decode, as appropriate for the type of file.
Definition: avcodec.h:378
ff_icc_profile_detect_transfer
int ff_icc_profile_detect_transfer(FFIccContext *s, cmsHPROFILE profile, enum AVColorTransferCharacteristic *out_trc)
Attempt detecting the transfer characteristic that best approximates the transfer function encoded by...
Definition: fflcms2.c:300
av_packet_ref
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
Definition: packet.c:441
AVCodecInternal::draining_done
int draining_done
Definition: internal.h:146
FF_HW_HAS_CB
#define FF_HW_HAS_CB(avctx, function)
Definition: hwaccel_internal.h:179
UTF8_MAX_BYTES
#define UTF8_MAX_BYTES
Definition: decode.c:845
AVPACKET_IS_EMPTY
#define AVPACKET_IS_EMPTY(pkt)
Definition: packet_internal.h:26
AV_FRAME_DATA_AFD
@ AV_FRAME_DATA_AFD
Active Format Description data consisting of a single byte as specified in ETSI TS 101 154 using AVAc...
Definition: frame.h:90
ff_sd_global_map
const SideDataMap ff_sd_global_map[]
A map between packet and frame side data types.
Definition: avcodec.c:57
av_exif_remove_entry
int av_exif_remove_entry(void *logctx, AVExifMetadata *ifd, uint16_t id, int flags)
Remove an entry from the provided EXIF metadata struct.
Definition: exif.c:1279
AVCOL_RANGE_UNSPECIFIED
@ AVCOL_RANGE_UNSPECIFIED
Definition: pixfmt.h:743
AV_CODEC_EXPORT_DATA_ENHANCEMENTS
#define AV_CODEC_EXPORT_DATA_ENHANCEMENTS
Decoding only.
Definition: avcodec.h:406
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVCodecInternal::last_pkt_props
AVPacket * last_pkt_props
Properties (timestamps+side data) extracted from the last packet passed for decoding.
Definition: internal.h:90
av_buffer_create
AVBufferRef * av_buffer_create(uint8_t *data, size_t size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition: buffer.c:55
AV_PKT_DATA_NB
@ AV_PKT_DATA_NB
The number of side data types.
Definition: packet.h:386
progress_frame_pool_free_entry_cb
static av_cold void progress_frame_pool_free_entry_cb(AVRefStructOpaque opaque, void *obj)
Definition: decode.c:2009
attribute_align_arg
#define attribute_align_arg
Definition: internal.h:50
av_codec_is_decoder
int av_codec_is_decoder(const AVCodec *codec)
Definition: utils.c:85
AVCodecContext::lowres
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
Definition: avcodec.h:1709
Frame::format
int format
Definition: ffplay.c:162
f
f
Definition: af_crystalizer.c:122
AVCodecContext::flags2
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:503
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1765
SideDataMap::packet
enum AVPacketSideDataType packet
Definition: avcodec_internal.h:35
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_CODEC_FLAG_GRAY
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition: avcodec.h:302
AVPacket::size
int size
Definition: packet.h:596
ff_progress_frame_alloc
int ff_progress_frame_alloc(AVCodecContext *avctx, ProgressFrame *f)
This function sets up the ProgressFrame, i.e.
Definition: decode.c:1913
dc
Tag MUST be and< 10hcoeff half pel interpolation filter coefficients, hcoeff[0] are the 2 middle coefficients[1] are the next outer ones and so on, resulting in a filter like:...eff[2], hcoeff[1], hcoeff[0], hcoeff[0], hcoeff[1], hcoeff[2] ... the sign of the coefficients is not explicitly stored but alternates after each coeff and coeff[0] is positive, so ...,+,-,+,-,+,+,-,+,-,+,... hcoeff[0] is not explicitly stored but found by subtracting the sum of all stored coefficients with signs from 32 hcoeff[0]=32 - hcoeff[1] - hcoeff[2] - ... a good choice for hcoeff and htaps is htaps=6 hcoeff={40,-10, 2} an alternative which requires more computations at both encoder and decoder side and may or may not be better is htaps=8 hcoeff={42,-14, 6,-2}ref_frames minimum of the number of available reference frames and max_ref_frames for example the first frame after a key frame always has ref_frames=1spatial_decomposition_type wavelet type 0 is a 9/7 symmetric compact integer wavelet 1 is a 5/3 symmetric compact integer wavelet others are reserved stored as delta from last, last is reset to 0 if always_reset||keyframeqlog quality(logarithmic quantizer scale) stored as delta from last, last is reset to 0 if always_reset||keyframemv_scale stored as delta from last, last is reset to 0 if always_reset||keyframe FIXME check that everything works fine if this changes between framesqbias dequantization bias stored as delta from last, last is reset to 0 if always_reset||keyframeblock_max_depth maximum depth of the block tree stored as delta from last, last is reset to 0 if always_reset||keyframequant_table quantization tableHighlevel bitstream structure:==============================--------------------------------------------|Header|--------------------------------------------|------------------------------------|||Block0||||split?||||yes no||||......... intra?||||:Block01 :yes no||||:Block02 :....... ..........||||:Block03 ::y DC ::ref index:||||:Block04 ::cb DC ::motion x :||||......... :cr DC ::motion y :||||....... ..........|||------------------------------------||------------------------------------|||Block1|||...|--------------------------------------------|------------ ------------ ------------|||Y subbands||Cb subbands||Cr subbands||||--- ---||--- ---||--- ---|||||LL0||HL0||||LL0||HL0||||LL0||HL0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||LH0||HH0||||LH0||HH0||||LH0||HH0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HL1||LH1||||HL1||LH1||||HL1||LH1|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HH1||HL2||||HH1||HL2||||HH1||HL2|||||...||...||...|||------------ ------------ ------------|--------------------------------------------Decoding process:=================------------|||Subbands|------------||||------------|Intra DC||||LL0 subband prediction ------------|\ Dequantization ------------------- \||Reference frames|\ IDWT|------- -------|Motion \|||Frame 0||Frame 1||Compensation . OBMC v -------|------- -------|--------------. \------> Frame n output Frame Frame<----------------------------------/|...|------------------- Range Coder:============Binary Range Coder:------------------- The implemented range coder is an adapted version based upon "Range encoding: an algorithm for removing redundancy from a digitised message." by G. N. N. Martin. The symbols encoded by the Snow range coder are bits(0|1). The associated probabilities are not fix but change depending on the symbol mix seen so far. bit seen|new state ---------+----------------------------------------------- 0|256 - state_transition_table[256 - old_state];1|state_transition_table[old_state];state_transition_table={ 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 190, 191, 192, 194, 194, 195, 196, 197, 198, 199, 200, 201, 202, 202, 204, 205, 206, 207, 208, 209, 209, 210, 211, 212, 213, 215, 215, 216, 217, 218, 219, 220, 220, 222, 223, 224, 225, 226, 227, 227, 229, 229, 230, 231, 232, 234, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 248, 0, 0, 0, 0, 0, 0, 0};FIXME Range Coding of integers:------------------------- FIXME Neighboring Blocks:===================left and top are set to the respective blocks unless they are outside of the image in which case they are set to the Null block top-left is set to the top left block unless it is outside of the image in which case it is set to the left block if this block has no larger parent block or it is at the left side of its parent block and the top right block is not outside of the image then the top right block is used for top-right else the top-left block is used Null block y, cb, cr are 128 level, ref, mx and my are 0 Motion Vector Prediction:=========================1. the motion vectors of all the neighboring blocks are scaled to compensate for the difference of reference frames scaled_mv=(mv *(256 *(current_reference+1)/(mv.reference+1))+128)> the median of the scaled top and top right vectors is used as motion vector prediction the used motion vector is the sum of the predictor and(mvx_diff, mvy_diff) *mv_scale Intra DC Prediction block[y][x] dc[1]
Definition: snow.txt:400
byte
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_WB16 unsigned int_TMPL byte
Definition: bytestream.h:99
ff_decode_exif_attach_buffer
int ff_decode_exif_attach_buffer(AVCodecContext *avctx, AVFrame *frame, AVBufferRef **pbuf, enum AVExifHeaderMode header_mode)
Attach the data buffer to the frame.
Definition: decode.c:2484
height
#define height
Definition: dsp.h:89
AVCodecContext::extra_hw_frames
int extra_hw_frames
Video decoding only.
Definition: avcodec.h:1510
codec_internal.h
FrameDecodeData::post_process
int(* post_process)(void *logctx, AVFrame *frame)
The callback to perform some delayed processing on the frame right before it is returned to the calle...
Definition: decode.h:44
AVCodecInternal::hwaccel_priv_data
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:130
decode_data_free
static void decode_data_free(AVRefStructOpaque unused, void *obj)
Definition: decode.c:1679
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:87
av_bsf_send_packet
int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
Submit a packet for filtering.
Definition: bsf.c:202
AV_PKT_DATA_DYNAMIC_HDR10_PLUS
@ AV_PKT_DATA_DYNAMIC_HDR10_PLUS
HDR10+ dynamic metadata associated with a video frame.
Definition: packet.h:296
i
#define i(width, name, range_min, range_max)
Definition: cbs_h264.c:63
AVExifEntry::id
uint16_t id
Definition: exif.h:86
av_err2str
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:122
for
for(k=2;k<=8;++k)
Definition: h264pred_template.c:424
ff_codec_is_decoder
static int ff_codec_is_decoder(const AVCodec *avcodec)
Internal version of av_codec_is_decoder().
Definition: codec_internal.h:309
FF_CODEC_CAP_SETS_FRAME_PROPS
#define FF_CODEC_CAP_SETS_FRAME_PROPS
Codec handles output frame properties internally instead of letting the internal logic derive them fr...
Definition: codec_internal.h:78
AVCodecInternal::bsf
struct AVBSFContext * bsf
Definition: internal.h:84
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1043
AV_FRAME_DATA_LCEVC
@ AV_FRAME_DATA_LCEVC
Raw LCEVC payload data, as a uint8_t array, with NAL emulation bytes intact.
Definition: frame.h:236
AVCodecContext::pkt_timebase
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
Definition: avcodec.h:550
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
FF_CODEC_CAP_EXPORTS_CROPPING
#define FF_CODEC_CAP_EXPORTS_CROPPING
The decoder sets the cropping fields in the output frames manually.
Definition: codec_internal.h:61
size
int size
Definition: twinvq_data.h:10344
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:247
frame_validate
static int frame_validate(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:782
ff_frame_new_side_data
int ff_frame_new_side_data(const AVCodecContext *avctx, AVFrame *frame, enum AVFrameSideDataType type, size_t size, AVFrameSideData **psd)
Wrapper around av_frame_new_side_data, which rejects side data overridden by the demuxer.
Definition: decode.c:2172
ff_frame_new_side_data_from_buf_ext
int ff_frame_new_side_data_from_buf_ext(const AVCodecContext *avctx, AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type, AVBufferRef **buf)
Same as ff_frame_new_side_data_from_buf, but taking a AVFrameSideData array directly instead of an AV...
Definition: decode.c:2191
side_data_pref
static int side_data_pref(const AVCodecContext *avctx, AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type)
Check side data preference and clear existing side data from frame if needed.
Definition: decode.c:2156
AVFrameSideData::data
uint8_t * data
Definition: frame.h:291
ffcodec
static const av_always_inline FFCodec * ffcodec(const AVCodec *codec)
Definition: codec_internal.h:290
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:535
fill_frame_props
static int fill_frame_props(const AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:565
AVCHROMA_LOC_UNSPECIFIED
@ AVCHROMA_LOC_UNSPECIFIED
Definition: pixfmt.h:797
AVFrame::format
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition: frame.h:521
AVCodecHWConfigInternal
Definition: hwconfig.h:25
AV_PICTURE_TYPE_NONE
@ AV_PICTURE_TYPE_NONE
Undefined.
Definition: avutil.h:277
av_buffer_make_writable
int av_buffer_make_writable(AVBufferRef **pbuf)
Create a writable reference from a given buffer reference, avoiding data copy if possible.
Definition: buffer.c:165
AVSubtitle::end_display_time
uint32_t end_display_time
Definition: avcodec.h:2097
frame.h
av_packet_unpack_dictionary
int av_packet_unpack_dictionary(const uint8_t *data, size_t size, AVDictionary **dict)
Unpack a dictionary from side_data.
Definition: packet.c:353
AV_FRAME_CROP_UNALIGNED
@ AV_FRAME_CROP_UNALIGNED
Apply the maximum possible cropping, even if it requires setting the AVFrame.data[] entries to unalig...
Definition: frame.h:1009
av_frame_remove_side_data
void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type)
Remove and free all side data instances of the given type.
Definition: frame.c:725
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:594
av_refstruct_ref
void * av_refstruct_ref(void *obj)
Create a new reference to an object managed via this API, i.e.
Definition: refstruct.c:140
ProgressInternal::progress
ThreadProgress progress
Definition: decode.c:1903
AV_PRIMARY_EYE_NONE
@ AV_PRIMARY_EYE_NONE
Neither eye.
Definition: stereo3d.h:178
av_content_light_metadata_create_side_data
AVContentLightMetadata * av_content_light_metadata_create_side_data(AVFrame *frame)
Allocate a complete AVContentLightMetadata and add it to the frame.
Definition: mastering_display_metadata.c:82
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
SideDataMap::frame
enum AVFrameSideDataType frame
Definition: avcodec_internal.h:36
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:601
av_packet_alloc
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: packet.c:63
ff_progress_frame_await
void ff_progress_frame_await(const ProgressFrame *f, int n)
Wait for earlier decoding threads to finish reference frames.
Definition: decode.c:1972
AVCodecInternal
Definition: internal.h:49
FFCodec::hw_configs
const struct AVCodecHWConfigInternal *const * hw_configs
Array of pointers to hardware configurations supported by the codec, or NULL if no hardware supported...
Definition: codec_internal.h:270
DecodeContext::side_data_pref_mask
uint64_t side_data_pref_mask
DTS of the last frame.
Definition: decode.c:96
FF_THREAD_NO_FRAME_THREADING
@ FF_THREAD_NO_FRAME_THREADING
Definition: thread.h:63
packet_side_data_get
static const AVPacketSideData * packet_side_data_get(const AVPacketSideData *sd, int nb_sd, enum AVPacketSideDataType type)
Definition: decode.c:1359
AVCodecContext::nb_side_data_prefer_packet
unsigned nb_side_data_prefer_packet
Number of entries in side_data_prefer_packet.
Definition: avcodec.h:1924
detect_colorspace
static int detect_colorspace(av_unused AVCodecContext *c, av_unused AVFrame *f)
Definition: decode.c:559
FF_THREAD_FRAME
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:1584
AV_FRAME_DATA_SKIP_SAMPLES
@ AV_FRAME_DATA_SKIP_SAMPLES
Recommends skipping the specified number of samples.
Definition: frame.h:109
av_refstruct_unref
void av_refstruct_unref(void *objp)
Decrement the reference count of the underlying object and automatically free the object if there are...
Definition: refstruct.c:120
av_mastering_display_metadata_alloc_size
AVMasteringDisplayMetadata * av_mastering_display_metadata_alloc_size(size_t *size)
Allocate an AVMasteringDisplayMetadata structure and set its fields to default values.
Definition: mastering_display_metadata.c:44
AVHWAccel::name
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:1961
AV_PKT_DATA_STRINGS_METADATA
@ AV_PKT_DATA_STRINGS_METADATA
A list of zero terminated key/value strings.
Definition: packet.h:169
emms.h
AVCodecInternal::is_frame_mt
int is_frame_mt
This field is set to 1 when frame threading is being used and the parent AVCodecContext of this AVCod...
Definition: internal.h:61
avcodec_send_packet
int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Definition: decode.c:721
FFCodec::caps_internal
unsigned caps_internal
Internal codec capabilities FF_CODEC_CAP_*.
Definition: codec_internal.h:136
extract_packet_props
static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt)
Definition: decode.c:177
uninit
static void uninit(AVBSFContext *ctx)
Definition: pcm_rechunk.c:68
av_packet_copy_props
int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
Copy only "properties" fields from src to dst.
Definition: packet.c:396
AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
@ AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: frame.h:137
AVExifEntry::value
union AVExifEntry::@124 value
AVSubtitle::format
uint16_t format
Definition: avcodec.h:2095
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:588
av_frame_side_data_free
void av_frame_side_data_free(AVFrameSideData ***sd, int *nb_sd)
Free all side data entries and their contents, then zeroes out the values which the pointers are poin...
Definition: side_data.c:134
ff_decode_internal_alloc
av_cold AVCodecInternal * ff_decode_internal_alloc(void)
Definition: decode.c:2371
reget_buffer_internal
static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
Definition: decode.c:1838
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
Definition: packet.c:252
internal.h
ff_decode_receive_frame_internal
int ff_decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
Do the actual decoding and obtain a decoded frame from the decoder, if available.
Definition: decode.c:616
AVExifMetadata::entries
AVExifEntry * entries
Definition: exif.h:78
ff_lcevc_parse_frame
int ff_lcevc_parse_frame(FFLCEVCContext *lcevc, const AVFrame *frame, enum AVPixelFormat *format, int *width, int *height, void *logctx)
Definition: lcevcdec.c:388
common.h
AVCodecInternal::in_pkt
AVPacket * in_pkt
This packet is used to hold the packet given to decoders implementing the .decode API; it is unused b...
Definition: internal.h:83
av_assert1
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:58
ff_thread_progress_init
av_cold int ff_thread_progress_init(ThreadProgress *pro, int init_mode)
Initialize a ThreadProgress.
Definition: threadprogress.c:33
AV_FRAME_DATA_STEREO3D
@ AV_FRAME_DATA_STEREO3D
Stereoscopic 3d metadata.
Definition: frame.h:64
DecodeContext::avci
AVCodecInternal avci
Definition: decode.c:63
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
av_frame_move_ref
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:523
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:496
AVExifMetadata::count
unsigned int count
Definition: exif.h:80
AVCodecContext::hw_device_ctx
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
Definition: avcodec.h:1487
av_buffer_replace
int av_buffer_replace(AVBufferRef **pdst, const AVBufferRef *src)
Ensure dst refers to the same data as src.
Definition: buffer.c:233
AVCodecContext::chroma_sample_location
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:684
AVExifEntry::uint
uint64_t * uint
Definition: exif.h:109
AVMasteringDisplayMetadata
Mastering display metadata capable of representing the color volume of the display used to master the...
Definition: mastering_display_metadata.h:38
Frame::frame
AVFrame * frame
Definition: ffplay.c:154
FF_CODEC_CAP_SETS_PKT_DTS
#define FF_CODEC_CAP_SETS_PKT_DTS
Decoders marked with FF_CODEC_CAP_SETS_PKT_DTS want to set AVFrame.pkt_dts manually.
Definition: codec_internal.h:50
exif.h
profile
int profile
Definition: mxfenc.c:2299
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:703
AVCodecContext::height
int height
Definition: avcodec.h:600
decode_simple_internal
static int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
Definition: decode.c:419
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:639
AVCodecContext::hw_frames_ctx
AVBufferRef * hw_frames_ctx
A reference to the AVHWFramesContext describing the input (for encoding) or output (decoding) frames.
Definition: avcodec.h:1465
avcodec.h
FFCodec::decode_sub
int(* decode_sub)(struct AVCodecContext *avctx, struct AVSubtitle *sub, int *got_frame_ptr, const struct AVPacket *avpkt)
Decode subtitle data to an AVSubtitle.
Definition: codec_internal.h:210
AVCodecContext::sub_charenc_mode
int sub_charenc_mode
Subtitles character encoding mode.
Definition: avcodec.h:1731
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:118
AVCodecContext::frame_num
int64_t frame_num
Frame counter, set by libavcodec.
Definition: avcodec.h:1890
avcodec_get_hw_frames_parameters
int avcodec_get_hw_frames_parameters(AVCodecContext *avctx, AVBufferRef *device_ref, enum AVPixelFormat hw_pix_fmt, AVBufferRef **out_frames_ref)
Create and return a AVHWFramesContext with values adequate for hardware decoding.
Definition: decode.c:1111
ff_reget_buffer
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Identical in function to ff_get_buffer(), except it reuses the existing buffer if available.
Definition: decode.c:1894
ret
ret
Definition: filter_design.txt:187
AVHWDeviceContext::type
enum AVHWDeviceType type
This field identifies the underlying API used for hardware access.
Definition: hwcontext.h:75
AVALPHA_MODE_UNSPECIFIED
@ AVALPHA_MODE_UNSPECIFIED
Unknown alpha handling, or no alpha channel.
Definition: pixfmt.h:811
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
AVHWFramesContext::device_ctx
AVHWDeviceContext * device_ctx
The parent AVHWDeviceContext.
Definition: hwcontext.h:137
AVCodecContext::strict_std_compliance
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition: avcodec.h:1369
AV_CODEC_PROP_TEXT_SUB
#define AV_CODEC_PROP_TEXT_SUB
Subtitle codec is text based.
Definition: codec_desc.h:116
av_channel_layout_check
int av_channel_layout_check(const AVChannelLayout *channel_layout)
Check whether a channel layout is valid, i.e.
Definition: channel_layout.c:785
ff_thread_sync_ref
enum ThreadingStatus ff_thread_sync_ref(AVCodecContext *avctx, size_t offset)
Allows to synchronize objects whose lifetime is the whole decoding process among all frame threads.
Definition: decode.c:1978
hwaccel
static const char * hwaccel
Definition: ffplay.c:356
ff_decode_content_light_new
int ff_decode_content_light_new(const AVCodecContext *avctx, AVFrame *frame, AVContentLightMetadata **clm)
Wrapper around av_content_light_metadata_create_side_data(), which rejects side data overridden by th...
Definition: decode.c:2296
ff_thread_progress_destroy
av_cold void ff_thread_progress_destroy(ThreadProgress *pro)
Destroy a ThreadProgress.
Definition: threadprogress.c:44
AVPacket::side_data
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: packet.h:606
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
ff_progress_frame_replace
void ff_progress_frame_replace(ProgressFrame *dst, const ProgressFrame *src)
Do nothing if dst and src already refer to the same AVFrame; otherwise unreference dst and if src is ...
Definition: decode.c:1957
apply_param_change
static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
Definition: decode.c:116
ff_decode_frame_props
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
Set various frame properties from the codec context / packet data.
Definition: decode.c:1586
AV_FRAME_DATA_DYNAMIC_HDR_PLUS
@ AV_FRAME_DATA_DYNAMIC_HDR_PLUS
HDR dynamic metadata associated with a video frame.
Definition: frame.h:159
AVCodecContext
main external API structure.
Definition: avcodec.h:439
AVFrame::height
int height
Definition: frame.h:506
AVCodecContext::active_thread_type
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:1592
recode_subtitle
static int recode_subtitle(AVCodecContext *avctx, const AVPacket **outpkt, const AVPacket *inpkt, AVPacket *buf_pkt)
Definition: decode.c:846
channel_layout.h
av_mastering_display_metadata_create_side_data
AVMasteringDisplayMetadata * av_mastering_display_metadata_create_side_data(AVFrame *frame)
Allocate a complete AVMasteringDisplayMetadata and add it to the frame.
Definition: mastering_display_metadata.c:58
avcodec_internal.h
av_frame_side_data_new
AVFrameSideData * av_frame_side_data_new(AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type, size_t size, unsigned int flags)
Add new side data entry to an array.
Definition: side_data.c:199
ff_decode_flush_buffers
av_cold void ff_decode_flush_buffers(AVCodecContext *avctx)
Definition: decode.c:2353
av_refstruct_replace
void av_refstruct_replace(void *dstp, const void *src)
Ensure *dstp refers to the same object as src.
Definition: refstruct.c:160
av_image_copy2
static void av_image_copy2(uint8_t *const dst_data[4], const int dst_linesizes[4], uint8_t *const src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Wrapper around av_image_copy() to workaround the limitation that the conversion from uint8_t * const ...
Definition: imgutils.h:184
attach_displaymatrix
static int attach_displaymatrix(AVCodecContext *avctx, AVFrame *frame, int orientation)
Definition: decode.c:2402
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
ffhwaccel
static const FFHWAccel * ffhwaccel(const AVHWAccel *codec)
Definition: hwaccel_internal.h:168
side_data_stereo3d_merge
static int side_data_stereo3d_merge(AVFrameSideData *sd_frame, const AVPacketSideData *sd_pkt)
Definition: decode.c:1375
decode_receive_frame_internal
static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame, unsigned flags)
Definition: decode.c:652
AV_PKT_DATA_AFD
@ AV_PKT_DATA_AFD
Active Format Description data consisting of a single byte as specified in ETSI TS 101 154 using AVAc...
Definition: packet.h:258
AVPixFmtDescriptor::comp
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:105
ff_decode_preinit
av_cold int ff_decode_preinit(AVCodecContext *avctx)
Perform decoder initialization and validation.
Definition: decode.c:2017
AV_PKT_DATA_SKIP_SAMPLES
@ AV_PKT_DATA_SKIP_SAMPLES
Recommends skipping the specified number of samples.
Definition: packet.h:153
AVCodecContext::export_side_data
int export_side_data
Bit set of AV_CODEC_EXPORT_DATA_* flags, which affects the kind of metadata exported in frame,...
Definition: avcodec.h:1786
AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
@ AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
The codec supports this format via the hw_device_ctx interface.
Definition: codec.h:298
AV_CODEC_CAP_DELAY
#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: codec.h:76
AVPacketSideDataType
AVPacketSideDataType
Definition: packet.h:41
FF_CODEC_CB_TYPE_RECEIVE_FRAME
@ FF_CODEC_CB_TYPE_RECEIVE_FRAME
Definition: codec_internal.h:115
ProgressInternal::f
struct AVFrame * f
Definition: decode.c:1904
ff_thread_progress_reset
static void ff_thread_progress_reset(ThreadProgress *pro)
Reset the ThreadProgress.progress counter; must only be called if the ThreadProgress is not in use in...
Definition: threadprogress.h:72
FFCodec::cb_type
unsigned cb_type
This field determines the type of the codec (decoder/encoder) and also the exact callback cb implemen...
Definition: codec_internal.h:160
ff_thread_receive_frame
#define ff_thread_receive_frame(avctx, frame, flags)
Definition: decode.c:225
avcodec_get_hw_config
const AVCodecHWConfig * avcodec_get_hw_config(const AVCodec *codec, int index)
Retrieve supported hardware configurations for a codec.
Definition: utils.c:850
AVCodecInternal::buffer_frame
AVFrame * buffer_frame
Definition: internal.h:145
AV_CODEC_CAP_PARAM_CHANGE
#define AV_CODEC_CAP_PARAM_CHANGE
Codec supports changed parameters at any point.
Definition: codec.h:103
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:450
ff_decode_receive_frame
int ff_decode_receive_frame(AVCodecContext *avctx, AVFrame *frame, unsigned flags)
avcodec_receive_frame() implementation for decoders.
Definition: decode.c:808
AVCodecInternal::draining
int draining
decoding: AVERROR_EOF has been returned from ff_decode_get_packet(); must not be used by decoders tha...
Definition: internal.h:139
FFCodec::bsfs
const char * bsfs
Decoding only, a comma-separated list of bitstream filters to apply to packets before decoding.
Definition: codec_internal.h:261
AVCodecContext::coded_width
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:615
progress_frame_pool_reset_cb
static void progress_frame_pool_reset_cb(AVRefStructOpaque unused, void *obj)
Definition: decode.c:2001
AVHWFramesContext::initial_pool_size
int initial_pool_size
Initial size of the frame pool.
Definition: hwcontext.h:190
AVCodecContext::codec_type
enum AVMediaType codec_type
Definition: avcodec.h:447
AV_FRAME_FLAG_DISCARD
#define AV_FRAME_FLAG_DISCARD
A flag to mark the frames which need to be decoded, but shouldn't be output.
Definition: frame.h:653
desc
const char * desc
Definition: libsvtav1.c:83
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
av_bsf_list_parse_str
int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst)
Parse string describing list of bitstream filters and create single AVBSFContext describing the whole...
Definition: bsf.c:526
ff_decode_mastering_display_new_ext
int ff_decode_mastering_display_new_ext(const AVCodecContext *avctx, AVFrameSideData ***sd, int *nb_sd, struct AVMasteringDisplayMetadata **mdm)
Same as ff_decode_mastering_display_new, but taking a AVFrameSideData array directly instead of an AV...
Definition: decode.c:2219
side_data_map
static int side_data_map(AVFrame *dst, const AVPacketSideData *sd_src, int nb_sd_src, const SideDataMap *map)
Definition: decode.c:1483
AV_PKT_DATA_A53_CC
@ AV_PKT_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: packet.h:239
mem.h
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
packet_internal.h
AV_CODEC_EXPORT_DATA_MVS
#define AV_CODEC_EXPORT_DATA_MVS
Export motion vectors through frame side data.
Definition: avcodec.h:386
ff_icc_profile_sanitize
int ff_icc_profile_sanitize(FFIccContext *s, cmsHPROFILE profile)
Sanitize an ICC profile to try and fix badly broken values.
Definition: fflcms2.c:211
mastering_display_metadata.h
ThreadingStatus
ThreadingStatus
Definition: thread.h:60
AVCodecParameters::avcodec_parameters_from_context
int avcodec_parameters_from_context(struct AVCodecParameters *par, const AVCodecContext *codec)
Fill the parameters struct based on the values from the supplied codec context.
Definition: codec_par.c:138
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:289
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
map
const VDPAUPixFmtMap * map
Definition: hwcontext_vdpau.c:71
AV_CODEC_FLAG2_EXPORT_MVS
#define AV_CODEC_FLAG2_EXPORT_MVS
Export motion vectors through frame side data.
Definition: avcodec.h:364
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
ProgressFrame
The ProgressFrame structure.
Definition: progressframe.h:73
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:78
SideDataMap
Definition: avcodec_internal.h:34
AVPacket
This structure stores compressed data.
Definition: packet.h:572
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
AV_PKT_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
@ AV_PKT_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
HDR dynamic metadata associated with a video frame.
Definition: packet.h:376
DecodeContext::pts_correction_num_faulty_pts
int64_t pts_correction_num_faulty_pts
Definition: decode.c:87
av_exif_get_entry
int av_exif_get_entry(void *logctx, AVExifMetadata *ifd, uint16_t id, int flags, AVExifEntry **value)
Get an entry with the tagged ID from the EXIF metadata struct.
Definition: exif.c:1190
av_frame_side_data_get
static const AVFrameSideData * av_frame_side_data_get(AVFrameSideData *const *sd, const int nb_sd, enum AVFrameSideDataType type)
Wrapper around av_frame_side_data_get_c() to workaround the limitation that for any type T the conver...
Definition: frame.h:1158
ff_lcevc_alloc
int ff_lcevc_alloc(FFLCEVCContext **plcevc, void *logctx)
Definition: lcevcdec.c:432
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:600
AV_FRAME_DATA_EXIF
@ AV_FRAME_DATA_EXIF
Extensible image file format metadata.
Definition: frame.h:262
int32_t
int32_t
Definition: audioconvert.c:56
bytestream.h
FrameDecodeData::hwaccel_priv
void * hwaccel_priv
Definition: decode.h:54
imgutils.h
hwcontext.h
AVERROR_BUG
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:52
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AV_CODEC_HW_CONFIG_METHOD_AD_HOC
@ AV_CODEC_HW_CONFIG_METHOD_AD_HOC
The codec supports this format by some ad-hoc method.
Definition: codec.h:327
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
AVCodecHWConfig
Definition: codec.h:330
AVStereo3D
Stereo 3D type: this structure describes how two videos are packed within a single video surface,...
Definition: stereo3d.h:203
AVCodecContext::sw_pix_fmt
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:646
av_image_check_sar
int av_image_check_sar(unsigned int w, unsigned int h, AVRational sar)
Check if the given sample aspect ratio of an image is valid.
Definition: imgutils.c:323
pkt
static AVPacket * pkt
Definition: demux_decode.c:55
ff_copy_palette
int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
Check whether the side-data of src contains a palette of size AVPALETTE_SIZE; if so,...
Definition: decode.c:2309
width
#define width
Definition: dsp.h:89
AVCodecHWConfigInternal::public
AVCodecHWConfig public
This is the structure which will be returned to the user by avcodec_get_hw_config().
Definition: hwconfig.h:30
decode_bsfs_init
static int decode_bsfs_init(AVCodecContext *avctx)
Definition: decode.c:188
FFLCEVCFrame
Definition: lcevcdec.h:44
codec_desc.h
AV_PIX_FMT_FLAG_PAL
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:120
side_data_exif_parse
static int side_data_exif_parse(AVFrame *dst, const AVPacketSideData *sd_pkt)
Definition: decode.c:1411
FFLCEVCFrame::frame
struct AVFrame * frame
Definition: lcevcdec.h:46
AVHWAccel::pix_fmt
enum AVPixelFormat pix_fmt
Supported pixel format.
Definition: avcodec.h:1982
AVCodecContext::sample_aspect_ratio
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:624
DecodeContext
Definition: decode.c:62
av_frame_side_data_add
AVFrameSideData * av_frame_side_data_add(AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type, AVBufferRef **buf, unsigned int flags)
Add a new side data entry to an array from an existing AVBufferRef.
Definition: side_data.c:224
FF_REGET_BUFFER_FLAG_READONLY
#define FF_REGET_BUFFER_FLAG_READONLY
the returned buffer does not need to be writable
Definition: decode.h:133
src
#define src
Definition: vp8dsp.c:248
Frame::height
int height
Definition: ffplay.c:161
AVPacket::side_data_elems
int side_data_elems
Definition: packet.h:607
av_get_pix_fmt_name
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:3376
FF_SUB_CHARENC_MODE_IGNORE
#define FF_SUB_CHARENC_MODE_IGNORE
neither convert the subtitles, nor check them for valid UTF-8
Definition: avcodec.h:1735
min
float min
Definition: vorbis_enc_data.h:429