FFmpeg
encode.c
Go to the documentation of this file.
1 /*
2  * generic encoding-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 "libavutil/attributes.h"
22 #include "libavutil/avassert.h"
24 #include "libavutil/frame.h"
25 #include "libavutil/imgutils.h"
26 #include "libavutil/internal.h"
27 #include "libavutil/samplefmt.h"
28 
29 #include "avcodec.h"
30 #include "codec_internal.h"
31 #include "encode.h"
32 #include "frame_thread_encoder.h"
33 #include "internal.h"
34 
35 int ff_alloc_packet(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
36 {
37  if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
38  av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
40  return AVERROR(EINVAL);
41  }
42 
43  av_assert0(!avpkt->data);
44 
46  &avctx->internal->byte_buffer_size, size);
47  avpkt->data = avctx->internal->byte_buffer;
48  if (!avpkt->data) {
49  av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
50  return AVERROR(ENOMEM);
51  }
52  avpkt->size = size;
53 
54  return 0;
55 }
56 
58 {
59  int ret;
60 
61  if (avpkt->size < 0 || avpkt->size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
62  return AVERROR(EINVAL);
63 
64  if (avpkt->data || avpkt->buf) {
65  av_log(avctx, AV_LOG_ERROR, "avpkt->{data,buf} != NULL in avcodec_default_get_encode_buffer()\n");
66  return AVERROR(EINVAL);
67  }
68 
70  if (ret < 0) {
71  av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %d\n", avpkt->size);
72  return ret;
73  }
74  avpkt->data = avpkt->buf->data;
75 
76  return 0;
77 }
78 
79 int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
80 {
81  int ret;
82 
83  if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
84  return AVERROR(EINVAL);
85 
86  av_assert0(!avpkt->data && !avpkt->buf);
87 
88  avpkt->size = size;
89  ret = avctx->get_encode_buffer(avctx, avpkt, flags);
90  if (ret < 0)
91  goto fail;
92 
93  if (!avpkt->data || !avpkt->buf) {
94  av_log(avctx, AV_LOG_ERROR, "No buffer returned by get_encode_buffer()\n");
95  ret = AVERROR(EINVAL);
96  goto fail;
97  }
98  memset(avpkt->data + avpkt->size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
99 
100  ret = 0;
101 fail:
102  if (ret < 0) {
103  av_log(avctx, AV_LOG_ERROR, "get_encode_buffer() failed\n");
104  av_packet_unref(avpkt);
105  }
106 
107  return ret;
108 }
109 
111 {
112  uint8_t *data = avpkt->data;
113  int ret;
114 
115  if (avpkt->buf)
116  return 0;
117 
118  avpkt->data = NULL;
119  ret = ff_get_encode_buffer(avctx, avpkt, avpkt->size, 0);
120  if (ret < 0)
121  return ret;
122  memcpy(avpkt->data, data, avpkt->size);
123 
124  return 0;
125 }
126 
127 /**
128  * Pad last frame with silence.
129  */
130 static int pad_last_frame(AVCodecContext *s, AVFrame *frame, const AVFrame *src, int out_samples)
131 {
132  int ret;
133 
134  frame->format = src->format;
135  frame->nb_samples = out_samples;
136  ret = av_channel_layout_copy(&frame->ch_layout, &s->ch_layout);
137  if (ret < 0)
138  goto fail;
140  if (ret < 0)
141  goto fail;
142 
144  if (ret < 0)
145  goto fail;
146 
147  if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
148  src->nb_samples, s->ch_layout.nb_channels,
149  s->sample_fmt)) < 0)
150  goto fail;
151  if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
152  frame->nb_samples - src->nb_samples,
153  s->ch_layout.nb_channels, s->sample_fmt)) < 0)
154  goto fail;
155 
156  return 0;
157 
158 fail:
160  s->internal->last_audio_frame = 0;
161  return ret;
162 }
163 
164 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
165  const AVSubtitle *sub)
166 {
167  int ret;
168  if (sub->start_display_time) {
169  av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
170  return -1;
171  }
172 
173  ret = ffcodec(avctx->codec)->cb.encode_sub(avctx, buf, buf_size, sub);
174  avctx->frame_num++;
175 #if FF_API_AVCTX_FRAME_NUMBER
177  avctx->frame_number = avctx->frame_num;
179 #endif
180  return ret;
181 }
182 
184 {
185  AVCodecInternal *avci = avctx->internal;
186 
187  if (avci->draining)
188  return AVERROR_EOF;
189 
190  if (!avci->buffer_frame->buf[0])
191  return AVERROR(EAGAIN);
192 
194 
195  return 0;
196 }
197 
199  AVPacket *pkt, const AVFrame *frame)
200 {
201 #if FF_API_REORDERED_OPAQUE
203  avctx->reordered_opaque = frame->reordered_opaque;
205 #endif
206 
207  if (avctx->flags & AV_CODEC_FLAG_COPY_OPAQUE) {
208  int ret = av_buffer_replace(&pkt->opaque_ref, frame->opaque_ref);
209  if (ret < 0)
210  return ret;
211  pkt->opaque = frame->opaque;
212  }
213 
214  return 0;
215 }
216 
218  AVFrame *frame, int *got_packet)
219 {
220  const FFCodec *const codec = ffcodec(avctx->codec);
221  int ret;
222 
223  ret = codec->cb.encode(avctx, avpkt, frame, got_packet);
224  emms_c();
225  av_assert0(ret <= 0);
226 
227  if (!ret && *got_packet) {
228  if (avpkt->data) {
229  ret = encode_make_refcounted(avctx, avpkt);
230  if (ret < 0)
231  goto unref;
232  // Date returned by encoders must always be ref-counted
233  av_assert0(avpkt->buf);
234  }
235 
236  // set the timestamps for the simple no-delay case
237  // encoders with delay have to set the timestamps themselves
238  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) ||
239  (frame && (codec->caps_internal & FF_CODEC_CAP_EOF_FLUSH))) {
240  if (avpkt->pts == AV_NOPTS_VALUE)
241  avpkt->pts = frame->pts;
242 
243  if (!avpkt->duration) {
244  if (frame->duration)
245  avpkt->duration = frame->duration;
246  else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
247  avpkt->duration = ff_samples_to_time_base(avctx,
248  frame->nb_samples);
249  }
250  }
251 
252  ret = ff_encode_reordered_opaque(avctx, avpkt, frame);
253  if (ret < 0)
254  goto unref;
255  }
256 
257  // dts equals pts unless there is reordering
258  // there can be no reordering if there is no encoder delay
259  if (!(avctx->codec_descriptor->props & AV_CODEC_PROP_REORDER) ||
260  !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) ||
262  avpkt->dts = avpkt->pts;
263  } else {
264 unref:
265  av_packet_unref(avpkt);
266  }
267 
268  if (frame)
270 
271  return ret;
272 }
273 
275 {
276  AVCodecInternal *avci = avctx->internal;
277  AVFrame *frame = avci->in_frame;
278  const FFCodec *const codec = ffcodec(avctx->codec);
279  int got_packet;
280  int ret;
281 
282  if (avci->draining_done)
283  return AVERROR_EOF;
284 
285  if (!frame->buf[0] && !avci->draining) {
287  ret = ff_encode_get_frame(avctx, frame);
288  if (ret < 0 && ret != AVERROR_EOF)
289  return ret;
290  }
291 
292  if (!frame->buf[0]) {
293  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY ||
294  avci->frame_thread_encoder))
295  return AVERROR_EOF;
296 
297  // Flushing is signaled with a NULL frame
298  frame = NULL;
299  }
300 
301  got_packet = 0;
302 
304 
305  if (CONFIG_FRAME_THREAD_ENCODER && avci->frame_thread_encoder)
306  /* This will unref frame. */
307  ret = ff_thread_video_encode_frame(avctx, avpkt, frame, &got_packet);
308  else {
309  ret = ff_encode_encode_cb(avctx, avpkt, frame, &got_packet);
310  }
311 
312  if (avci->draining && !got_packet)
313  avci->draining_done = 1;
314 
315  return ret;
316 }
317 
319 {
320  int ret;
321 
322  while (!avpkt->data && !avpkt->side_data) {
323  ret = encode_simple_internal(avctx, avpkt);
324  if (ret < 0)
325  return ret;
326  }
327 
328  return 0;
329 }
330 
332 {
333  AVCodecInternal *avci = avctx->internal;
334  int ret;
335 
336  if (avci->draining_done)
337  return AVERROR_EOF;
338 
339  av_assert0(!avpkt->data && !avpkt->side_data);
340 
341  if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
342  if ((avctx->flags & AV_CODEC_FLAG_PASS1) && avctx->stats_out)
343  avctx->stats_out[0] = '\0';
344  if (av_image_check_size2(avctx->width, avctx->height, avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx))
345  return AVERROR(EINVAL);
346  }
347 
349  ret = ffcodec(avctx->codec)->cb.receive_packet(avctx, avpkt);
350  if (ret < 0)
351  av_packet_unref(avpkt);
352  else
353  // Encoders must always return ref-counted buffers.
354  // Side-data only packets have no data and can be not ref-counted.
355  av_assert0(!avpkt->data || avpkt->buf);
356  } else
357  ret = encode_simple_receive_packet(avctx, avpkt);
358  if (ret >= 0)
359  avpkt->flags |= avci->intra_only_flag;
360 
361  if (ret == AVERROR_EOF)
362  avci->draining_done = 1;
363 
364  return ret;
365 }
366 
367 #if CONFIG_LCMS2
369 {
370  enum AVColorTransferCharacteristic trc = frame->color_trc;
371  enum AVColorPrimaries prim = frame->color_primaries;
372  const FFCodec *const codec = ffcodec(avctx->codec);
373  AVCodecInternal *avci = avctx->internal;
374  cmsHPROFILE profile;
375  int ret;
376 
377  /* don't generate ICC profiles if disabled or unsupported */
378  if (!(avctx->flags2 & AV_CODEC_FLAG2_ICC_PROFILES))
379  return 0;
381  return 0;
382 
383  if (trc == AVCOL_TRC_UNSPECIFIED)
384  trc = avctx->color_trc;
385  if (prim == AVCOL_PRI_UNSPECIFIED)
386  prim = avctx->color_primaries;
387  if (trc == AVCOL_TRC_UNSPECIFIED || prim == AVCOL_PRI_UNSPECIFIED)
388  return 0; /* can't generate ICC profile with missing csp tags */
389 
391  return 0; /* don't overwrite existing ICC profile */
392 
393  if (!avci->icc.avctx) {
394  ret = ff_icc_context_init(&avci->icc, avctx);
395  if (ret < 0)
396  return ret;
397  }
398 
399  ret = ff_icc_profile_generate(&avci->icc, prim, trc, &profile);
400  if (ret < 0)
401  return ret;
402 
403  ret = ff_icc_profile_attach(&avci->icc, profile, frame);
404  cmsCloseProfile(profile);
405  return ret;
406 }
407 #else /* !CONFIG_LCMS2 */
409 {
410  return 0;
411 }
412 #endif
413 
415 {
416  AVCodecInternal *avci = avctx->internal;
417  AVFrame *dst = avci->buffer_frame;
418  int ret;
419 
420  if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
421  /* extract audio service type metadata */
423  if (sd && sd->size >= sizeof(enum AVAudioServiceType))
424  avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
425 
426  /* check for valid frame size */
428  /* if we already got an undersized frame, that must have been the last */
429  if (avctx->internal->last_audio_frame) {
430  av_log(avctx, AV_LOG_ERROR, "frame_size (%d) was not respected for a non-last frame\n", avctx->frame_size);
431  return AVERROR(EINVAL);
432  }
433  if (src->nb_samples > avctx->frame_size) {
434  av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) > frame_size (%d)\n", src->nb_samples, avctx->frame_size);
435  return AVERROR(EINVAL);
436  }
437  if (src->nb_samples < avctx->frame_size) {
438  avctx->internal->last_audio_frame = 1;
440  int pad_samples = avci->pad_samples ? avci->pad_samples : avctx->frame_size;
441  int out_samples = (src->nb_samples + pad_samples - 1) / pad_samples * pad_samples;
442 
443  if (out_samples != src->nb_samples) {
444  ret = pad_last_frame(avctx, dst, src, out_samples);
445  if (ret < 0)
446  return ret;
447  goto finish;
448  }
449  }
450  }
451  }
452  }
453 
454  ret = av_frame_ref(dst, src);
455  if (ret < 0)
456  return ret;
457 
458 finish:
459 
460 #if FF_API_PKT_DURATION
462  if (dst->pkt_duration && dst->pkt_duration != dst->duration)
463  dst->duration = dst->pkt_duration;
465 #endif
466 
467  if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
468  ret = encode_generate_icc_profile(avctx, dst);
469  if (ret < 0)
470  return ret;
471  }
472 
473  // unset frame duration unless AV_CODEC_FLAG_FRAME_DURATION is set,
474  // since otherwise we cannot be sure that whatever value it has is in the
475  // right timebase, so we would produce an incorrect value, which is worse
476  // than none at all
477  if (!(avctx->flags & AV_CODEC_FLAG_FRAME_DURATION))
478  dst->duration = 0;
479 
480  return 0;
481 }
482 
483 int attribute_align_arg avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
484 {
485  AVCodecInternal *avci = avctx->internal;
486  int ret;
487 
488  if (!avcodec_is_open(avctx) || !av_codec_is_encoder(avctx->codec))
489  return AVERROR(EINVAL);
490 
491  if (avci->draining)
492  return AVERROR_EOF;
493 
494  if (avci->buffer_frame->buf[0])
495  return AVERROR(EAGAIN);
496 
497  if (!frame) {
498  avci->draining = 1;
499  } else {
501  if (ret < 0)
502  return ret;
503  }
504 
505  if (!avci->buffer_pkt->data && !avci->buffer_pkt->side_data) {
507  if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
508  return ret;
509  }
510 
511  avctx->frame_num++;
512 #if FF_API_AVCTX_FRAME_NUMBER
514  avctx->frame_number = avctx->frame_num;
516 #endif
517 
518  return 0;
519 }
520 
521 int attribute_align_arg avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
522 {
523  AVCodecInternal *avci = avctx->internal;
524  int ret;
525 
526  av_packet_unref(avpkt);
527 
528  if (!avcodec_is_open(avctx) || !av_codec_is_encoder(avctx->codec))
529  return AVERROR(EINVAL);
530 
531  if (avci->buffer_pkt->data || avci->buffer_pkt->side_data) {
532  av_packet_move_ref(avpkt, avci->buffer_pkt);
533  } else {
534  ret = encode_receive_packet_internal(avctx, avpkt);
535  if (ret < 0)
536  return ret;
537  }
538 
539  return 0;
540 }
541 
543 {
544  const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(avctx->pix_fmt);
545  int i;
546 
547  if (avctx->codec->pix_fmts) {
548  for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
549  if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
550  break;
551  if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE) {
552  char buf[128];
553  snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
554  av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
555  (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
556  return AVERROR(EINVAL);
557  }
558  if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
559  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
560  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
561  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
562  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
563  avctx->color_range = AVCOL_RANGE_JPEG;
564  }
565 
566  if ( avctx->bits_per_raw_sample < 0
567  || (avctx->bits_per_raw_sample > 8 && pixdesc->comp[0].depth <= 8)) {
568  av_log(avctx, AV_LOG_WARNING, "Specified bit depth %d not possible with the specified pixel formats depth %d\n",
569  avctx->bits_per_raw_sample, pixdesc->comp[0].depth);
570  avctx->bits_per_raw_sample = pixdesc->comp[0].depth;
571  }
572  if (avctx->width <= 0 || avctx->height <= 0) {
573  av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
574  return AVERROR(EINVAL);
575  }
576 
577  if (avctx->ticks_per_frame && avctx->time_base.num &&
578  avctx->ticks_per_frame > INT_MAX / avctx->time_base.num) {
579  av_log(avctx, AV_LOG_ERROR,
580  "ticks_per_frame %d too large for the timebase %d/%d.",
581  avctx->ticks_per_frame,
582  avctx->time_base.num,
583  avctx->time_base.den);
584  return AVERROR(EINVAL);
585  }
586 
587  if (avctx->hw_frames_ctx) {
588  AVHWFramesContext *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
589  if (frames_ctx->format != avctx->pix_fmt) {
590  av_log(avctx, AV_LOG_ERROR,
591  "Mismatching AVCodecContext.pix_fmt and AVHWFramesContext.format\n");
592  return AVERROR(EINVAL);
593  }
594  if (avctx->sw_pix_fmt != AV_PIX_FMT_NONE &&
595  avctx->sw_pix_fmt != frames_ctx->sw_format) {
596  av_log(avctx, AV_LOG_ERROR,
597  "Mismatching AVCodecContext.sw_pix_fmt (%s) "
598  "and AVHWFramesContext.sw_format (%s)\n",
600  av_get_pix_fmt_name(frames_ctx->sw_format));
601  return AVERROR(EINVAL);
602  }
603  avctx->sw_pix_fmt = frames_ctx->sw_format;
604  }
605 
606  return 0;
607 }
608 
610 {
611  int i;
612 
613  if (avctx->codec->sample_fmts) {
614  for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
615  if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
616  break;
617  if (avctx->ch_layout.nb_channels == 1 &&
620  avctx->sample_fmt = avctx->codec->sample_fmts[i];
621  break;
622  }
623  }
624  if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
625  char buf[128];
626  snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
627  av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
628  (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
629  return AVERROR(EINVAL);
630  }
631  }
632  if (avctx->codec->supported_samplerates) {
633  for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
634  if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
635  break;
636  if (avctx->codec->supported_samplerates[i] == 0) {
637  av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
638  avctx->sample_rate);
639  return AVERROR(EINVAL);
640  }
641  }
642  if (avctx->sample_rate < 0) {
643  av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
644  avctx->sample_rate);
645  return AVERROR(EINVAL);
646  }
647  if (avctx->codec->ch_layouts) {
648  for (i = 0; avctx->codec->ch_layouts[i].nb_channels; i++) {
649  if (!av_channel_layout_compare(&avctx->ch_layout, &avctx->codec->ch_layouts[i]))
650  break;
651  }
652  if (!avctx->codec->ch_layouts[i].nb_channels) {
653  char buf[512];
654  int ret = av_channel_layout_describe(&avctx->ch_layout, buf, sizeof(buf));
655  if (ret > 0)
656  av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
657  return AVERROR(EINVAL);
658  }
659  }
660 
661  if (!avctx->bits_per_raw_sample)
663 
664  return 0;
665 }
666 
668 {
669  AVCodecInternal *avci = avctx->internal;
670  int ret = 0;
671 
672  if (avctx->time_base.num <= 0 || avctx->time_base.den <= 0) {
673  av_log(avctx, AV_LOG_ERROR, "The encoder timebase is not set.\n");
674  return AVERROR(EINVAL);
675  }
676 
677  if (avctx->flags & AV_CODEC_FLAG_COPY_OPAQUE &&
679  av_log(avctx, AV_LOG_ERROR, "The copy_opaque flag is set, but the "
680  "encoder does not support it.\n");
681  return AVERROR(EINVAL);
682  }
683 
684  switch (avctx->codec_type) {
685  case AVMEDIA_TYPE_VIDEO: ret = encode_preinit_video(avctx); break;
686  case AVMEDIA_TYPE_AUDIO: ret = encode_preinit_audio(avctx); break;
687  }
688  if (ret < 0)
689  return ret;
690 
691  if ( (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
692  && avctx->bit_rate>0 && avctx->bit_rate<1000) {
693  av_log(avctx, AV_LOG_WARNING, "Bitrate %"PRId64" is extremely low, maybe you mean %"PRId64"k\n", avctx->bit_rate, avctx->bit_rate);
694  }
695 
696  if (!avctx->rc_initial_buffer_occupancy)
697  avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3LL / 4;
698 
701 
702  if (ffcodec(avctx->codec)->cb_type == FF_CODEC_CB_TYPE_ENCODE) {
703  avci->in_frame = av_frame_alloc();
704  if (!avci->in_frame)
705  return AVERROR(ENOMEM);
706  }
707 
708  if ((avctx->flags & AV_CODEC_FLAG_RECON_FRAME)) {
710  av_log(avctx, AV_LOG_ERROR, "Reconstructed frame output requested "
711  "from an encoder not supporting it\n");
712  return AVERROR(ENOSYS);
713  }
714 
715  avci->recon_frame = av_frame_alloc();
716  if (!avci->recon_frame)
717  return AVERROR(ENOMEM);
718  }
719 
720  if (CONFIG_FRAME_THREAD_ENCODER) {
722  if (ret < 0)
723  return ret;
724  }
725 
726  return 0;
727 }
728 
730 {
731  int ret;
732 
733  switch (avctx->codec->type) {
734  case AVMEDIA_TYPE_VIDEO:
735  frame->format = avctx->pix_fmt;
736  if (frame->width <= 0 || frame->height <= 0) {
737  frame->width = FFMAX(avctx->width, avctx->coded_width);
738  frame->height = FFMAX(avctx->height, avctx->coded_height);
739  }
740 
741  break;
742  case AVMEDIA_TYPE_AUDIO:
743  frame->sample_rate = avctx->sample_rate;
744  frame->format = avctx->sample_fmt;
745  if (!frame->ch_layout.nb_channels) {
746  ret = av_channel_layout_copy(&frame->ch_layout, &avctx->ch_layout);
747  if (ret < 0)
748  return ret;
749  }
750  break;
751  }
752 
754  if (ret < 0) {
755  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
757  return ret;
758  }
759 
760  return 0;
761 }
762 
764 {
765  AVCodecInternal *avci = avctx->internal;
766 
767  if (!avci->recon_frame)
768  return AVERROR(EINVAL);
769  if (!avci->recon_frame->buf[0])
770  return avci->draining_done ? AVERROR_EOF : AVERROR(EAGAIN);
771 
773  return 0;
774 }
AVCodec::ch_layouts
const AVChannelLayout * ch_layouts
Array of supported channel layouts, terminated with a zeroed layout.
Definition: codec.h:234
AVSubtitle
Definition: avcodec.h:2330
avcodec_encode_subtitle
int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVSubtitle *sub)
Definition: encode.c:164
ff_encode_reordered_opaque
int ff_encode_reordered_opaque(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame)
Propagate user opaque values from the frame to avctx/pkt as needed.
Definition: encode.c:198
AVCodecContext::frame_size
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:1062
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:422
FF_ENABLE_DEPRECATION_WARNINGS
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:82
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
avcodec_receive_packet
int attribute_align_arg avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Read encoded data from the encoder.
Definition: encode.c:521
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
AVCodecContext::audio_service_type
enum AVAudioServiceType audio_service_type
Type of service that the audio stream conveys.
Definition: avcodec.h:1117
FF_CODEC_CB_TYPE_RECEIVE_PACKET
@ FF_CODEC_CB_TYPE_RECEIVE_PACKET
Definition: codec_internal.h:124
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:558
av_frame_get_buffer
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
Definition: frame.c:242
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1034
av_frame_get_side_data
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:682
sub
static float sub(float src0, float src1)
Definition: dnn_backend_native_layer_mathbinary.c:31
AVFrame::duration
int64_t duration
Duration of the frame, in the same units as pts.
Definition: frame.h:728
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2888
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
AVHWFramesContext::format
enum AVPixelFormat format
The pixel format identifying the underlying HW surface type.
Definition: hwcontext.h:209
FF_CODEC_CAP_EOF_FLUSH
#define FF_CODEC_CAP_EOF_FLUSH
The encoder has AV_CODEC_CAP_DELAY set, but does not actually have delay - it only wants to be flushe...
Definition: codec_internal.h:90
encode_make_refcounted
static int encode_make_refcounted(AVCodecContext *avctx, AVPacket *avpkt)
Definition: encode.c:110
AV_CODEC_CAP_ENCODER_RECON_FRAME
#define AV_CODEC_CAP_ENCODER_RECON_FRAME
The encoder is able to output reconstructed frame data, i.e.
Definition: codec.h:171
av_unused
#define av_unused
Definition: attributes.h:131
AVCodec::pix_fmts
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: codec.h:206
ff_encode_receive_frame
int ff_encode_receive_frame(AVCodecContext *avctx, AVFrame *frame)
avcodec_receive_frame() implementation for encoders.
Definition: encode.c:763
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:330
AVCodecContext::color_trc
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:995
AVCodec::capabilities
int capabilities
Codec capabilities.
Definition: codec.h:203
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:661
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:374
AVComponentDescriptor::depth
int depth
Number of bits in the component.
Definition: pixdesc.h:57
AVCodecInternal::frame_thread_encoder
void * frame_thread_encoder
Definition: internal.h:105
AVCodecInternal::in_frame
AVFrame * in_frame
The input frame is stored here for encoders implementing the simple encode API.
Definition: internal.h:113
encode.h
AVCOL_TRC_UNSPECIFIED
@ AVCOL_TRC_UNSPECIFIED
Definition: pixfmt.h:561
data
const char data[16]
Definition: mxf.c:146
FFCodec
Definition: codec_internal.h:127
FFCodec::encode
int(* encode)(struct AVCodecContext *avctx, struct AVPacket *avpkt, const struct AVFrame *frame, int *got_packet_ptr)
Encode data to an AVPacket.
Definition: codec_internal.h:222
ff_encode_encode_cb
int ff_encode_encode_cb(AVCodecContext *avctx, AVPacket *avpkt, AVFrame *frame, int *got_packet)
Definition: encode.c:217
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:392
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AVColorPrimaries
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition: pixfmt.h:533
avcodec_is_open
int avcodec_is_open(AVCodecContext *s)
Definition: avcodec.c:704
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:311
ff_icc_profile_attach
int ff_icc_profile_attach(FFIccContext *s, cmsHPROFILE profile, AVFrame *frame)
Attach an ICC profile to a frame.
Definition: fflcms2.c:172
AVFrame::buf
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:539
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:429
AV_CODEC_FLAG_COPY_OPAQUE
#define AV_CODEC_FLAG_COPY_OPAQUE
Definition: avcodec.h:278
finish
static void finish(void)
Definition: movenc.c:342
AVCodecContext::codec
const struct AVCodec * codec
Definition: avcodec.h:435
AVPacket::opaque_ref
AVBufferRef * opaque_ref
AVBufferRef for free use by the API user.
Definition: packet.h:410
AV_CODEC_FLAG_FRAME_DURATION
#define AV_CODEC_FLAG_FRAME_DURATION
Signal to the encoder that the values of AVFrame.duration are valid and should be used (typically for...
Definition: avcodec.h:285
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:2054
fail
#define fail()
Definition: checkasm.h:134
AVCodec::sample_fmts
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: codec.h:208
ff_icc_context_init
int ff_icc_context_init(FFIccContext *s, void *avctx)
Initializes an FFIccContext.
Definition: fflcms2.c:30
encode_receive_packet_internal
static int encode_receive_packet_internal(AVCodecContext *avctx, AVPacket *avpkt)
Definition: encode.c:331
samplefmt.h
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:506
AVCodecContext::coded_height
int coded_height
Definition: avcodec.h:613
encode_preinit_video
static int encode_preinit_video(AVCodecContext *avctx)
Definition: encode.c:542
AVRational::num
int num
Numerator.
Definition: rational.h:59
av_image_check_size2
int av_image_check_size2(unsigned int w, unsigned int h, int64_t max_pixels, enum AVPixelFormat pix_fmt, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of a plane of an image with...
Definition: imgutils.c:289
av_get_planar_sample_fmt
enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt)
Get the planar alternative form of the given sample format.
Definition: samplefmt.c:86
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:87
AV_PIX_FMT_YUVJ411P
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:276
avassert.h
AVCodecContext::color_primaries
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:988
AVCodec::supported_samplerates
const int * supported_samplerates
array of supported audio samplerates, or NULL if unknown, array is terminated by 0
Definition: codec.h:207
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
encode_send_frame_internal
static int encode_send_frame_internal(AVCodecContext *avctx, const AVFrame *src)
Definition: encode.c:414
frame_thread_encoder.h
AVFrameSideData::size
size_t size
Definition: frame.h:239
encode_simple_internal
static int encode_simple_internal(AVCodecContext *avctx, AVPacket *avpkt)
Definition: encode.c:274
AVCodecContext::rc_initial_buffer_occupancy
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition: avcodec.h:1282
av_channel_layout_describe
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
Definition: channel_layout.c:778
AV_PIX_FMT_YUVJ422P
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:79
ff_frame_thread_encoder_init
av_cold int ff_frame_thread_encoder_init(AVCodecContext *avctx)
Initialize frame thread encoder.
Definition: frame_thread_encoder.c:118
s
#define s(width, name)
Definition: cbs_vp9.c:256
AVCodecInternal::buffer_pkt
AVPacket * buffer_pkt
Temporary buffers for newly received or not yet output packets/frames.
Definition: internal.h:147
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVCodecContext::ticks_per_frame
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:557
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:114
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition: codec.h:156
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
AVCodecContext::bits_per_raw_sample
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:1487
FF_CODEC_CB_TYPE_ENCODE
@ FF_CODEC_CB_TYPE_ENCODE
Definition: codec_internal.h:118
AVCodecContext::max_pixels
int64_t max_pixels
The number of pixels per image to maximally accept.
Definition: avcodec.h:1906
av_get_sample_fmt_name
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition: samplefmt.c:51
FFCodec::encode_sub
int(* encode_sub)(struct AVCodecContext *avctx, uint8_t *buf, int buf_size, const struct AVSubtitle *sub)
Encode subtitles to a raw buffer.
Definition: codec_internal.h:228
AVPacket::opaque
void * opaque
for some private data of the user
Definition: packet.h:399
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:536
AV_PIX_FMT_YUVJ444P
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:80
ff_thread_video_encode_frame
int ff_thread_video_encode_frame(AVCodecContext *avctx, AVPacket *pkt, AVFrame *frame, int *got_packet_ptr)
Definition: frame_thread_encoder.c:267
AVCodecDescriptor::props
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: codec_desc.h:54
if
if(ret)
Definition: filter_design.txt:179
AVCodecContext::rc_buffer_size
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:1239
AV_CODEC_PROP_INTRA_ONLY
#define AV_CODEC_PROP_INTRA_ONLY
Codec uses only intra compression.
Definition: codec_desc.h:72
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:357
NULL
#define NULL
Definition: coverity.c:32
AVHWFramesContext::sw_format
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
Definition: hwcontext.h:222
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:594
AVCodecContext::color_range
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:1009
AVCodec::type
enum AVMediaType type
Definition: codec.h:197
ff_samples_to_time_base
static av_always_inline int64_t ff_samples_to_time_base(const AVCodecContext *avctx, int64_t samples)
Rescale from sample rate to AVCodecContext.time_base.
Definition: encode.h:90
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:461
AV_PIX_FMT_YUVJ420P
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:78
AVCodecContext::bit_rate
int64_t bit_rate
the average bitrate
Definition: avcodec.h:476
AV_FRAME_DATA_ICC_PROFILE
@ AV_FRAME_DATA_ICC_PROFILE
The data contains an ICC profile as an opaque octet buffer following the format described by ISO 1507...
Definition: frame.h:144
AV_CODEC_CAP_VARIABLE_FRAME_SIZE
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition: codec.h:125
AV_CODEC_FLAG2_ICC_PROFILES
#define AV_CODEC_FLAG2_ICC_PROFILES
Generate/parse ICC profiles on encode/decode, as appropriate for the type of file.
Definition: avcodec.h:377
av_packet_move_ref
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Definition: avpacket.c:479
AVCodecInternal::draining_done
int draining_done
Definition: internal.h:149
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVAudioServiceType
AVAudioServiceType
Definition: defs.h:79
ff_icc_profile_generate
int ff_icc_profile_generate(FFIccContext *s, enum AVColorPrimaries color_prim, enum AVColorTransferCharacteristic color_trc, cmsHPROFILE *out_profile)
Generate an ICC profile for a given combination of color primaries and transfer function.
Definition: fflcms2.c:145
FFCodec::cb
union FFCodec::@50 cb
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:548
ff_encode_alloc_frame
int ff_encode_alloc_frame(AVCodecContext *avctx, AVFrame *frame)
Allocate buffers for a frame.
Definition: encode.c:729
AVCodecContext::stats_out
char * stats_out
pass1 encoding statistics output buffer
Definition: avcodec.h:1296
pad_last_frame
static int pad_last_frame(AVCodecContext *s, AVFrame *frame, const AVFrame *src, int out_samples)
Pad last frame with silence.
Definition: encode.c:130
f
f
Definition: af_crystalizer.c:122
AVCodecContext::flags2
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:513
AVPacket::size
int size
Definition: packet.h:375
av_frame_ref
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:344
codec_internal.h
AV_CODEC_PROP_REORDER
#define AV_CODEC_PROP_REORDER
Codec supports frame reordering.
Definition: codec_desc.h:92
FFCodec::receive_packet
int(* receive_packet)(struct AVCodecContext *avctx, struct AVPacket *avpkt)
Encode API with decoupled frame/packet dataflow.
Definition: codec_internal.h:237
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1050
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
size
int size
Definition: twinvq_data.h:10344
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
AVFrameSideData::data
uint8_t * data
Definition: frame.h:238
ffcodec
static const av_always_inline FFCodec * ffcodec(const AVCodec *codec)
Definition: codec_internal.h:325
AVCodecInternal::byte_buffer
uint8_t * byte_buffer
temporary buffer used for encoders to store their bitstream
Definition: internal.h:95
frame.h
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:373
attributes.h
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:380
AVCodecInternal
Definition: internal.h:52
AVCodecInternal::byte_buffer_size
unsigned int byte_buffer_size
Definition: internal.h:96
ff_encode_preinit
int ff_encode_preinit(AVCodecContext *avctx)
Definition: encode.c:667
av_channel_layout_compare
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
Definition: channel_layout.c:932
av_codec_is_encoder
int av_codec_is_encoder(const AVCodec *codec)
Definition: utils.c:75
avcodec_default_get_buffer2
int avcodec_default_get_buffer2(AVCodecContext *s, AVFrame *frame, int flags)
The default callback for AVCodecContext.get_buffer2().
Definition: get_buffer.c:282
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:222
FFCodec::caps_internal
unsigned caps_internal
Internal codec capabilities FF_CODEC_CAP_*.
Definition: codec_internal.h:136
AV_CODEC_FLAG_RECON_FRAME
#define AV_CODEC_FLAG_RECON_FRAME
Request the encoder to output reconstructed frames, i.e. frames that would be produced by decoding th...
Definition: avcodec.h:243
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:269
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:367
av_get_bytes_per_sample
int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
Return number of bytes per sample.
Definition: samplefmt.c:108
internal.h
av_fast_padded_malloc
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition: utils.c:49
av_frame_move_ref
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:507
AV_PIX_FMT_YUVJ440P
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
Definition: pixfmt.h:100
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:478
AVFrame::pkt_duration
attribute_deprecated int64_t pkt_duration
duration of the corresponding packet, expressed in AVStream->time_base units, 0 if unknown.
Definition: frame.h:631
av_buffer_replace
int av_buffer_replace(AVBufferRef **pdst, const AVBufferRef *src)
Ensure dst refers to the same data as src.
Definition: buffer.c:233
profile
int profile
Definition: mxfenc.c:2009
AVCodecContext::height
int height
Definition: avcodec.h:598
avcodec_send_frame
int attribute_align_arg avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Supply a raw video or audio frame to the encoder.
Definition: encode.c:483
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:635
AVCodecInternal::last_audio_frame
int last_audio_frame
An audio frame with less than required samples has been submitted (and potentially padded with silenc...
Definition: internal.h:63
FF_CODEC_CAP_ICC_PROFILES
#define FF_CODEC_CAP_ICC_PROFILES
Codec supports embedded ICC profiles (AV_FRAME_DATA_ICC_PROFILE).
Definition: codec_internal.h:82
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:1887
av_samples_set_silence
int av_samples_set_silence(uint8_t **audio_data, int offset, int nb_samples, int nb_channels, enum AVSampleFormat sample_fmt)
Fill an audio buffer with silence.
Definition: samplefmt.c:246
avcodec.h
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:124
AVCodecContext::frame_num
int64_t frame_num
Frame counter, set by libavcodec.
Definition: avcodec.h:2065
ret
ret
Definition: filter_design.txt:187
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
AVPacket::side_data
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: packet.h:385
AVCodecInternal::recon_frame
AVFrame * recon_frame
When the AV_CODEC_FLAG_RECON_FRAME flag is used.
Definition: internal.h:121
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
AVCodecContext
main external API structure.
Definition: avcodec.h:426
AVCodecContext::codec_descriptor
const AVCodecDescriptor * codec_descriptor
AVCodecDescriptor.
Definition: avcodec.h:1771
channel_layout.h
ff_get_encode_buffer
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
Definition: encode.c:79
AVRational::den
int den
Denominator.
Definition: rational.h:60
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AVCodecInternal::pad_samples
int pad_samples
Audio encoders can set this flag during init to indicate that they want the small last frame to be pa...
Definition: internal.h:69
AVCodecContext::get_encode_buffer
int(* get_encode_buffer)(struct AVCodecContext *s, AVPacket *pkt, int flags)
This callback is called at the beginning of each packet to get a data buffer for it.
Definition: avcodec.h:2046
encode_simple_receive_packet
static int encode_simple_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Definition: encode.c:318
AVPixFmtDescriptor::comp
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:105
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
FFCodec::cb_type
unsigned cb_type
This field determines the type of the codec (decoder/encoder) and also the exact callback cb implemen...
Definition: codec_internal.h:143
av_buffer_realloc
int av_buffer_realloc(AVBufferRef **pbuf, size_t size)
Reallocate a given buffer.
Definition: buffer.c:183
AVCodecInternal::buffer_frame
AVFrame * buffer_frame
Definition: internal.h:148
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:639
AVCodecInternal::draining
int draining
checks API usage: after codec draining, flush is required to resume operation
Definition: internal.h:142
FF_DISABLE_DEPRECATION_WARNINGS
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:81
AVCodecContext::coded_width
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:613
AVCodecContext::codec_type
enum AVMediaType codec_type
Definition: avcodec.h:434
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecInternal::intra_only_flag
int intra_only_flag
This is set to AV_PKT_FLAG_KEY for encoders that encode intra-only formats (i.e.
Definition: internal.h:103
encode_preinit_audio
static int encode_preinit_audio(AVCodecContext *avctx)
Definition: encode.c:609
ff_encode_get_frame
int ff_encode_get_frame(AVCodecContext *avctx, AVFrame *frame)
Called by encoders to get the next frame for encoding.
Definition: encode.c:183
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:236
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
AVPacket
This structure stores compressed data.
Definition: packet.h:351
avcodec_default_get_encode_buffer
int avcodec_default_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int flags)
The default callback for AVCodecContext.get_encode_buffer().
Definition: encode.c:57
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:598
encode_generate_icc_profile
static int encode_generate_icc_profile(av_unused AVCodecContext *c, av_unused AVFrame *f)
Definition: encode.c:408
imgutils.h
AVCodecContext::frame_number
attribute_deprecated int frame_number
Frame counter, set by libavcodec.
Definition: avcodec.h:1076
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVCodecContext::sw_pix_fmt
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1757
AV_CODEC_CAP_SMALL_LAST_FRAME
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
Definition: codec.h:81
snprintf
#define snprintf
Definition: snprintf.h:34
ff_alloc_packet
int ff_alloc_packet(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and allocate data.
Definition: encode.c:35
av_x_if_null
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
Definition: avutil.h:308
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:2808
AV_CODEC_FLAG_PASS1
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:289