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 <stdint.h>
22 #include <string.h>
23 
24 #include "config.h"
25 
26 #if CONFIG_ICONV
27 # include <iconv.h>
28 #endif
29 
30 #include "libavutil/avassert.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/bprint.h"
33 #include "libavutil/common.h"
34 #include "libavutil/frame.h"
35 #include "libavutil/hwcontext.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/internal.h"
38 #include "libavutil/intmath.h"
39 #include "libavutil/opt.h"
40 
41 #include "avcodec.h"
42 #include "bytestream.h"
43 #include "decode.h"
44 #include "hwaccel.h"
45 #include "internal.h"
46 #include "thread.h"
47 
48 static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
49 {
50  int size = 0, ret;
51  const uint8_t *data;
52  uint32_t flags;
53  int64_t val;
54 
56  if (!data)
57  return 0;
58 
59  if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
60  av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
61  "changes, but PARAM_CHANGE side data was sent to it.\n");
62  ret = AVERROR(EINVAL);
63  goto fail2;
64  }
65 
66  if (size < 4)
67  goto fail;
68 
69  flags = bytestream_get_le32(&data);
70  size -= 4;
71 
73  if (size < 4)
74  goto fail;
75  val = bytestream_get_le32(&data);
76  if (val <= 0 || val > INT_MAX) {
77  av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
79  goto fail2;
80  }
81  avctx->channels = val;
82  size -= 4;
83  }
85  if (size < 8)
86  goto fail;
87  avctx->channel_layout = bytestream_get_le64(&data);
88  size -= 8;
89  }
91  if (size < 4)
92  goto fail;
93  val = bytestream_get_le32(&data);
94  if (val <= 0 || val > INT_MAX) {
95  av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
97  goto fail2;
98  }
99  avctx->sample_rate = val;
100  size -= 4;
101  }
103  if (size < 8)
104  goto fail;
105  avctx->width = bytestream_get_le32(&data);
106  avctx->height = bytestream_get_le32(&data);
107  size -= 8;
108  ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
109  if (ret < 0)
110  goto fail2;
111  }
112 
113  return 0;
114 fail:
115  av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
117 fail2:
118  if (ret < 0) {
119  av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
120  if (avctx->err_recognition & AV_EF_EXPLODE)
121  return ret;
122  }
123  return 0;
124 }
125 
127 {
128  int ret = 0;
129 
131  if (pkt) {
133  if (!ret)
134  avci->last_pkt_props->size = pkt->size; // HACK: Needed for ff_decode_frame_props().
135  }
136  return ret;
137 }
138 
140 {
141  int ret;
142 
143  /* move the original frame to our backup */
144  av_frame_unref(avci->to_free);
146 
147  /* now copy everything except the AVBufferRefs back
148  * note that we make a COPY of the side data, so calling av_frame_free() on
149  * the caller's frame will work properly */
151  if (ret < 0)
152  return ret;
153 
154  memcpy(frame->data, avci->to_free->data, sizeof(frame->data));
155  memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
156  if (avci->to_free->extended_data != avci->to_free->data) {
157  int planes = avci->to_free->channels;
158  int size = planes * sizeof(*frame->extended_data);
159 
160  if (!size) {
162  return AVERROR_BUG;
163  }
164 
165  frame->extended_data = av_malloc(size);
166  if (!frame->extended_data) {
168  return AVERROR(ENOMEM);
169  }
170  memcpy(frame->extended_data, avci->to_free->extended_data,
171  size);
172  } else
173  frame->extended_data = frame->data;
174 
175  frame->format = avci->to_free->format;
176  frame->width = avci->to_free->width;
177  frame->height = avci->to_free->height;
178  frame->channel_layout = avci->to_free->channel_layout;
179  frame->nb_samples = avci->to_free->nb_samples;
180  frame->channels = avci->to_free->channels;
181 
182  return 0;
183 }
184 
186 {
187  AVCodecInternal *avci = avctx->internal;
188  DecodeFilterContext *s = &avci->filter;
189  const char *bsfs_str;
190  int ret;
191 
192  if (s->nb_bsfs)
193  return 0;
194 
195  bsfs_str = avctx->codec->bsfs ? avctx->codec->bsfs : "null";
196  while (bsfs_str && *bsfs_str) {
197  AVBSFContext **tmp;
198  const AVBitStreamFilter *filter;
199  char *bsf, *bsf_options_str, *bsf_name;
200 
201  bsf = av_get_token(&bsfs_str, ",");
202  if (!bsf) {
203  ret = AVERROR(ENOMEM);
204  goto fail;
205  }
206  bsf_name = av_strtok(bsf, "=", &bsf_options_str);
207  if (!bsf_name) {
208  av_freep(&bsf);
209  ret = AVERROR(ENOMEM);
210  goto fail;
211  }
212 
213  filter = av_bsf_get_by_name(bsf_name);
214  if (!filter) {
215  av_log(avctx, AV_LOG_ERROR, "A non-existing bitstream filter %s "
216  "requested by a decoder. This is a bug, please report it.\n",
217  bsf_name);
218  av_freep(&bsf);
219  ret = AVERROR_BUG;
220  goto fail;
221  }
222 
223  tmp = av_realloc_array(s->bsfs, s->nb_bsfs + 1, sizeof(*s->bsfs));
224  if (!tmp) {
225  av_freep(&bsf);
226  ret = AVERROR(ENOMEM);
227  goto fail;
228  }
229  s->bsfs = tmp;
230  s->nb_bsfs++;
231 
232  ret = av_bsf_alloc(filter, &s->bsfs[s->nb_bsfs - 1]);
233  if (ret < 0) {
234  av_freep(&bsf);
235  goto fail;
236  }
237 
238  if (s->nb_bsfs == 1) {
239  /* We do not currently have an API for passing the input timebase into decoders,
240  * but no filters used here should actually need it.
241  * So we make up some plausible-looking number (the MPEG 90kHz timebase) */
242  s->bsfs[s->nb_bsfs - 1]->time_base_in = (AVRational){ 1, 90000 };
243  ret = avcodec_parameters_from_context(s->bsfs[s->nb_bsfs - 1]->par_in,
244  avctx);
245  } else {
246  s->bsfs[s->nb_bsfs - 1]->time_base_in = s->bsfs[s->nb_bsfs - 2]->time_base_out;
247  ret = avcodec_parameters_copy(s->bsfs[s->nb_bsfs - 1]->par_in,
248  s->bsfs[s->nb_bsfs - 2]->par_out);
249  }
250  if (ret < 0) {
251  av_freep(&bsf);
252  goto fail;
253  }
254 
255  if (bsf_options_str && filter->priv_class) {
256  const AVOption *opt = av_opt_next(s->bsfs[s->nb_bsfs - 1]->priv_data, NULL);
257  const char * shorthand[2] = {NULL};
258 
259  if (opt)
260  shorthand[0] = opt->name;
261 
262  ret = av_opt_set_from_string(s->bsfs[s->nb_bsfs - 1]->priv_data, bsf_options_str, shorthand, "=", ":");
263  if (ret < 0) {
264  if (ret != AVERROR(ENOMEM)) {
265  av_log(avctx, AV_LOG_ERROR, "Invalid options for bitstream filter %s "
266  "requested by the decoder. This is a bug, please report it.\n",
267  bsf_name);
268  ret = AVERROR_BUG;
269  }
270  av_freep(&bsf);
271  goto fail;
272  }
273  }
274  av_freep(&bsf);
275 
276  ret = av_bsf_init(s->bsfs[s->nb_bsfs - 1]);
277  if (ret < 0)
278  goto fail;
279 
280  if (*bsfs_str)
281  bsfs_str++;
282  }
283 
284  return 0;
285 fail:
286  ff_decode_bsfs_uninit(avctx);
287  return ret;
288 }
289 
290 /* try to get one output packet from the filter chain */
291 static int bsfs_poll(AVCodecContext *avctx, AVPacket *pkt)
292 {
293  DecodeFilterContext *s = &avctx->internal->filter;
294  int idx, ret;
295 
296  /* start with the last filter in the chain */
297  idx = s->nb_bsfs - 1;
298  while (idx >= 0) {
299  /* request a packet from the currently selected filter */
300  ret = av_bsf_receive_packet(s->bsfs[idx], pkt);
301  if (ret == AVERROR(EAGAIN)) {
302  /* no packets available, try the next filter up the chain */
303  ret = 0;
304  idx--;
305  continue;
306  } else if (ret < 0 && ret != AVERROR_EOF) {
307  return ret;
308  }
309 
310  /* got a packet or EOF -- pass it to the caller or to the next filter
311  * down the chain */
312  if (idx == s->nb_bsfs - 1) {
313  return ret;
314  } else {
315  idx++;
316  ret = av_bsf_send_packet(s->bsfs[idx], ret < 0 ? NULL : pkt);
317  if (ret < 0) {
318  av_log(avctx, AV_LOG_ERROR,
319  "Error pre-processing a packet before decoding\n");
321  return ret;
322  }
323  }
324  }
325 
326  return AVERROR(EAGAIN);
327 }
328 
330 {
331  AVCodecInternal *avci = avctx->internal;
332  int ret;
333 
334  if (avci->draining)
335  return AVERROR_EOF;
336 
337  ret = bsfs_poll(avctx, pkt);
338  if (ret == AVERROR_EOF)
339  avci->draining = 1;
340  if (ret < 0)
341  return ret;
342 
344  if (ret < 0)
345  goto finish;
346 
347  ret = apply_param_change(avctx, pkt);
348  if (ret < 0)
349  goto finish;
350 
351  if (avctx->codec->receive_frame)
352  avci->compat_decode_consumed += pkt->size;
353 
354  return 0;
355 finish:
357  return ret;
358 }
359 
360 /**
361  * Attempt to guess proper monotonic timestamps for decoded video frames
362  * which might have incorrect times. Input timestamps may wrap around, in
363  * which case the output will as well.
364  *
365  * @param pts the pts field of the decoded AVPacket, as passed through
366  * AVFrame.pts
367  * @param dts the dts field of the decoded AVPacket
368  * @return one of the input values, may be AV_NOPTS_VALUE
369  */
371  int64_t reordered_pts, int64_t dts)
372 {
373  int64_t pts = AV_NOPTS_VALUE;
374 
375  if (dts != AV_NOPTS_VALUE) {
376  ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
377  ctx->pts_correction_last_dts = dts;
378  } else if (reordered_pts != AV_NOPTS_VALUE)
379  ctx->pts_correction_last_dts = reordered_pts;
380 
381  if (reordered_pts != AV_NOPTS_VALUE) {
382  ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
383  ctx->pts_correction_last_pts = reordered_pts;
384  } else if(dts != AV_NOPTS_VALUE)
385  ctx->pts_correction_last_pts = dts;
386 
387  if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
388  && reordered_pts != AV_NOPTS_VALUE)
389  pts = reordered_pts;
390  else
391  pts = dts;
392 
393  return pts;
394 }
395 
396 /*
397  * The core of the receive_frame_wrapper for the decoders implementing
398  * the simple API. Certain decoders might consume partial packets without
399  * returning any output, so this function needs to be called in a loop until it
400  * returns EAGAIN.
401  **/
403 {
404  AVCodecInternal *avci = avctx->internal;
405  DecodeSimpleContext *ds = &avci->ds;
406  AVPacket *pkt = ds->in_pkt;
407  // copy to ensure we do not change pkt
408  int got_frame, actual_got_frame;
409  int ret;
410 
411  if (!pkt->data && !avci->draining) {
413  ret = ff_decode_get_packet(avctx, pkt);
414  if (ret < 0 && ret != AVERROR_EOF)
415  return ret;
416  }
417 
418  // Some codecs (at least wma lossless) will crash when feeding drain packets
419  // after EOF was signaled.
420  if (avci->draining_done)
421  return AVERROR_EOF;
422 
423  if (!pkt->data &&
424  !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY ||
426  return AVERROR_EOF;
427 
428  got_frame = 0;
429 
430  if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME) {
431  ret = ff_thread_decode_frame(avctx, frame, &got_frame, pkt);
432  } else {
433  ret = avctx->codec->decode(avctx, frame, &got_frame, pkt);
434 
436  frame->pkt_dts = pkt->dts;
437  if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
438  if(!avctx->has_b_frames)
439  frame->pkt_pos = pkt->pos;
440  //FIXME these should be under if(!avctx->has_b_frames)
441  /* get_buffer is supposed to set frame parameters */
442  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
443  if (!frame->sample_aspect_ratio.num) frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
444  if (!frame->width) frame->width = avctx->width;
445  if (!frame->height) frame->height = avctx->height;
446  if (frame->format == AV_PIX_FMT_NONE) frame->format = avctx->pix_fmt;
447  }
448  }
449  }
450  emms_c();
451  actual_got_frame = got_frame;
452 
453  if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
454  if (frame->flags & AV_FRAME_FLAG_DISCARD)
455  got_frame = 0;
456  if (got_frame)
457  frame->best_effort_timestamp = guess_correct_pts(avctx,
458  frame->pts,
459  frame->pkt_dts);
460  } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
461  uint8_t *side;
462  int side_size;
463  uint32_t discard_padding = 0;
464  uint8_t skip_reason = 0;
465  uint8_t discard_reason = 0;
466 
467  if (ret >= 0 && got_frame) {
468  frame->best_effort_timestamp = guess_correct_pts(avctx,
469  frame->pts,
470  frame->pkt_dts);
471  if (frame->format == AV_SAMPLE_FMT_NONE)
472  frame->format = avctx->sample_fmt;
473  if (!frame->channel_layout)
474  frame->channel_layout = avctx->channel_layout;
475  if (!frame->channels)
476  frame->channels = avctx->channels;
477  if (!frame->sample_rate)
478  frame->sample_rate = avctx->sample_rate;
479  }
480 
482  if(side && side_size>=10) {
484  discard_padding = AV_RL32(side + 4);
485  av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
486  avctx->internal->skip_samples, (int)discard_padding);
487  skip_reason = AV_RL8(side + 8);
488  discard_reason = AV_RL8(side + 9);
489  }
490 
491  if ((frame->flags & AV_FRAME_FLAG_DISCARD) && got_frame &&
492  !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
493  avctx->internal->skip_samples = FFMAX(0, avctx->internal->skip_samples - frame->nb_samples);
494  got_frame = 0;
495  }
496 
497  if (avctx->internal->skip_samples > 0 && got_frame &&
498  !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
499  if(frame->nb_samples <= avctx->internal->skip_samples){
500  got_frame = 0;
501  avctx->internal->skip_samples -= frame->nb_samples;
502  av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
503  avctx->internal->skip_samples);
504  } else {
505  av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
506  frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
507  if(avctx->pkt_timebase.num && avctx->sample_rate) {
508  int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
509  (AVRational){1, avctx->sample_rate},
510  avctx->pkt_timebase);
511  if(frame->pts!=AV_NOPTS_VALUE)
512  frame->pts += diff_ts;
513 #if FF_API_PKT_PTS
515  if(frame->pkt_pts!=AV_NOPTS_VALUE)
516  frame->pkt_pts += diff_ts;
518 #endif
519  if(frame->pkt_dts!=AV_NOPTS_VALUE)
520  frame->pkt_dts += diff_ts;
521  if (frame->pkt_duration >= diff_ts)
522  frame->pkt_duration -= diff_ts;
523  } else {
524  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
525  }
526  av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
527  avctx->internal->skip_samples, frame->nb_samples);
528  frame->nb_samples -= avctx->internal->skip_samples;
529  avctx->internal->skip_samples = 0;
530  }
531  }
532 
533  if (discard_padding > 0 && discard_padding <= frame->nb_samples && got_frame &&
534  !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
535  if (discard_padding == frame->nb_samples) {
536  got_frame = 0;
537  } else {
538  if(avctx->pkt_timebase.num && avctx->sample_rate) {
539  int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
540  (AVRational){1, avctx->sample_rate},
541  avctx->pkt_timebase);
542  frame->pkt_duration = diff_ts;
543  } else {
544  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
545  }
546  av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
547  (int)discard_padding, frame->nb_samples);
548  frame->nb_samples -= discard_padding;
549  }
550  }
551 
552  if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && got_frame) {
554  if (fside) {
555  AV_WL32(fside->data, avctx->internal->skip_samples);
556  AV_WL32(fside->data + 4, discard_padding);
557  AV_WL8(fside->data + 8, skip_reason);
558  AV_WL8(fside->data + 9, discard_reason);
559  avctx->internal->skip_samples = 0;
560  }
561  }
562  }
563 
564  if (avctx->codec->type == AVMEDIA_TYPE_AUDIO &&
566  ret >= 0 && ret != pkt->size && !(avctx->codec->capabilities & AV_CODEC_CAP_SUBFRAMES)) {
567  av_log(avctx, AV_LOG_WARNING, "Multiple frames in a packet.\n");
568  avci->showed_multi_packet_warning = 1;
569  }
570 
571  if (!got_frame)
573 
574  if (ret >= 0 && avctx->codec->type == AVMEDIA_TYPE_VIDEO && !(avctx->flags & AV_CODEC_FLAG_TRUNCATED))
575  ret = pkt->size;
576 
577 #if FF_API_AVCTX_TIMEBASE
578  if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
579  avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
580 #endif
581 
582  /* do not stop draining when actual_got_frame != 0 or ret < 0 */
583  /* got_frame == 0 but actual_got_frame != 0 when frame is discarded */
584  if (avctx->internal->draining && !actual_got_frame) {
585  if (ret < 0) {
586  /* prevent infinite loop if a decoder wrongly always return error on draining */
587  /* reasonable nb_errors_max = maximum b frames + thread count */
588  int nb_errors_max = 20 + (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME ?
589  avctx->thread_count : 1);
590 
591  if (avci->nb_draining_errors++ >= nb_errors_max) {
592  av_log(avctx, AV_LOG_ERROR, "Too many errors when draining, this is a bug. "
593  "Stop draining and force EOF.\n");
594  avci->draining_done = 1;
595  ret = AVERROR_BUG;
596  }
597  } else {
598  avci->draining_done = 1;
599  }
600  }
601 
602  avci->compat_decode_consumed += ret;
603 
604  if (ret >= pkt->size || ret < 0) {
606  } else {
607  int consumed = ret;
608 
609  pkt->data += consumed;
610  pkt->size -= consumed;
611  avci->last_pkt_props->size -= consumed; // See extract_packet_props() comment.
616  }
617 
618  if (got_frame)
619  av_assert0(frame->buf[0]);
620 
621  return ret < 0 ? ret : 0;
622 }
623 
625 {
626  int ret;
627 
628  while (!frame->buf[0]) {
629  ret = decode_simple_internal(avctx, frame);
630  if (ret < 0)
631  return ret;
632  }
633 
634  return 0;
635 }
636 
638 {
639  AVCodecInternal *avci = avctx->internal;
640  int ret;
641 
642  av_assert0(!frame->buf[0]);
643 
644  if (avctx->codec->receive_frame)
645  ret = avctx->codec->receive_frame(avctx, frame);
646  else
648 
649  if (ret == AVERROR_EOF)
650  avci->draining_done = 1;
651 
652  if (!ret) {
653  /* the only case where decode data is not set should be decoders
654  * that do not call ff_get_buffer() */
655  av_assert0((frame->private_ref && frame->private_ref->size == sizeof(FrameDecodeData)) ||
656  !(avctx->codec->capabilities & AV_CODEC_CAP_DR1));
657 
658  if (frame->private_ref) {
659  FrameDecodeData *fdd = (FrameDecodeData*)frame->private_ref->data;
660 
661  if (fdd->post_process) {
662  ret = fdd->post_process(avctx, frame);
663  if (ret < 0) {
665  return ret;
666  }
667  }
668  }
669  }
670 
671  /* free the per-frame decode data */
672  av_buffer_unref(&frame->private_ref);
673 
674  return ret;
675 }
676 
677 int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
678 {
679  AVCodecInternal *avci = avctx->internal;
680  int ret;
681 
682  if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
683  return AVERROR(EINVAL);
684 
685  if (avctx->internal->draining)
686  return AVERROR_EOF;
687 
688  if (avpkt && !avpkt->size && avpkt->data)
689  return AVERROR(EINVAL);
690 
692  if (avpkt && (avpkt->data || avpkt->side_data_elems)) {
693  ret = av_packet_ref(avci->buffer_pkt, avpkt);
694  if (ret < 0)
695  return ret;
696  }
697 
698  ret = av_bsf_send_packet(avci->filter.bsfs[0], avci->buffer_pkt);
699  if (ret < 0) {
701  return ret;
702  }
703 
704  if (!avci->buffer_frame->buf[0]) {
706  if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
707  return ret;
708  }
709 
710  return 0;
711 }
712 
714 {
715  /* make sure we are noisy about decoders returning invalid cropping data */
716  if (frame->crop_left >= INT_MAX - frame->crop_right ||
717  frame->crop_top >= INT_MAX - frame->crop_bottom ||
718  (frame->crop_left + frame->crop_right) >= frame->width ||
719  (frame->crop_top + frame->crop_bottom) >= frame->height) {
720  av_log(avctx, AV_LOG_WARNING,
721  "Invalid cropping information set by a decoder: "
723  "(frame size %dx%d). This is a bug, please report it\n",
724  frame->crop_left, frame->crop_right, frame->crop_top, frame->crop_bottom,
725  frame->width, frame->height);
726  frame->crop_left = 0;
727  frame->crop_right = 0;
728  frame->crop_top = 0;
729  frame->crop_bottom = 0;
730  return 0;
731  }
732 
733  if (!avctx->apply_cropping)
734  return 0;
735 
738 }
739 
740 int attribute_align_arg avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
741 {
742  AVCodecInternal *avci = avctx->internal;
743  int ret, changed;
744 
746 
747  if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
748  return AVERROR(EINVAL);
749 
750  if (avci->buffer_frame->buf[0]) {
752  } else {
754  if (ret < 0)
755  return ret;
756  }
757 
758  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
759  ret = apply_cropping(avctx, frame);
760  if (ret < 0) {
762  return ret;
763  }
764  }
765 
766  avctx->frame_number++;
767 
768  if (avctx->flags & AV_CODEC_FLAG_DROPCHANGED) {
769 
770  if (avctx->frame_number == 1) {
771  avci->initial_format = frame->format;
772  switch(avctx->codec_type) {
773  case AVMEDIA_TYPE_VIDEO:
774  avci->initial_width = frame->width;
775  avci->initial_height = frame->height;
776  break;
777  case AVMEDIA_TYPE_AUDIO:
778  avci->initial_sample_rate = frame->sample_rate ? frame->sample_rate :
779  avctx->sample_rate;
780  avci->initial_channels = frame->channels;
781  avci->initial_channel_layout = frame->channel_layout;
782  break;
783  }
784  }
785 
786  if (avctx->frame_number > 1) {
787  changed = avci->initial_format != frame->format;
788 
789  switch(avctx->codec_type) {
790  case AVMEDIA_TYPE_VIDEO:
791  changed |= avci->initial_width != frame->width ||
792  avci->initial_height != frame->height;
793  break;
794  case AVMEDIA_TYPE_AUDIO:
795  changed |= avci->initial_sample_rate != frame->sample_rate ||
796  avci->initial_sample_rate != avctx->sample_rate ||
797  avci->initial_channels != frame->channels ||
798  avci->initial_channel_layout != frame->channel_layout;
799  break;
800  }
801 
802  if (changed) {
803  avci->changed_frames_dropped++;
804  av_log(avctx, AV_LOG_INFO, "dropped changed frame #%d pts %"PRId64
805  " drop count: %d \n",
806  avctx->frame_number, frame->pts,
807  avci->changed_frames_dropped);
809  return AVERROR_INPUT_CHANGED;
810  }
811  }
812  }
813  return 0;
814 }
815 
817  int *got_frame, const AVPacket *pkt)
818 {
819  AVCodecInternal *avci = avctx->internal;
820  int ret = 0;
821 
823 
824  if (avci->draining_done && pkt && pkt->size != 0) {
825  av_log(avctx, AV_LOG_WARNING, "Got unexpected packet after EOF\n");
826  avcodec_flush_buffers(avctx);
827  }
828 
829  *got_frame = 0;
830  avci->compat_decode = 1;
831 
832  if (avci->compat_decode_partial_size > 0 &&
833  avci->compat_decode_partial_size != pkt->size) {
834  av_log(avctx, AV_LOG_ERROR,
835  "Got unexpected packet size after a partial decode\n");
836  ret = AVERROR(EINVAL);
837  goto finish;
838  }
839 
840  if (!avci->compat_decode_partial_size) {
841  ret = avcodec_send_packet(avctx, pkt);
842  if (ret == AVERROR_EOF)
843  ret = 0;
844  else if (ret == AVERROR(EAGAIN)) {
845  /* we fully drain all the output in each decode call, so this should not
846  * ever happen */
847  ret = AVERROR_BUG;
848  goto finish;
849  } else if (ret < 0)
850  goto finish;
851  }
852 
853  while (ret >= 0) {
854  ret = avcodec_receive_frame(avctx, frame);
855  if (ret < 0) {
856  if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
857  ret = 0;
858  goto finish;
859  }
860 
861  if (frame != avci->compat_decode_frame) {
862  if (!avctx->refcounted_frames) {
863  ret = unrefcount_frame(avci, frame);
864  if (ret < 0)
865  goto finish;
866  }
867 
868  *got_frame = 1;
869  frame = avci->compat_decode_frame;
870  } else {
871  if (!avci->compat_decode_warned) {
872  av_log(avctx, AV_LOG_WARNING, "The deprecated avcodec_decode_* "
873  "API cannot return all the frames for this decoder. "
874  "Some frames will be dropped. Update your code to the "
875  "new decoding API to fix this.\n");
876  avci->compat_decode_warned = 1;
877  }
878  }
879 
880  if (avci->draining || (!avctx->codec->bsfs && avci->compat_decode_consumed < pkt->size))
881  break;
882  }
883 
884 finish:
885  if (ret == 0) {
886  /* if there are any bsfs then assume full packet is always consumed */
887  if (avctx->codec->bsfs)
888  ret = pkt->size;
889  else
891  }
892  avci->compat_decode_consumed = 0;
893  avci->compat_decode_partial_size = (ret >= 0) ? pkt->size - ret : 0;
894 
895  return ret;
896 }
897 
898 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
899  int *got_picture_ptr,
900  const AVPacket *avpkt)
901 {
902  return compat_decode(avctx, picture, got_picture_ptr, avpkt);
903 }
904 
905 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
906  AVFrame *frame,
907  int *got_frame_ptr,
908  const AVPacket *avpkt)
909 {
910  return compat_decode(avctx, frame, got_frame_ptr, avpkt);
911 }
912 
914 {
915  memset(sub, 0, sizeof(*sub));
916  sub->pts = AV_NOPTS_VALUE;
917 }
918 
919 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
920 static int recode_subtitle(AVCodecContext *avctx,
921  AVPacket *outpkt, const AVPacket *inpkt)
922 {
923 #if CONFIG_ICONV
924  iconv_t cd = (iconv_t)-1;
925  int ret = 0;
926  char *inb, *outb;
927  size_t inl, outl;
928  AVPacket tmp;
929 #endif
930 
931  if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
932  return 0;
933 
934 #if CONFIG_ICONV
935  cd = iconv_open("UTF-8", avctx->sub_charenc);
936  av_assert0(cd != (iconv_t)-1);
937 
938  inb = inpkt->data;
939  inl = inpkt->size;
940 
941  if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
942  av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
943  ret = AVERROR(ENOMEM);
944  goto end;
945  }
946 
947  ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
948  if (ret < 0)
949  goto end;
950  outpkt->buf = tmp.buf;
951  outpkt->data = tmp.data;
952  outpkt->size = tmp.size;
953  outb = outpkt->data;
954  outl = outpkt->size;
955 
956  if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
957  iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
958  outl >= outpkt->size || inl != 0) {
959  ret = FFMIN(AVERROR(errno), -1);
960  av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
961  "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
963  goto end;
964  }
965  outpkt->size -= outl;
966  memset(outpkt->data + outpkt->size, 0, outl);
967 
968 end:
969  if (cd != (iconv_t)-1)
970  iconv_close(cd);
971  return ret;
972 #else
973  av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
974  return AVERROR(EINVAL);
975 #endif
976 }
977 
978 static int utf8_check(const uint8_t *str)
979 {
980  const uint8_t *byte;
981  uint32_t codepoint, min;
982 
983  while (*str) {
984  byte = str;
985  GET_UTF8(codepoint, *(byte++), return 0;);
986  min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
987  1 << (5 * (byte - str) - 4);
988  if (codepoint < min || codepoint >= 0x110000 ||
989  codepoint == 0xFFFE /* BOM */ ||
990  codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
991  return 0;
992  str = byte;
993  }
994  return 1;
995 }
996 
997 #if FF_API_ASS_TIMING
998 static void insert_ts(AVBPrint *buf, int ts)
999 {
1000  if (ts == -1) {
1001  av_bprintf(buf, "9:59:59.99,");
1002  } else {
1003  int h, m, s;
1004 
1005  h = ts/360000; ts -= 360000*h;
1006  m = ts/ 6000; ts -= 6000*m;
1007  s = ts/ 100; ts -= 100*s;
1008  av_bprintf(buf, "%d:%02d:%02d.%02d,", h, m, s, ts);
1009  }
1010 }
1011 
1013 {
1014  int i;
1015  AVBPrint buf;
1016 
1018 
1019  for (i = 0; i < sub->num_rects; i++) {
1020  char *final_dialog;
1021  const char *dialog;
1022  AVSubtitleRect *rect = sub->rects[i];
1023  int ts_start, ts_duration = -1;
1024  long int layer;
1025 
1026  if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue: ", 10))
1027  continue;
1028 
1029  av_bprint_clear(&buf);
1030 
1031  /* skip ReadOrder */
1032  dialog = strchr(rect->ass, ',');
1033  if (!dialog)
1034  continue;
1035  dialog++;
1036 
1037  /* extract Layer or Marked */
1038  layer = strtol(dialog, (char**)&dialog, 10);
1039  if (*dialog != ',')
1040  continue;
1041  dialog++;
1042 
1043  /* rescale timing to ASS time base (ms) */
1044  ts_start = av_rescale_q(pkt->pts, tb, av_make_q(1, 100));
1045  if (pkt->duration != -1)
1046  ts_duration = av_rescale_q(pkt->duration, tb, av_make_q(1, 100));
1047  sub->end_display_time = FFMAX(sub->end_display_time, 10 * ts_duration);
1048 
1049  /* construct ASS (standalone file form with timestamps) string */
1050  av_bprintf(&buf, "Dialogue: %ld,", layer);
1051  insert_ts(&buf, ts_start);
1052  insert_ts(&buf, ts_duration == -1 ? -1 : ts_start + ts_duration);
1053  av_bprintf(&buf, "%s\r\n", dialog);
1054 
1055  final_dialog = av_strdup(buf.str);
1056  if (!av_bprint_is_complete(&buf) || !final_dialog) {
1057  av_freep(&final_dialog);
1059  return AVERROR(ENOMEM);
1060  }
1061  av_freep(&rect->ass);
1062  rect->ass = final_dialog;
1063  }
1064 
1066  return 0;
1067 }
1068 #endif
1069 
1071  int *got_sub_ptr,
1072  AVPacket *avpkt)
1073 {
1074  int i, ret = 0;
1075 
1076  if (!avpkt->data && avpkt->size) {
1077  av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1078  return AVERROR(EINVAL);
1079  }
1080  if (!avctx->codec)
1081  return AVERROR(EINVAL);
1082  if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
1083  av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
1084  return AVERROR(EINVAL);
1085  }
1086 
1087  *got_sub_ptr = 0;
1088  get_subtitle_defaults(sub);
1089 
1090  if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
1091  AVPacket pkt_recoded = *avpkt;
1092 
1093  ret = recode_subtitle(avctx, &pkt_recoded, avpkt);
1094  if (ret < 0) {
1095  *got_sub_ptr = 0;
1096  } else {
1097  ret = extract_packet_props(avctx->internal, &pkt_recoded);
1098  if (ret < 0)
1099  return ret;
1100 
1101  if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
1102  sub->pts = av_rescale_q(avpkt->pts,
1103  avctx->pkt_timebase, AV_TIME_BASE_Q);
1104  ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
1105  av_assert1((ret >= 0) >= !!*got_sub_ptr &&
1106  !!*got_sub_ptr >= !!sub->num_rects);
1107 
1108 #if FF_API_ASS_TIMING
1110  && *got_sub_ptr && sub->num_rects) {
1111  const AVRational tb = avctx->pkt_timebase.num ? avctx->pkt_timebase
1112  : avctx->time_base;
1113  int err = convert_sub_to_old_ass_form(sub, avpkt, tb);
1114  if (err < 0)
1115  ret = err;
1116  }
1117 #endif
1118 
1119  if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
1120  avctx->pkt_timebase.num) {
1121  AVRational ms = { 1, 1000 };
1122  sub->end_display_time = av_rescale_q(avpkt->duration,
1123  avctx->pkt_timebase, ms);
1124  }
1125 
1127  sub->format = 0;
1128  else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
1129  sub->format = 1;
1130 
1131  for (i = 0; i < sub->num_rects; i++) {
1133  sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
1134  av_log(avctx, AV_LOG_ERROR,
1135  "Invalid UTF-8 in decoded subtitles text; "
1136  "maybe missing -sub_charenc option\n");
1137  avsubtitle_free(sub);
1139  break;
1140  }
1141  }
1142 
1143  if (avpkt->data != pkt_recoded.data) { // did we recode?
1144  /* prevent from destroying side data from original packet */
1145  pkt_recoded.side_data = NULL;
1146  pkt_recoded.side_data_elems = 0;
1147 
1148  av_packet_unref(&pkt_recoded);
1149  }
1150  }
1151 
1152  if (*got_sub_ptr)
1153  avctx->frame_number++;
1154  }
1155 
1156  return ret;
1157 }
1158 
1160  const enum AVPixelFormat *fmt)
1161 {
1162  const AVPixFmtDescriptor *desc;
1163  const AVCodecHWConfig *config;
1164  int i, n;
1165 
1166  // If a device was supplied when the codec was opened, assume that the
1167  // user wants to use it.
1168  if (avctx->hw_device_ctx && avctx->codec->hw_configs) {
1169  AVHWDeviceContext *device_ctx =
1171  for (i = 0;; i++) {
1172  config = &avctx->codec->hw_configs[i]->public;
1173  if (!config)
1174  break;
1175  if (!(config->methods &
1177  continue;
1178  if (device_ctx->type != config->device_type)
1179  continue;
1180  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1181  if (config->pix_fmt == fmt[n])
1182  return fmt[n];
1183  }
1184  }
1185  }
1186  // No device or other setup, so we have to choose from things which
1187  // don't any other external information.
1188 
1189  // If the last element of the list is a software format, choose it
1190  // (this should be best software format if any exist).
1191  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1192  desc = av_pix_fmt_desc_get(fmt[n - 1]);
1193  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1194  return fmt[n - 1];
1195 
1196  // Finally, traverse the list in order and choose the first entry
1197  // with no external dependencies (if there is no hardware configuration
1198  // information available then this just picks the first entry).
1199  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1200  for (i = 0;; i++) {
1201  config = avcodec_get_hw_config(avctx->codec, i);
1202  if (!config)
1203  break;
1204  if (config->pix_fmt == fmt[n])
1205  break;
1206  }
1207  if (!config) {
1208  // No specific config available, so the decoder must be able
1209  // to handle this format without any additional setup.
1210  return fmt[n];
1211  }
1213  // Usable with only internal setup.
1214  return fmt[n];
1215  }
1216  }
1217 
1218  // Nothing is usable, give up.
1219  return AV_PIX_FMT_NONE;
1220 }
1221 
1223  enum AVHWDeviceType dev_type)
1224 {
1225  AVHWDeviceContext *device_ctx;
1226  AVHWFramesContext *frames_ctx;
1227  int ret;
1228 
1229  if (!avctx->hwaccel)
1230  return AVERROR(ENOSYS);
1231 
1232  if (avctx->hw_frames_ctx)
1233  return 0;
1234  if (!avctx->hw_device_ctx) {
1235  av_log(avctx, AV_LOG_ERROR, "A hardware frames or device context is "
1236  "required for hardware accelerated decoding.\n");
1237  return AVERROR(EINVAL);
1238  }
1239 
1240  device_ctx = (AVHWDeviceContext *)avctx->hw_device_ctx->data;
1241  if (device_ctx->type != dev_type) {
1242  av_log(avctx, AV_LOG_ERROR, "Device type %s expected for hardware "
1243  "decoding, but got %s.\n", av_hwdevice_get_type_name(dev_type),
1244  av_hwdevice_get_type_name(device_ctx->type));
1245  return AVERROR(EINVAL);
1246  }
1247 
1249  avctx->hw_device_ctx,
1250  avctx->hwaccel->pix_fmt,
1251  &avctx->hw_frames_ctx);
1252  if (ret < 0)
1253  return ret;
1254 
1255  frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1256 
1257 
1258  if (frames_ctx->initial_pool_size) {
1259  // We guarantee 4 base work surfaces. The function above guarantees 1
1260  // (the absolute minimum), so add the missing count.
1261  frames_ctx->initial_pool_size += 3;
1262  }
1263 
1265  if (ret < 0) {
1266  av_buffer_unref(&avctx->hw_frames_ctx);
1267  return ret;
1268  }
1269 
1270  return 0;
1271 }
1272 
1274  AVBufferRef *device_ref,
1276  AVBufferRef **out_frames_ref)
1277 {
1278  AVBufferRef *frames_ref = NULL;
1279  const AVCodecHWConfigInternal *hw_config;
1280  const AVHWAccel *hwa;
1281  int i, ret;
1282 
1283  for (i = 0;; i++) {
1284  hw_config = avctx->codec->hw_configs[i];
1285  if (!hw_config)
1286  return AVERROR(ENOENT);
1287  if (hw_config->public.pix_fmt == hw_pix_fmt)
1288  break;
1289  }
1290 
1291  hwa = hw_config->hwaccel;
1292  if (!hwa || !hwa->frame_params)
1293  return AVERROR(ENOENT);
1294 
1295  frames_ref = av_hwframe_ctx_alloc(device_ref);
1296  if (!frames_ref)
1297  return AVERROR(ENOMEM);
1298 
1299  ret = hwa->frame_params(avctx, frames_ref);
1300  if (ret >= 0) {
1301  AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frames_ref->data;
1302 
1303  if (frames_ctx->initial_pool_size) {
1304  // If the user has requested that extra output surfaces be
1305  // available then add them here.
1306  if (avctx->extra_hw_frames > 0)
1307  frames_ctx->initial_pool_size += avctx->extra_hw_frames;
1308 
1309  // If frame threading is enabled then an extra surface per thread
1310  // is also required.
1311  if (avctx->active_thread_type & FF_THREAD_FRAME)
1312  frames_ctx->initial_pool_size += avctx->thread_count;
1313  }
1314 
1315  *out_frames_ref = frames_ref;
1316  } else {
1317  av_buffer_unref(&frames_ref);
1318  }
1319  return ret;
1320 }
1321 
1322 static int hwaccel_init(AVCodecContext *avctx,
1323  const AVCodecHWConfigInternal *hw_config)
1324 {
1325  const AVHWAccel *hwaccel;
1326  int err;
1327 
1328  hwaccel = hw_config->hwaccel;
1331  av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1332  hwaccel->name);
1333  return AVERROR_PATCHWELCOME;
1334  }
1335 
1336  if (hwaccel->priv_data_size) {
1337  avctx->internal->hwaccel_priv_data =
1338  av_mallocz(hwaccel->priv_data_size);
1339  if (!avctx->internal->hwaccel_priv_data)
1340  return AVERROR(ENOMEM);
1341  }
1342 
1343  avctx->hwaccel = hwaccel;
1344  if (hwaccel->init) {
1345  err = hwaccel->init(avctx);
1346  if (err < 0) {
1347  av_log(avctx, AV_LOG_ERROR, "Failed setup for format %s: "
1348  "hwaccel initialisation returned error.\n",
1349  av_get_pix_fmt_name(hw_config->public.pix_fmt));
1351  avctx->hwaccel = NULL;
1352  return err;
1353  }
1354  }
1355 
1356  return 0;
1357 }
1358 
1359 static void hwaccel_uninit(AVCodecContext *avctx)
1360 {
1361  if (avctx->hwaccel && avctx->hwaccel->uninit)
1362  avctx->hwaccel->uninit(avctx);
1363 
1365 
1366  avctx->hwaccel = NULL;
1367 
1368  av_buffer_unref(&avctx->hw_frames_ctx);
1369 }
1370 
1372 {
1373  const AVPixFmtDescriptor *desc;
1374  enum AVPixelFormat *choices;
1375  enum AVPixelFormat ret, user_choice;
1376  const AVCodecHWConfigInternal *hw_config;
1377  const AVCodecHWConfig *config;
1378  int i, n, err;
1379 
1380  // Find end of list.
1381  for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1382  // Must contain at least one entry.
1383  av_assert0(n >= 1);
1384  // If a software format is available, it must be the last entry.
1385  desc = av_pix_fmt_desc_get(fmt[n - 1]);
1386  if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
1387  // No software format is available.
1388  } else {
1389  avctx->sw_pix_fmt = fmt[n - 1];
1390  }
1391 
1392  choices = av_malloc_array(n + 1, sizeof(*choices));
1393  if (!choices)
1394  return AV_PIX_FMT_NONE;
1395 
1396  memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1397 
1398  for (;;) {
1399  // Remove the previous hwaccel, if there was one.
1400  hwaccel_uninit(avctx);
1401 
1402  user_choice = avctx->get_format(avctx, choices);
1403  if (user_choice == AV_PIX_FMT_NONE) {
1404  // Explicitly chose nothing, give up.
1405  ret = AV_PIX_FMT_NONE;
1406  break;
1407  }
1408 
1409  desc = av_pix_fmt_desc_get(user_choice);
1410  if (!desc) {
1411  av_log(avctx, AV_LOG_ERROR, "Invalid format returned by "
1412  "get_format() callback.\n");
1413  ret = AV_PIX_FMT_NONE;
1414  break;
1415  }
1416  av_log(avctx, AV_LOG_DEBUG, "Format %s chosen by get_format().\n",
1417  desc->name);
1418 
1419  for (i = 0; i < n; i++) {
1420  if (choices[i] == user_choice)
1421  break;
1422  }
1423  if (i == n) {
1424  av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
1425  "%s not in possible list.\n", desc->name);
1426  ret = AV_PIX_FMT_NONE;
1427  break;
1428  }
1429 
1430  if (avctx->codec->hw_configs) {
1431  for (i = 0;; i++) {
1432  hw_config = avctx->codec->hw_configs[i];
1433  if (!hw_config)
1434  break;
1435  if (hw_config->public.pix_fmt == user_choice)
1436  break;
1437  }
1438  } else {
1439  hw_config = NULL;
1440  }
1441 
1442  if (!hw_config) {
1443  // No config available, so no extra setup required.
1444  ret = user_choice;
1445  break;
1446  }
1447  config = &hw_config->public;
1448 
1449  if (config->methods &
1451  avctx->hw_frames_ctx) {
1452  const AVHWFramesContext *frames_ctx =
1454  if (frames_ctx->format != user_choice) {
1455  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1456  "does not match the format of the provided frames "
1457  "context.\n", desc->name);
1458  goto try_again;
1459  }
1460  } else if (config->methods &
1462  avctx->hw_device_ctx) {
1463  const AVHWDeviceContext *device_ctx =
1465  if (device_ctx->type != config->device_type) {
1466  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1467  "does not match the type of the provided device "
1468  "context.\n", desc->name);
1469  goto try_again;
1470  }
1471  } else if (config->methods &
1473  // Internal-only setup, no additional configuration.
1474  } else if (config->methods &
1476  // Some ad-hoc configuration we can't see and can't check.
1477  } else {
1478  av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1479  "missing configuration.\n", desc->name);
1480  goto try_again;
1481  }
1482  if (hw_config->hwaccel) {
1483  av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel "
1484  "initialisation.\n", desc->name);
1485  err = hwaccel_init(avctx, hw_config);
1486  if (err < 0)
1487  goto try_again;
1488  }
1489  ret = user_choice;
1490  break;
1491 
1492  try_again:
1493  av_log(avctx, AV_LOG_DEBUG, "Format %s not usable, retrying "
1494  "get_format() without it.\n", desc->name);
1495  for (i = 0; i < n; i++) {
1496  if (choices[i] == user_choice)
1497  break;
1498  }
1499  for (; i + 1 < n; i++)
1500  choices[i] = choices[i + 1];
1501  --n;
1502  }
1503 
1504  av_freep(&choices);
1505  return ret;
1506 }
1507 
1509 {
1510  FramePool *pool = avctx->internal->pool;
1511  int i, ret;
1512 
1513  switch (avctx->codec_type) {
1514  case AVMEDIA_TYPE_VIDEO: {
1515  uint8_t *data[4];
1516  int linesize[4];
1517  int size[4] = { 0 };
1518  int w = frame->width;
1519  int h = frame->height;
1520  int tmpsize, unaligned;
1521 
1522  if (pool->format == frame->format &&
1523  pool->width == frame->width && pool->height == frame->height)
1524  return 0;
1525 
1526  avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
1527 
1528  do {
1529  // NOTE: do not align linesizes individually, this breaks e.g. assumptions
1530  // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
1531  ret = av_image_fill_linesizes(linesize, avctx->pix_fmt, w);
1532  if (ret < 0)
1533  return ret;
1534  // increase alignment of w for next try (rhs gives the lowest bit set in w)
1535  w += w & ~(w - 1);
1536 
1537  unaligned = 0;
1538  for (i = 0; i < 4; i++)
1539  unaligned |= linesize[i] % pool->stride_align[i];
1540  } while (unaligned);
1541 
1542  tmpsize = av_image_fill_pointers(data, avctx->pix_fmt, h,
1543  NULL, linesize);
1544  if (tmpsize < 0)
1545  return tmpsize;
1546 
1547  for (i = 0; i < 3 && data[i + 1]; i++)
1548  size[i] = data[i + 1] - data[i];
1549  size[i] = tmpsize - (data[i] - data[0]);
1550 
1551  for (i = 0; i < 4; i++) {
1552  av_buffer_pool_uninit(&pool->pools[i]);
1553  pool->linesize[i] = linesize[i];
1554  if (size[i]) {
1555  pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1,
1556  CONFIG_MEMORY_POISONING ?
1557  NULL :
1559  if (!pool->pools[i]) {
1560  ret = AVERROR(ENOMEM);
1561  goto fail;
1562  }
1563  }
1564  }
1565  pool->format = frame->format;
1566  pool->width = frame->width;
1567  pool->height = frame->height;
1568 
1569  break;
1570  }
1571  case AVMEDIA_TYPE_AUDIO: {
1572  int ch = frame->channels; //av_get_channel_layout_nb_channels(frame->channel_layout);
1573  int planar = av_sample_fmt_is_planar(frame->format);
1574  int planes = planar ? ch : 1;
1575 
1576  if (pool->format == frame->format && pool->planes == planes &&
1577  pool->channels == ch && frame->nb_samples == pool->samples)
1578  return 0;
1579 
1580  av_buffer_pool_uninit(&pool->pools[0]);
1582  frame->nb_samples, frame->format, 0);
1583  if (ret < 0)
1584  goto fail;
1585 
1586  pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
1587  if (!pool->pools[0]) {
1588  ret = AVERROR(ENOMEM);
1589  goto fail;
1590  }
1591 
1592  pool->format = frame->format;
1593  pool->planes = planes;
1594  pool->channels = ch;
1595  pool->samples = frame->nb_samples;
1596  break;
1597  }
1598  default: av_assert0(0);
1599  }
1600  return 0;
1601 fail:
1602  for (i = 0; i < 4; i++)
1603  av_buffer_pool_uninit(&pool->pools[i]);
1604  pool->format = -1;
1605  pool->planes = pool->channels = pool->samples = 0;
1606  pool->width = pool->height = 0;
1607  return ret;
1608 }
1609 
1611 {
1612  FramePool *pool = avctx->internal->pool;
1613  int planes = pool->planes;
1614  int i;
1615 
1616  frame->linesize[0] = pool->linesize[0];
1617 
1618  if (planes > AV_NUM_DATA_POINTERS) {
1619  frame->extended_data = av_mallocz_array(planes, sizeof(*frame->extended_data));
1620  frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
1621  frame->extended_buf = av_mallocz_array(frame->nb_extended_buf,
1622  sizeof(*frame->extended_buf));
1623  if (!frame->extended_data || !frame->extended_buf) {
1624  av_freep(&frame->extended_data);
1625  av_freep(&frame->extended_buf);
1626  return AVERROR(ENOMEM);
1627  }
1628  } else {
1629  frame->extended_data = frame->data;
1630  av_assert0(frame->nb_extended_buf == 0);
1631  }
1632 
1633  for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
1634  frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
1635  if (!frame->buf[i])
1636  goto fail;
1637  frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
1638  }
1639  for (i = 0; i < frame->nb_extended_buf; i++) {
1640  frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
1641  if (!frame->extended_buf[i])
1642  goto fail;
1643  frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
1644  }
1645 
1646  if (avctx->debug & FF_DEBUG_BUFFERS)
1647  av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
1648 
1649  return 0;
1650 fail:
1652  return AVERROR(ENOMEM);
1653 }
1654 
1656 {
1657  FramePool *pool = s->internal->pool;
1659  int i;
1660 
1661  if (pic->data[0] || pic->data[1] || pic->data[2] || pic->data[3]) {
1662  av_log(s, AV_LOG_ERROR, "pic->data[*]!=NULL in avcodec_default_get_buffer\n");
1663  return -1;
1664  }
1665 
1666  if (!desc) {
1668  "Unable to get pixel format descriptor for format %s\n",
1669  av_get_pix_fmt_name(pic->format));
1670  return AVERROR(EINVAL);
1671  }
1672 
1673  memset(pic->data, 0, sizeof(pic->data));
1674  pic->extended_data = pic->data;
1675 
1676  for (i = 0; i < 4 && pool->pools[i]; i++) {
1677  pic->linesize[i] = pool->linesize[i];
1678 
1679  pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
1680  if (!pic->buf[i])
1681  goto fail;
1682 
1683  pic->data[i] = pic->buf[i]->data;
1684  }
1685  for (; i < AV_NUM_DATA_POINTERS; i++) {
1686  pic->data[i] = NULL;
1687  pic->linesize[i] = 0;
1688  }
1689  if (desc->flags & AV_PIX_FMT_FLAG_PAL ||
1690  ((desc->flags & FF_PSEUDOPAL) && pic->data[1]))
1691  avpriv_set_systematic_pal2((uint32_t *)pic->data[1], pic->format);
1692 
1693  if (s->debug & FF_DEBUG_BUFFERS)
1694  av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
1695 
1696  return 0;
1697 fail:
1698  av_frame_unref(pic);
1699  return AVERROR(ENOMEM);
1700 }
1701 
1703 {
1704  int ret;
1705 
1706  if (avctx->hw_frames_ctx) {
1708  frame->width = avctx->coded_width;
1709  frame->height = avctx->coded_height;
1710  return ret;
1711  }
1712 
1713  if ((ret = update_frame_pool(avctx, frame)) < 0)
1714  return ret;
1715 
1716  switch (avctx->codec_type) {
1717  case AVMEDIA_TYPE_VIDEO:
1718  return video_get_buffer(avctx, frame);
1719  case AVMEDIA_TYPE_AUDIO:
1720  return audio_get_buffer(avctx, frame);
1721  default:
1722  return -1;
1723  }
1724 }
1725 
1727 {
1728  int size;
1729  const uint8_t *side_metadata;
1730 
1731  AVDictionary **frame_md = &frame->metadata;
1732 
1733  side_metadata = av_packet_get_side_data(avpkt,
1735  return av_packet_unpack_dictionary(side_metadata, size, frame_md);
1736 }
1737 
1739 {
1740  const AVPacket *pkt = avctx->internal->last_pkt_props;
1741  int i;
1742  static const struct {
1743  enum AVPacketSideDataType packet;
1745  } sd[] = {
1754  };
1755 
1756  if (pkt) {
1757  frame->pts = pkt->pts;
1758 #if FF_API_PKT_PTS
1760  frame->pkt_pts = pkt->pts;
1762 #endif
1763  frame->pkt_pos = pkt->pos;
1764  frame->pkt_duration = pkt->duration;
1765  frame->pkt_size = pkt->size;
1766 
1767  for (i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
1768  int size;
1769  uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
1770  if (packet_sd) {
1772  sd[i].frame,
1773  size);
1774  if (!frame_sd)
1775  return AVERROR(ENOMEM);
1776 
1777  memcpy(frame_sd->data, packet_sd, size);
1778  }
1779  }
1781 
1782  if (pkt->flags & AV_PKT_FLAG_DISCARD) {
1783  frame->flags |= AV_FRAME_FLAG_DISCARD;
1784  } else {
1785  frame->flags = (frame->flags & ~AV_FRAME_FLAG_DISCARD);
1786  }
1787  }
1788  frame->reordered_opaque = avctx->reordered_opaque;
1789 
1790  if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
1791  frame->color_primaries = avctx->color_primaries;
1792  if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
1793  frame->color_trc = avctx->color_trc;
1794  if (frame->colorspace == AVCOL_SPC_UNSPECIFIED)
1795  frame->colorspace = avctx->colorspace;
1796  if (frame->color_range == AVCOL_RANGE_UNSPECIFIED)
1797  frame->color_range = avctx->color_range;
1798  if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
1799  frame->chroma_location = avctx->chroma_sample_location;
1800 
1801  switch (avctx->codec->type) {
1802  case AVMEDIA_TYPE_VIDEO:
1803  frame->format = avctx->pix_fmt;
1804  if (!frame->sample_aspect_ratio.num)
1805  frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
1806 
1807  if (frame->width && frame->height &&
1808  av_image_check_sar(frame->width, frame->height,
1809  frame->sample_aspect_ratio) < 0) {
1810  av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1811  frame->sample_aspect_ratio.num,
1812  frame->sample_aspect_ratio.den);
1813  frame->sample_aspect_ratio = (AVRational){ 0, 1 };
1814  }
1815 
1816  break;
1817  case AVMEDIA_TYPE_AUDIO:
1818  if (!frame->sample_rate)
1819  frame->sample_rate = avctx->sample_rate;
1820  if (frame->format < 0)
1821  frame->format = avctx->sample_fmt;
1822  if (!frame->channel_layout) {
1823  if (avctx->channel_layout) {
1825  avctx->channels) {
1826  av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
1827  "configuration.\n");
1828  return AVERROR(EINVAL);
1829  }
1830 
1831  frame->channel_layout = avctx->channel_layout;
1832  } else {
1833  if (avctx->channels > FF_SANE_NB_CHANNELS) {
1834  av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
1835  avctx->channels);
1836  return AVERROR(ENOSYS);
1837  }
1838  }
1839  }
1840  frame->channels = avctx->channels;
1841  break;
1842  }
1843  return 0;
1844 }
1845 
1847 {
1848  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1849  int i;
1850  int num_planes = av_pix_fmt_count_planes(frame->format);
1852  int flags = desc ? desc->flags : 0;
1853  if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
1854  num_planes = 2;
1855  if ((flags & FF_PSEUDOPAL) && frame->data[1])
1856  num_planes = 2;
1857  for (i = 0; i < num_planes; i++) {
1858  av_assert0(frame->data[i]);
1859  }
1860  // For formats without data like hwaccel allow unused pointers to be non-NULL.
1861  for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
1862  if (frame->data[i])
1863  av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
1864  frame->data[i] = NULL;
1865  }
1866  }
1867 }
1868 
1869 static void decode_data_free(void *opaque, uint8_t *data)
1870 {
1872 
1873  if (fdd->post_process_opaque_free)
1875 
1876  if (fdd->hwaccel_priv_free)
1877  fdd->hwaccel_priv_free(fdd->hwaccel_priv);
1878 
1879  av_freep(&fdd);
1880 }
1881 
1883 {
1884  AVBufferRef *fdd_buf;
1885  FrameDecodeData *fdd;
1886 
1887  av_assert1(!frame->private_ref);
1888  av_buffer_unref(&frame->private_ref);
1889 
1890  fdd = av_mallocz(sizeof(*fdd));
1891  if (!fdd)
1892  return AVERROR(ENOMEM);
1893 
1894  fdd_buf = av_buffer_create((uint8_t*)fdd, sizeof(*fdd), decode_data_free,
1896  if (!fdd_buf) {
1897  av_freep(&fdd);
1898  return AVERROR(ENOMEM);
1899  }
1900 
1901  frame->private_ref = fdd_buf;
1902 
1903  return 0;
1904 }
1905 
1907 {
1908  const AVHWAccel *hwaccel = avctx->hwaccel;
1909  int override_dimensions = 1;
1910  int ret;
1911 
1912  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1913  if ((unsigned)avctx->width > INT_MAX - STRIDE_ALIGN ||
1914  (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) {
1915  av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
1916  return AVERROR(EINVAL);
1917  }
1918 
1919  if (frame->width <= 0 || frame->height <= 0) {
1920  frame->width = FFMAX(avctx->width, AV_CEIL_RSHIFT(avctx->coded_width, avctx->lowres));
1921  frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
1922  override_dimensions = 0;
1923  }
1924 
1925  if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
1926  av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
1927  return AVERROR(EINVAL);
1928  }
1929  }
1930  ret = ff_decode_frame_props(avctx, frame);
1931  if (ret < 0)
1932  return ret;
1933 
1934  if (hwaccel) {
1935  if (hwaccel->alloc_frame) {
1936  ret = hwaccel->alloc_frame(avctx, frame);
1937  goto end;
1938  }
1939  } else
1940  avctx->sw_pix_fmt = avctx->pix_fmt;
1941 
1942  ret = avctx->get_buffer2(avctx, frame, flags);
1943  if (ret < 0)
1944  goto end;
1945 
1947 
1949  if (ret < 0)
1950  goto end;
1951 
1952 end:
1953  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions &&
1955  frame->width = avctx->width;
1956  frame->height = avctx->height;
1957  }
1958 
1959  if (ret < 0)
1961 
1962  return ret;
1963 }
1964 
1966 {
1967  int ret = get_buffer_internal(avctx, frame, flags);
1968  if (ret < 0) {
1969  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1970  frame->width = frame->height = 0;
1971  }
1972  return ret;
1973 }
1974 
1976 {
1977  AVFrame *tmp;
1978  int ret;
1979 
1981 
1982  if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1983  av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1984  frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1986  }
1987 
1988  if (!frame->data[0])
1989  return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1990 
1992  return ff_decode_frame_props(avctx, frame);
1993 
1994  tmp = av_frame_alloc();
1995  if (!tmp)
1996  return AVERROR(ENOMEM);
1997 
1999 
2001  if (ret < 0) {
2002  av_frame_free(&tmp);
2003  return ret;
2004  }
2005 
2007  av_frame_free(&tmp);
2008 
2009  return 0;
2010 }
2011 
2013 {
2014  int ret = reget_buffer_internal(avctx, frame);
2015  if (ret < 0)
2016  av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
2017  return ret;
2018 }
2019 
2020 static void bsfs_flush(AVCodecContext *avctx)
2021 {
2022  DecodeFilterContext *s = &avctx->internal->filter;
2023 
2024  for (int i = 0; i < s->nb_bsfs; i++)
2025  av_bsf_flush(s->bsfs[i]);
2026 }
2027 
2029 {
2030  avctx->internal->draining = 0;
2031  avctx->internal->draining_done = 0;
2032  avctx->internal->nb_draining_errors = 0;
2036  avctx->internal->buffer_pkt_valid = 0;
2037 
2038  av_packet_unref(avctx->internal->ds.in_pkt);
2039 
2040  if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2041  ff_thread_flush(avctx);
2042  else if (avctx->codec->flush)
2043  avctx->codec->flush(avctx);
2044 
2045  avctx->pts_correction_last_pts =
2046  avctx->pts_correction_last_dts = INT64_MIN;
2047 
2048  bsfs_flush(avctx);
2049 
2050  if (!avctx->refcounted_frames)
2051  av_frame_unref(avctx->internal->to_free);
2052 }
2053 
2055 {
2056  DecodeFilterContext *s = &avctx->internal->filter;
2057  int i;
2058 
2059  for (i = 0; i < s->nb_bsfs; i++)
2060  av_bsf_free(&s->bsfs[i]);
2061  av_freep(&s->bsfs);
2062  s->nb_bsfs = 0;
2063 }
AVSubtitle
Definition: avcodec.h:3933
AVCodecInternal::initial_sample_rate
int initial_sample_rate
Definition: internal.h:226
decode_simple_internal
static int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:402
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:599
AVCodecContext::hwaccel
const struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2729
FF_ENABLE_DEPRECATION_WARNINGS
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:85
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
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:329
hw_pix_fmt
static enum AVPixelFormat hw_pix_fmt
Definition: hw_decode.c:46
AV_BPRINT_SIZE_UNLIMITED
#define AV_BPRINT_SIZE_UNLIMITED
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
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: internal.h:55
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:3938
opt.h
av_codec_is_decoder
int av_codec_is_decoder(const AVCodec *codec)
Definition: utils.c:99
AVCodecContext::get_format
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
Definition: avcodec.h:1817
AV_WL32
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
AVCodecContext::channel_layout
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2276
AVCodecContext::colorspace
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:2193
av_bprint_finalize
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
ff_get_format
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: decode.c:1371
AVCodecHWConfig::methods
int methods
Bit set of AV_CODEC_HW_CONFIG_METHOD_* flags, describing the possible setup methods which can be used...
Definition: avcodec.h:3464
apply_cropping
static int apply_cropping(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:713
FF_COMPLIANCE_EXPERIMENTAL
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
Definition: avcodec.h:2633
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:2225
av_bprint_init
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
av_get_token
char * av_get_token(const char **buf, const char *term)
Unescape the given string until a non escaped terminating char, and return the token corresponding to...
Definition: avstring.c:149
n
int n
Definition: avisynth_c.h:760
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: avcodec.h:1216
avcodec_decode_audio4
int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, const AVPacket *avpkt)
Decode the audio frame of size avpkt->size from avpkt->data into frame.
Definition: decode.c:905
FramePool::planes
int planes
Definition: internal.h:114
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2522
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:55
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:89
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:3815
ff_thread_flush
void ff_thread_flush(AVCodecContext *avctx)
Wait for decoding threads to finish and reset internal state.
Definition: pthread_frame.c:842
AV_FRAME_DATA_A53_CC
@ AV_FRAME_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:58
bsfs_poll
static int bsfs_poll(AVCodecContext *avctx, AVPacket *pkt)
Definition: decode.c:291
avcodec_parameters_from_context
int avcodec_parameters_from_context(AVCodecParameters *par, const AVCodecContext *codec)
Fill the parameters struct based on the values from the supplied codec context.
Definition: utils.c:2098
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: avcodec.h:1516
AVHWFramesContext::format
enum AVPixelFormat format
The pixel format identifying the underlying HW surface type.
Definition: hwcontext.h:208
rect
Definition: f_ebur128.c:91
AVCodecInternal::skip_samples
int skip_samples
Number of audio samples to skip at the start of the next decoded frame.
Definition: internal.h:185
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2694
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:846
ff_decode_bsfs_init
int ff_decode_bsfs_init(AVCodecContext *avctx)
Definition: decode.c:185
av_frame_new_side_data
AVFrameSideData * av_frame_new_side_data(AVFrame *frame, enum AVFrameSideDataType type, int size)
Add a new side data to a frame.
Definition: frame.c:722
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:260
AV_WL8
#define AV_WL8(p, d)
Definition: intreadwrite.h:399
ch
uint8_t pi<< 24) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8,(uint64_t)((*(const uint8_t *) pi - 0x80U))<< 56) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16,(*(const int16_t *) pi >>8)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16,(uint64_t)(*(const int16_t *) pi)<< 48) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32,(*(const int32_t *) pi >>24)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32,(uint64_t)(*(const int32_t *) pi)<< 32) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S64,(*(const int64_t *) pi >>56)+0x80) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S64, *(const int64_t *) pi *(1.0f/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S64, *(const int64_t *) pi *(1.0/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(const float *) pi *(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(const double *) pi *(INT64_C(1)<< 63))) #define FMT_PAIR_FUNC(out, in) static conv_func_type *const fmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB *AV_SAMPLE_FMT_NB]={ FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64), };static void cpy1(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, len);} static void cpy2(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 2 *len);} static void cpy4(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 4 *len);} static void cpy8(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 8 *len);} AudioConvert *swri_audio_convert_alloc(enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, const int *ch_map, int flags) { AudioConvert *ctx;conv_func_type *f=fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt)+AV_SAMPLE_FMT_NB *av_get_packed_sample_fmt(in_fmt)];if(!f) return NULL;ctx=av_mallocz(sizeof(*ctx));if(!ctx) return NULL;if(channels==1){ in_fmt=av_get_planar_sample_fmt(in_fmt);out_fmt=av_get_planar_sample_fmt(out_fmt);} ctx->channels=channels;ctx->conv_f=f;ctx->ch_map=ch_map;if(in_fmt==AV_SAMPLE_FMT_U8||in_fmt==AV_SAMPLE_FMT_U8P) memset(ctx->silence, 0x80, sizeof(ctx->silence));if(out_fmt==in_fmt &&!ch_map) { switch(av_get_bytes_per_sample(in_fmt)){ case 1:ctx->simd_f=cpy1;break;case 2:ctx->simd_f=cpy2;break;case 4:ctx->simd_f=cpy4;break;case 8:ctx->simd_f=cpy8;break;} } if(HAVE_X86ASM &&1) swri_audio_convert_init_x86(ctx, out_fmt, in_fmt, channels);if(ARCH_ARM) swri_audio_convert_init_arm(ctx, out_fmt, in_fmt, channels);if(ARCH_AARCH64) swri_audio_convert_init_aarch64(ctx, out_fmt, in_fmt, channels);return ctx;} void swri_audio_convert_free(AudioConvert **ctx) { av_freep(ctx);} int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len) { int ch;int off=0;const int os=(out->planar ? 1 :out->ch_count) *out->bps;unsigned misaligned=0;av_assert0(ctx->channels==out->ch_count);if(ctx->in_simd_align_mask) { int planes=in->planar ? in->ch_count :1;unsigned m=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) in->ch[ch];misaligned|=m &ctx->in_simd_align_mask;} if(ctx->out_simd_align_mask) { int planes=out->planar ? out->ch_count :1;unsigned m=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) out->ch[ch];misaligned|=m &ctx->out_simd_align_mask;} if(ctx->simd_f &&!ctx->ch_map &&!misaligned){ off=len &~15;av_assert1(off >=0);av_assert1(off<=len);av_assert2(ctx->channels==SWR_CH_MAX||!in->ch[ctx->channels]);if(off >0){ if(out->planar==in->planar){ int planes=out->planar ? out->ch_count :1;for(ch=0;ch< planes;ch++){ ctx->simd_f(out-> ch ch
Definition: audioconvert.c:56
AVSubtitleRect
Definition: avcodec.h:3898
AVSubtitle::num_rects
unsigned num_rects
Definition: avcodec.h:3937
decode_simple_receive_frame
static int decode_simple_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:624
av_bsf_send_packet
int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
Submit a packet for filtering.
Definition: bsf.c:186
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
end
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
FrameDecodeData
This struct stores per-frame lavc-internal data and is attached to it via private_ref.
Definition: decode.h:34
av_hwframe_ctx_init
int av_hwframe_ctx_init(AVBufferRef *ref)
Finalize the context before use.
Definition: hwcontext.c:329
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
tmp
static uint8_t tmp[11]
Definition: aes_ctr.c:26
FramePool::pools
AVBufferPool * pools[4]
Pools for each data plane.
Definition: internal.h:105
AVCodecContext::color_trc
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:2186
AVFrame::width
int width
Definition: frame.h:353
AVCodec::capabilities
int capabilities
Codec capabilities.
Definition: avcodec.h:3500
w
uint8_t w
Definition: llviddspenc.c:38
avcodec_decode_subtitle2
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt)
Decode a subtitle message.
Definition: decode.c:1070
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:243
internal.h
AVPacket::data
uint8_t * data
Definition: avcodec.h:1477
get_buffer_internal
static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
Definition: decode.c:1906
AVOption
AVOption.
Definition: opt.h:246
AVHWAccel::capabilities
int capabilities
Hardware accelerated codec capabilities.
Definition: avcodec.h:3682
AVCOL_TRC_UNSPECIFIED
@ AVCOL_TRC_UNSPECIFIED
Definition: pixfmt.h:470
data
const char data[16]
Definition: mxf.c:91
AVCodecInternal::compat_decode_consumed
size_t compat_decode_consumed
Definition: internal.h:209
AVHWAccel::init
int(* init)(AVCodecContext *avctx)
Initialize the hwaccel private data.
Definition: avcodec.h:3779
AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
@ AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
Definition: avcodec.h:1534
av_mallocz_array
void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.c:191
av_buffer_allocz
AVBufferRef * av_buffer_allocz(int size)
Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.
Definition: buffer.c:83
ff_decode_bsfs_uninit
void ff_decode_bsfs_uninit(AVCodecContext *avctx)
Definition: decode.c:2054
av_buffer_create
AVBufferRef * av_buffer_create(uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition: buffer.c:28
FrameDecodeData::hwaccel_priv_free
void(* hwaccel_priv_free)(void *priv)
Definition: decode.h:53
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:84
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1495
FramePool::channels
int channels
Definition: internal.h:115
ff_reget_buffer
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
Definition: decode.c:2012
FramePool::height
int height
Definition: internal.h:111
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:3163
filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
AVDictionary
Definition: dict.c:30
avcodec_default_get_format
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Definition: decode.c:1159
AVCodecInternal::compat_decode_partial_size
size_t compat_decode_partial_size
Definition: internal.h:212
FramePool::stride_align
int stride_align[AV_NUM_DATA_POINTERS]
Definition: internal.h:112
AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT
@ AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT
Definition: avcodec.h:1533
avcodec_is_open
int avcodec_is_open(AVCodecContext *s)
Definition: utils.c:1938
AV_PKT_DATA_SPHERICAL
@ AV_PKT_DATA_SPHERICAL
This side data should be associated with a video stream and corresponds to the AVSphericalMapping str...
Definition: avcodec.h:1372
compat_decode
static int compat_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, const AVPacket *pkt)
Definition: decode.c:816
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:941
AVFrame::buf
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:486
AV_RL8
#define AV_RL8(x)
Definition: intreadwrite.h:398
AVCodecInternal::compat_decode_warned
int compat_decode_warned
Definition: internal.h:206
thread.h
AVBSFContext
The bitstream filter state.
Definition: avcodec.h:5763
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:881
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:309
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
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: avcodec.h:3452
AVCodecInternal::initial_channel_layout
uint64_t initial_channel_layout
Definition: internal.h:228
SUBTITLE_ASS
@ SUBTITLE_ASS
Formatted text, the ass field must be set by the decoder and is authoritative.
Definition: avcodec.h:3893
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:3105
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2562
av_buffer_pool_init
AVBufferPool * av_buffer_pool_init(int size, AVBufferRef *(*alloc)(int size))
Allocate and initialize a buffer pool.
Definition: buffer.c:238
fmt
const char * fmt
Definition: avisynth_c.h:861
AVHWAccel
Definition: avcodec.h:3649
finish
static void finish(void)
Definition: movenc.c:345
av_bsf_alloc
int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **ctx)
Allocate a context for a given bitstream filter.
Definition: bsf.c:82
AVCodecContext::codec
const struct AVCodec * codec
Definition: avcodec.h:1574
STRIDE_ALIGN
#define STRIDE_ALIGN
Definition: internal.h:97
fail
#define fail()
Definition: checkasm.h:120
AVCodecInternal::showed_multi_packet_warning
int showed_multi_packet_warning
Definition: internal.h:215
AVCodecContext::thread_count
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
Definition: avcodec.h:2824
AV_PIX_FMT_FLAG_HWACCEL
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:140
AVCodec::bsfs
const char * bsfs
Decoding only, a comma-separated list of bitstream filters to apply to packets before decoding.
Definition: avcodec.h:3613
DecodeFilterContext
Definition: internal.h:124
bsfs_flush
static void bsfs_flush(AVCodecContext *avctx)
Definition: decode.c:2020
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1645
FrameDecodeData::post_process_opaque_free
void(* post_process_opaque_free)(void *opaque)
Definition: decode.h:47
av_image_fill_pointers
int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height, uint8_t *ptr, const int linesizes[4])
Fill plane data pointers for an image with pixel format pix_fmt and height height.
Definition: imgutils.c:111
pts
static int64_t pts
Definition: transcode_aac.c:647
add_metadata_from_side_data
static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
Definition: decode.c:1726
AVCodecContext::coded_height
int coded_height
Definition: avcodec.h:1753
AV_PKT_DATA_DISPLAYMATRIX
@ AV_PKT_DATA_DISPLAYMATRIX
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
Definition: avcodec.h:1252
guess_correct_pts
static int64_t guess_correct_pts(AVCodecContext *ctx, 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:370
AVRational::num
int num
Numerator.
Definition: rational.h:59
AVFrameSideDataType
AVFrameSideDataType
Definition: frame.h:48
AVSubtitleRect::ass
char * ass
0 terminated ASS/SSA compatible event line.
Definition: avcodec.h:3928
AVHWAccel::priv_data_size
int priv_data_size
Size of the private data to allocate in AVCodecInternal.hwaccel_priv_data.
Definition: avcodec.h:3793
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:253
av_bsf_get_by_name
const AVBitStreamFilter * av_bsf_get_by_name(const char *name)
Definition: bitstream_filters.c:80
avsubtitle_free
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: utils.c:1098
AVHWDeviceContext
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
Definition: hwcontext.h:60
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:189
AV_PKT_DATA_STRINGS_METADATA
@ AV_PKT_DATA_STRINGS_METADATA
A list of zero terminated key/value strings.
Definition: avcodec.h:1316
AV_PKT_DATA_REPLAYGAIN
@ AV_PKT_DATA_REPLAYGAIN
This side data should be associated with an audio stream and contains ReplayGain information in form ...
Definition: avcodec.h:1243
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:2380
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:385
AV_CODEC_FLAG_DROPCHANGED
#define AV_CODEC_FLAG_DROPCHANGED
Don't output frames whose parameters differ from first decoded frame in stream.
Definition: avcodec.h:867
avassert.h
AVCodecContext::color_primaries
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:2179
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
buf
void * buf
Definition: avisynth_c.h:766
hwaccel_uninit
static void hwaccel_uninit(AVCodecContext *avctx)
Definition: decode.c:1359
AVHWAccel::alloc_frame
int(* alloc_frame)(AVCodecContext *avctx, AVFrame *frame)
Allocate a custom buffer.
Definition: avcodec.h:3695
AV_PKT_DATA_AUDIO_SERVICE_TYPE
@ AV_PKT_DATA_AUDIO_SERVICE_TYPE
This side data should be associated with an audio stream and corresponds to enum AVAudioServiceType.
Definition: avcodec.h:1264
av_buffer_pool_get
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
Definition: buffer.c:334
AVCodecInternal::to_free
AVFrame * to_free
Definition: internal.h:159
hwaccel.h
AVCodecContext::has_b_frames
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1855
AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
@ AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
Definition: avcodec.h:1535
planar
uint8_t pi<< 24) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8,(uint64_t)((*(const uint8_t *) pi - 0x80U))<< 56) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16,(*(const int16_t *) pi >>8)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16,(uint64_t)(*(const int16_t *) pi)<< 48) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32,(*(const int32_t *) pi >>24)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32,(uint64_t)(*(const int32_t *) pi)<< 32) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S64,(*(const int64_t *) pi >>56)+0x80) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S64, *(const int64_t *) pi *(1.0f/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S64, *(const int64_t *) pi *(1.0/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(const float *) pi *(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(const double *) pi *(INT64_C(1)<< 63))) #define FMT_PAIR_FUNC(out, in) static conv_func_type *const fmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB *AV_SAMPLE_FMT_NB]={ FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64), };static void cpy1(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, len);} static void cpy2(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 2 *len);} static void cpy4(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 4 *len);} static void cpy8(uint8_t **dst, const uint8_t **src, int len){ memcpy(*dst, *src, 8 *len);} AudioConvert *swri_audio_convert_alloc(enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, const int *ch_map, int flags) { AudioConvert *ctx;conv_func_type *f=fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt)+AV_SAMPLE_FMT_NB *av_get_packed_sample_fmt(in_fmt)];if(!f) return NULL;ctx=av_mallocz(sizeof(*ctx));if(!ctx) return NULL;if(channels==1){ in_fmt=av_get_planar_sample_fmt(in_fmt);out_fmt=av_get_planar_sample_fmt(out_fmt);} ctx->channels=channels;ctx->conv_f=f;ctx->ch_map=ch_map;if(in_fmt==AV_SAMPLE_FMT_U8||in_fmt==AV_SAMPLE_FMT_U8P) memset(ctx->silence, 0x80, sizeof(ctx->silence));if(out_fmt==in_fmt &&!ch_map) { switch(av_get_bytes_per_sample(in_fmt)){ case 1:ctx->simd_f=cpy1;break;case 2:ctx->simd_f=cpy2;break;case 4:ctx->simd_f=cpy4;break;case 8:ctx->simd_f=cpy8;break;} } if(HAVE_X86ASM &&1) swri_audio_convert_init_x86(ctx, out_fmt, in_fmt, channels);if(ARCH_ARM) swri_audio_convert_init_arm(ctx, out_fmt, in_fmt, channels);if(ARCH_AARCH64) swri_audio_convert_init_aarch64(ctx, out_fmt, in_fmt, channels);return ctx;} void swri_audio_convert_free(AudioConvert **ctx) { av_freep(ctx);} int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len) { int ch;int off=0;const int os=(out->planar ? 1 :out->ch_count) *out->bps;unsigned misaligned=0;av_assert0(ctx->channels==out->ch_count);if(ctx->in_simd_align_mask) { int planes=in->planar ? in->ch_count :1;unsigned m=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) in->ch[ch];misaligned|=m &ctx->in_simd_align_mask;} if(ctx->out_simd_align_mask) { int planes=out->planar ? out->ch_count :1;unsigned m=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) out->ch[ch];misaligned|=m &ctx->out_simd_align_mask;} if(ctx->simd_f &&!ctx->ch_map &&!misaligned){ off=len &~15;av_assert1(off >=0);av_assert1(off<=len);av_assert2(ctx->channels==SWR_CH_MAX||!in->ch[ctx->channels]);if(off >0){ if(out->planar==in->planar){ int planes=out->planar ? out->ch_count :1;for(ch=0;ch< planes;ch++){ ctx->simd_f(out-> ch const uint8_t **in ch off *out planar
Definition: audioconvert.c:226
av_image_fill_linesizes
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
Definition: imgutils.c:89
s
#define s(width, name)
Definition: cbs_vp9.c:257
get_subtitle_defaults
static void get_subtitle_defaults(AVSubtitle *sub)
Definition: decode.c:913
FrameDecodeData::post_process_opaque
void * post_process_opaque
Definition: decode.h:46
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: avpacket.c:86
validate_avframe_allocation
static void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1846
AV_PKT_DATA_STEREO3D
@ AV_PKT_DATA_STEREO3D
This side data should be associated with a video stream and contains Stereoscopic 3D information in f...
Definition: avcodec.h:1258
AVCodecInternal::buffer_pkt
AVPacket * buffer_pkt
buffers for using new encode/decode API through legacy API
Definition: internal.h:200
AVCodecInternal::compat_decode_frame
AVFrame * compat_decode_frame
Definition: internal.h:213
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
av_realloc_array
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:198
AV_BUFFER_FLAG_READONLY
#define AV_BUFFER_FLAG_READONLY
Always treat the buffer as read-only, even when it has only one reference.
Definition: buffer.h:113
AV_PKT_DATA_MASTERING_DISPLAY_METADATA
@ AV_PKT_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata (based on SMPTE-2086:2014).
Definition: avcodec.h:1366
AVHWAccel::uninit
int(* uninit)(AVCodecContext *avctx)
Uninitialize the hwaccel private data.
Definition: avcodec.h:3787
AVFrame::channels
int channels
number of audio channels, only used for audio.
Definition: frame.h:601
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:1176
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVCodecContext::sub_text_format
int sub_text_format
Control the form of AVSubtitle.rects[N]->ass.
Definition: avcodec.h:3269
av_strtok
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition: avstring.c:184
AVERROR_INPUT_CHANGED
#define AVERROR_INPUT_CHANGED
Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED)
Definition: error.h:73
AV_FRAME_DATA_AUDIO_SERVICE_TYPE
@ AV_FRAME_DATA_AUDIO_SERVICE_TYPE
This side data must be associated with an audio frame and corresponds to enum AVAudioServiceType defi...
Definition: frame.h:113
avcodec_receive_frame
int attribute_align_arg avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Return decoded output data from a decoder.
Definition: decode.c:740
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
AVHWDeviceType
AVHWDeviceType
Definition: hwcontext.h:27
av_sample_fmt_is_planar
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
Definition: samplefmt.c:112
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
ctx
AVFormatContext * ctx
Definition: movenc.c:48
decode.h
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
A hardware pixel format which the codec can use.
Definition: avcodec.h:3459
AVSubtitle::pts
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition: avcodec.h:3939
avcodec_align_dimensions2
void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, int linesize_align[AV_NUM_DATA_POINTERS])
Modify width and height values so that they will result in a memory buffer that is acceptable for the...
Definition: utils.c:154
FramePool::format
int format
Definition: internal.h:110
AVCodecContext::max_pixels
int64_t max_pixels
The number of pixels per image to maximally accept.
Definition: avcodec.h:3292
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:88
av_bsf_free
void av_bsf_free(AVBSFContext **ctx)
Free a bitstream filter context and everything associated with it; write NULL into the supplied point...
Definition: bsf.c:35
AV_CODEC_HW_CONFIG_METHOD_INTERNAL
@ AV_CODEC_HW_CONFIG_METHOD_INTERNAL
The codec supports this format by some internal method.
Definition: avcodec.h:3443
AVCodecInternal::ds
DecodeSimpleContext ds
Definition: internal.h:165
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:446
avpriv_set_systematic_pal2
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
Definition: imgutils.c:152
recode_subtitle
static int recode_subtitle(AVCodecContext *avctx, AVPacket *outpkt, const AVPacket *inpkt)
Definition: decode.c:920
decode_data_free
static void decode_data_free(void *opaque, uint8_t *data)
Definition: decode.c:1869
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:1222
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
Definition: avpacket.c:350
AVCodecDescriptor::props
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: avcodec.h:732
if
if(ret)
Definition: filter_design.txt:179
convert_sub_to_old_ass_form
static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVRational tb)
Definition: decode.c:1012
AVCodecInternal::changed_frames_dropped
int changed_frames_dropped
Definition: internal.h:223
AVCodecContext::sub_charenc
char * sub_charenc
DTS of the last frame.
Definition: avcodec.h:3152
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:959
FramePool::width
int width
Definition: internal.h:111
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1460
utf8_check
static int utf8_check(const uint8_t *str)
Definition: decode.c:978
AV_FRAME_DATA_SPHERICAL
@ AV_FRAME_DATA_SPHERICAL
The data represents the AVSphericalMapping structure defined in libavutil/spherical....
Definition: frame.h:130
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:654
AVCodecContext::apply_cropping
int apply_cropping
Video decoding only.
Definition: avcodec.h:3350
AVCodecContext::color_range
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:2200
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:125
AVCodec::type
enum AVMediaType type
Definition: avcodec.h:3494
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:1600
audio_get_buffer
static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1610
av_opt_set_from_string
int av_opt_set_from_string(void *ctx, const char *opts, const char *const *shorthand, const char *key_val_sep, const char *pairs_sep)
Parse the key-value pairs list in opts.
Definition: opt.c:1506
reget_buffer_internal
static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1975
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: avcodec.h:775
av_buffer_pool_uninit
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:275
FramePool::linesize
int linesize[4]
Definition: internal.h:113
AV_CODEC_FLAG_TRUNCATED
#define AV_CODEC_FLAG_TRUNCATED
Input bitstream might be truncated at a random location instead of only at frame boundaries.
Definition: avcodec.h:892
AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
@ AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata associated with a video frame.
Definition: frame.h:119
AVCodecInternal::initial_height
int initial_height
Definition: internal.h:225
FF_DEBUG_BUFFERS
#define FF_DEBUG_BUFFERS
Definition: avcodec.h:2672
AVCodecInternal::skip_samples_multiplier
int skip_samples_multiplier
Definition: internal.h:217
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: avpacket.c:608
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2705
AVCodecInternal::draining_done
int draining_done
Definition: internal.h:203
FF_CODEC_CAP_EXPORTS_CROPPING
#define FF_CODEC_CAP_EXPORTS_CROPPING
The decoder sets the cropping fields in the output frames manually.
Definition: internal.h:66
UTF8_MAX_BYTES
#define UTF8_MAX_BYTES
Definition: decode.c:919
AVCOL_RANGE_UNSPECIFIED
@ AVCOL_RANGE_UNSPECIFIED
Definition: pixfmt.h:520
av_get_channel_layout_nb_channels
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
Definition: channel_layout.c:220
AVCodecInternal::last_pkt_props
AVPacket * last_pkt_props
Properties (timestamps+side data) extracted from the last packet passed for decoding.
Definition: internal.h:172
av_bprint_is_complete
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition: bprint.h:185
for
for(j=16;j >0;--j)
Definition: h264pred_template.c:469
AVCodecContext::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avcodec.h:1688
AVCodecContext::lowres
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
Definition: avcodec.h:2804
desc
const char * desc
Definition: nvenc.c:68
AVCodecContext::flags2
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1652
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1965
planes
static const struct @314 planes[]
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:981
update_frame_pool
static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:1508
AV_FRAME_DATA_REPLAYGAIN
@ AV_FRAME_DATA_REPLAYGAIN
ReplayGain information in the form of the AVReplayGain struct.
Definition: frame.h:76
AVPacket::size
int size
Definition: avcodec.h:1478
ff_thread_decode_frame
int ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt)
Submit a new frame to a decoding thread.
Definition: pthread_frame.c:472
av_bsf_flush
void av_bsf_flush(AVBSFContext *ctx)
Reset the internal bitstream filter state / flush internal buffers.
Definition: bsf.c:176
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:95
AVCodecContext::extra_hw_frames
int extra_hw_frames
Definition: avcodec.h:3364
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:45
AVCodecInternal::hwaccel_priv_data
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:190
av_frame_copy
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:792
AVCodecInternal::initial_channels
int initial_channels
Definition: internal.h:227
AVCodecInternal::initial_format
int initial_format
Definition: internal.h:224
FFMAX
#define FFMAX(a, b)
Definition: common.h:94
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:2233
AVCodecContext::pkt_timebase
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
Definition: avcodec.h:3119
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
size
int size
Definition: twinvq_data.h:11134
AV_NUM_DATA_POINTERS
#define AV_NUM_DATA_POINTERS
Definition: frame.h:296
av_make_q
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition: rational.h:71
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
AVCodecInternal::pool
FramePool * pool
Definition: internal.h:161
AVFrameSideData::data
uint8_t * data
Definition: frame.h:203
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:594
AVCHROMA_LOC_UNSPECIFIED
@ AVCHROMA_LOC_UNSPECIFIED
Definition: pixfmt.h:542
AVFrame::format
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition: frame.h:368
AVCodecHWConfigInternal
Definition: hwaccel.h:29
AVOption::name
const char * name
Definition: opt.h:247
AVSubtitle::end_display_time
uint32_t end_display_time
Definition: avcodec.h:3936
frame.h
val
const char const char void * val
Definition: avisynth_c.h:863
DecodeSimpleContext
Definition: internal.h:119
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: avcodec.h:1476
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
AVCodecContext::pts_correction_last_pts
int64_t pts_correction_last_pts
Number of incorrect DTS values so far.
Definition: avcodec.h:3144
AVFrame::channel_layout
uint64_t channel_layout
Channel layout of the audio data.
Definition: frame.h:472
hwaccel_init
static int hwaccel_init(AVCodecContext *avctx, const AVCodecHWConfigInternal *hw_config)
Definition: decode.c:1322
AVPacketSideDataType
AVPacketSideDataType
Definition: avcodec.h:1184
AV_PKT_DATA_CONTENT_LIGHT_LEVEL
@ AV_PKT_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: avcodec.h:1379
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1483
AVCodecInternal
Definition: internal.h:129
av_packet_unpack_dictionary
int av_packet_unpack_dictionary(const uint8_t *data, int size, AVDictionary **dict)
Unpack a dictionary from side_data.
Definition: avpacket.c:523
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
FF_THREAD_FRAME
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:2835
AV_FRAME_DATA_SKIP_SAMPLES
@ AV_FRAME_DATA_SKIP_SAMPLES
Recommmends skipping the specified number of samples.
Definition: frame.h:108
AVCodecContext::channels
int channels
number of audio channels
Definition: avcodec.h:2226
AVHWAccel::name
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:3655
avcodec_default_get_buffer2
int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
The default callback for AVCodecContext.get_buffer2().
Definition: decode.c:1702
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:677
AVCodecInternal::compat_decode
int compat_decode
Definition: internal.h:205
av_samples_copy
int av_samples_copy(uint8_t **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:213
extract_packet_props
static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt)
Definition: decode.c:126
av_packet_copy_props
int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
Copy only "properties" fields from src to dst.
Definition: avpacket.c:565
AVFrame::nb_samples
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:361
bprint.h
AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
@ AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: frame.h:136
AVSubtitle::format
uint16_t format
Definition: avcodec.h:3934
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1470
AVCodecInternal::initial_width
int initial_width
Definition: internal.h:225
decode_receive_frame_internal
static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
Definition: decode.c:637
internal.h
AVFrame::extended_data
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:342
av_malloc_array
#define av_malloc_array(a, b)
Definition: tableprint_vlc.h:32
avcodec_decode_video2
int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, const AVPacket *avpkt)
Decode the video frame of size avpkt->size from avpkt->data into picture.
Definition: decode.c:898
common.h
av_assert1
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:53
AV_PKT_DATA_A53_CC
@ AV_PKT_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: avcodec.h:1386
AVCodecContext::pts_correction_last_dts
int64_t pts_correction_last_dts
PTS of the last frame.
Definition: avcodec.h:3145
AV_FRAME_DATA_STEREO3D
@ AV_FRAME_DATA_STEREO3D
Stereoscopic 3d metadata.
Definition: frame.h:63
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:582
uint8_t
uint8_t
Definition: audio_convert.c:194
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:553
tb
#define tb
Definition: regdef.h:68
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:236
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
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:3314
AV_PKT_DATA_SKIP_SAMPLES
@ AV_PKT_DATA_SKIP_SAMPLES
Recommmends skipping the specified number of samples.
Definition: avcodec.h:1300
AVCodecContext::chroma_sample_location
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2207
AVCodec::decode
int(* decode)(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt)
Definition: avcodec.h:3579
av_samples_get_buffer_size
int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples, enum AVSampleFormat sample_fmt, int align)
Get the required buffer size for the given audio parameters.
Definition: samplefmt.c:119
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:499
AVCodecContext::height
int height
Definition: avcodec.h:1738
video_get_buffer
static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
Definition: decode.c:1655
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1775
av_opt_next
const AVOption * av_opt_next(const void *obj, const AVOption *last)
Iterate over all AVOptions belonging to obj.
Definition: opt.c:45
AVCodecInternal::nb_draining_errors
int nb_draining_errors
Definition: internal.h:220
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:3262
avcodec.h
AVCodecContext::sub_charenc_mode
int sub_charenc_mode
Subtitles character encoding mode.
Definition: avcodec.h:3160
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:123
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:1273
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:78
AVCodec::caps_internal
int caps_internal
Internal codec capabilities.
Definition: avcodec.h:3607
avcodec_flush_buffers
void avcodec_flush_buffers(AVCodecContext *avctx)
Reset the internal decoder state / flush internal buffers.
Definition: decode.c:2028
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:264
AVCodec::hw_configs
const struct AVCodecHWConfigInternal ** hw_configs
Array of pointers to hardware configurations supported by the codec, or NULL if no hardware supported...
Definition: avcodec.h:3622
AVCodecContext::strict_std_compliance
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition: avcodec.h:2628
AV_CODEC_PROP_TEXT_SUB
#define AV_CODEC_PROP_TEXT_SUB
Subtitle codec is text based.
Definition: avcodec.h:780
av_bprintf
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
FramePool
Definition: internal.h:100
AVCodecInternal::filter
DecodeFilterContext filter
Definition: internal.h:166
AVPacket::side_data
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: avcodec.h:1488
DecodeFilterContext::bsfs
AVBSFContext ** bsfs
Definition: internal.h:125
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: avcodec.h:790
AVCodecContext::refcounted_frames
attribute_deprecated int refcounted_frames
If non-zero, the decoded audio and video frames returned from avcodec_decode_video2() and avcodec_dec...
Definition: avcodec.h:2396
FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
#define FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
Definition: avcodec.h:3272
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen_template.c:38
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:88
insert_ts
static void insert_ts(AVBPrint *buf, int ts)
Definition: decode.c:998
SIZE_SPECIFIER
#define SIZE_SPECIFIER
Definition: internal.h:264
apply_param_change
static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
Definition: decode.c:48
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:1738
AVCodecContext
main external API structure.
Definition: avcodec.h:1565
AVFrame::height
int height
Definition: frame.h:353
AVCodecContext::active_thread_type
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:2843
AVCodecContext::codec_descriptor
const AVCodecDescriptor * codec_descriptor
AVCodecDescriptor.
Definition: avcodec.h:3126
av_bprint_clear
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
Definition: bprint.c:227
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:135
AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT
@ AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT
Definition: avcodec.h:1532
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
AVBitStreamFilter
Definition: avcodec.h:5812
AVRational::den
int den
Denominator.
Definition: rational.h:60
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
config.h
unrefcount_frame
static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
Definition: decode.c:139
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: avcodec.h:3436
av_bsf_receive_packet
int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
Retrieve a filtered packet.
Definition: bsf.c:212
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: avcodec.h:1006
av_mul_q
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
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:1824
AVCodecContext::debug
int debug
debug
Definition: avcodec.h:2650
AVCodecInternal::buffer_frame
AVFrame * buffer_frame
Definition: internal.h:202
AV_CODEC_CAP_PARAM_CHANGE
#define AV_CODEC_CAP_PARAM_CHANGE
Codec supports changed parameters at any point.
Definition: avcodec.h:1045
AVCodecInternal::draining
int draining
checks API usage: after codec draining, flush is required to resume operation
Definition: internal.h:195
FF_DISABLE_DEPRECATION_WARNINGS
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:84
AVCodecContext::coded_width
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:1753
AVHWFramesContext::initial_pool_size
int initial_pool_size
Initial size of the frame pool.
Definition: hwcontext.h:198
AVCodecContext::codec_type
enum AVMediaType codec_type
Definition: avcodec.h:1573
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:251
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:524
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:81
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:104
AV_CODEC_CAP_SUBFRAMES
#define AV_CODEC_CAP_SUBFRAMES
Codec can output multiple frames per AVPacket Normally demuxers return one frame at a time,...
Definition: avcodec.h:1024
AVCodec::receive_frame
int(* receive_frame)(AVCodecContext *avctx, AVFrame *frame)
Decode API with decoupled packet/frame dataflow.
Definition: avcodec.h:3597
ff_attach_decode_data
int ff_attach_decode_data(AVFrame *frame)
Definition: decode.c:1882
AVCodecInternal::buffer_pkt_valid
int buffer_pkt_valid
Definition: internal.h:201
AVCodecContext::frame_number
int frame_number
Frame counter, set by libavcodec.
Definition: avcodec.h:2256
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:201
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:48
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
AVCodec::flush
void(* flush)(AVCodecContext *)
Flush buffers.
Definition: avcodec.h:3602
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
AVHWAccel::frame_params
int(* frame_params)(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx)
Fill the given hw_frames context with current codec parameters.
Definition: avcodec.h:3808
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1497
AVCodecContext::reordered_opaque
int64_t reordered_opaque
opaque 64-bit number (generally a PTS) that will be reordered and output in AVFrame....
Definition: avcodec.h:2722
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: avcodec.h:3427
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:1738
bytestream.h
FrameDecodeData::hwaccel_priv
void * hwaccel_priv
Per-frame private data for hwaccels.
Definition: decode.h:52
imgutils.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
hwcontext.h
AVERROR_BUG
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:326
AVCodecHWConfigInternal::hwaccel
const AVHWAccel * hwaccel
If this configuration uses a hwaccel, a pointer to it.
Definition: hwaccel.h:39
DecodeSimpleContext::in_pkt
AVPacket * in_pkt
Definition: internal.h:120
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
FF_PSEUDOPAL
#define FF_PSEUDOPAL
Definition: internal.h:369
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
AVCodecHWConfig
Definition: avcodec.h:3455
h
h
Definition: vp9dsp_template.c:2038
AVCodecContext::sw_pix_fmt
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:3112
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:287
avstring.h
FF_SANE_NB_CHANNELS
#define FF_SANE_NB_CHANNELS
Definition: internal.h:86
AVCodecHWConfigInternal::public
AVCodecHWConfig public
This is the structure which will be returned to the user by avcodec_get_hw_config().
Definition: hwaccel.h:34
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:132
av_hwframe_get_buffer
int av_hwframe_get_buffer(AVBufferRef *hwframe_ref, AVFrame *frame, int flags)
Allocate a new frame attached to the given AVHWFramesContext.
Definition: hwcontext.c:465
FramePool::samples
int samples
Definition: internal.h:116
AVCodecHWConfig::device_type
enum AVHWDeviceType device_type
The device type associated with the configuration.
Definition: avcodec.h:3471
AVHWAccel::pix_fmt
enum AVPixelFormat pix_fmt
Supported pixel format.
Definition: avcodec.h:3676
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:1944
avcodec_parameters_copy
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
Definition: utils.c:2080
AVPacket::side_data_elems
int side_data_elems
Definition: avcodec.h:1489
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:2438
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:3164
min
float min
Definition: vorbis_enc_data.h:456
intmath.h