FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
utils.c
Go to the documentation of this file.
1 /*
2  * utils for libavcodec
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * utils.
26  */
27 
28 #include "config.h"
29 #include "libavutil/atomic.h"
30 #include "libavutil/attributes.h"
31 #include "libavutil/avassert.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/bprint.h"
35 #include "libavutil/crc.h"
36 #include "libavutil/frame.h"
37 #include "libavutil/internal.h"
38 #include "libavutil/mathematics.h"
39 #include "libavutil/mem_internal.h"
40 #include "libavutil/pixdesc.h"
41 #include "libavutil/imgutils.h"
42 #include "libavutil/samplefmt.h"
43 #include "libavutil/dict.h"
44 #include "avcodec.h"
45 #include "libavutil/opt.h"
46 #include "me_cmp.h"
47 #include "mpegvideo.h"
48 #include "thread.h"
49 #include "frame_thread_encoder.h"
50 #include "internal.h"
51 #include "raw.h"
52 #include "bytestream.h"
53 #include "version.h"
54 #include <stdlib.h>
55 #include <stdarg.h>
56 #include <limits.h>
57 #include <float.h>
58 #if CONFIG_ICONV
59 # include <iconv.h>
60 #endif
61 
62 #if HAVE_PTHREADS
63 #include <pthread.h>
64 #elif HAVE_W32THREADS
65 #include "compat/w32pthreads.h"
66 #elif HAVE_OS2THREADS
67 #include "compat/os2threads.h"
68 #endif
69 
70 #include "libavutil/ffversion.h"
71 const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
72 
73 #if HAVE_PTHREADS || HAVE_W32THREADS || HAVE_OS2THREADS
74 static int default_lockmgr_cb(void **arg, enum AVLockOp op)
75 {
76  void * volatile * mutex = arg;
77  int err;
78 
79  switch (op) {
80  case AV_LOCK_CREATE:
81  return 0;
82  case AV_LOCK_OBTAIN:
83  if (!*mutex) {
85  if (!tmp)
86  return AVERROR(ENOMEM);
87  if ((err = pthread_mutex_init(tmp, NULL))) {
88  av_free(tmp);
89  return AVERROR(err);
90  }
91  if (avpriv_atomic_ptr_cas(mutex, NULL, tmp)) {
93  av_free(tmp);
94  }
95  }
96 
97  if ((err = pthread_mutex_lock(*mutex)))
98  return AVERROR(err);
99 
100  return 0;
101  case AV_LOCK_RELEASE:
102  if ((err = pthread_mutex_unlock(*mutex)))
103  return AVERROR(err);
104 
105  return 0;
106  case AV_LOCK_DESTROY:
107  if (*mutex)
108  pthread_mutex_destroy(*mutex);
109  av_free(*mutex);
110  avpriv_atomic_ptr_cas(mutex, *mutex, NULL);
111  return 0;
112  }
113  return 1;
114 }
115 static int (*lockmgr_cb)(void **mutex, enum AVLockOp op) = default_lockmgr_cb;
116 #else
117 static int (*lockmgr_cb)(void **mutex, enum AVLockOp op) = NULL;
118 #endif
119 
120 
121 volatile int ff_avcodec_locked;
122 static int volatile entangled_thread_counter = 0;
123 static void *codec_mutex;
124 static void *avformat_mutex;
125 
126 void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
127 {
128  uint8_t **p = ptr;
129  if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
130  av_freep(p);
131  *size = 0;
132  return;
133  }
134  if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
135  memset(*p + min_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
136 }
137 
138 void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
139 {
140  uint8_t **p = ptr;
141  if (min_size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
142  av_freep(p);
143  *size = 0;
144  return;
145  }
146  if (!ff_fast_malloc(p, size, min_size + AV_INPUT_BUFFER_PADDING_SIZE, 1))
147  memset(*p, 0, min_size + AV_INPUT_BUFFER_PADDING_SIZE);
148 }
149 
150 /* encoder management */
153 
155 {
156  if (c)
157  return c->next;
158  else
159  return first_avcodec;
160 }
161 
162 static av_cold void avcodec_init(void)
163 {
164  static int initialized = 0;
165 
166  if (initialized != 0)
167  return;
168  initialized = 1;
169 
170  if (CONFIG_ME_CMP)
172 }
173 
174 int av_codec_is_encoder(const AVCodec *codec)
175 {
176  return codec && (codec->encode_sub || codec->encode2);
177 }
178 
179 int av_codec_is_decoder(const AVCodec *codec)
180 {
181  return codec && codec->decode;
182 }
183 
185 {
186  AVCodec **p;
187  avcodec_init();
188  p = last_avcodec;
189  codec->next = NULL;
190 
191  while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, codec))
192  p = &(*p)->next;
193  last_avcodec = &codec->next;
194 
195  if (codec->init_static_data)
196  codec->init_static_data(codec);
197 }
198 
199 #if FF_API_EMU_EDGE
201 {
202  return EDGE_WIDTH;
203 }
204 #endif
205 
206 #if FF_API_SET_DIMENSIONS
208 {
209  int ret = ff_set_dimensions(s, width, height);
210  if (ret < 0) {
211  av_log(s, AV_LOG_WARNING, "Failed to set dimensions %d %d\n", width, height);
212  }
213 }
214 #endif
215 
217 {
218  int ret = av_image_check_size(width, height, 0, s);
219 
220  if (ret < 0)
221  width = height = 0;
222 
223  s->coded_width = width;
224  s->coded_height = height;
225  s->width = FF_CEIL_RSHIFT(width, s->lowres);
226  s->height = FF_CEIL_RSHIFT(height, s->lowres);
227 
228  return ret;
229 }
230 
232 {
233  int ret = av_image_check_sar(avctx->width, avctx->height, sar);
234 
235  if (ret < 0) {
236  av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %d/%d\n",
237  sar.num, sar.den);
238  avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
239  return ret;
240  } else {
241  avctx->sample_aspect_ratio = sar;
242  }
243  return 0;
244 }
245 
247  enum AVMatrixEncoding matrix_encoding)
248 {
249  AVFrameSideData *side_data;
250  enum AVMatrixEncoding *data;
251 
253  if (!side_data)
255  sizeof(enum AVMatrixEncoding));
256 
257  if (!side_data)
258  return AVERROR(ENOMEM);
259 
260  data = (enum AVMatrixEncoding*)side_data->data;
261  *data = matrix_encoding;
262 
263  return 0;
264 }
265 
267  int linesize_align[AV_NUM_DATA_POINTERS])
268 {
269  int i;
270  int w_align = 1;
271  int h_align = 1;
273 
274  if (desc) {
275  w_align = 1 << desc->log2_chroma_w;
276  h_align = 1 << desc->log2_chroma_h;
277  }
278 
279  switch (s->pix_fmt) {
280  case AV_PIX_FMT_YUV420P:
281  case AV_PIX_FMT_YUYV422:
282  case AV_PIX_FMT_YVYU422:
283  case AV_PIX_FMT_UYVY422:
284  case AV_PIX_FMT_YUV422P:
285  case AV_PIX_FMT_YUV440P:
286  case AV_PIX_FMT_YUV444P:
287  case AV_PIX_FMT_GBRP:
288  case AV_PIX_FMT_GBRAP:
289  case AV_PIX_FMT_GRAY8:
290  case AV_PIX_FMT_GRAY16BE:
291  case AV_PIX_FMT_GRAY16LE:
292  case AV_PIX_FMT_YUVJ420P:
293  case AV_PIX_FMT_YUVJ422P:
294  case AV_PIX_FMT_YUVJ440P:
295  case AV_PIX_FMT_YUVJ444P:
296  case AV_PIX_FMT_YUVA420P:
297  case AV_PIX_FMT_YUVA422P:
298  case AV_PIX_FMT_YUVA444P:
351  case AV_PIX_FMT_GBRP9LE:
352  case AV_PIX_FMT_GBRP9BE:
353  case AV_PIX_FMT_GBRP10LE:
354  case AV_PIX_FMT_GBRP10BE:
355  case AV_PIX_FMT_GBRP12LE:
356  case AV_PIX_FMT_GBRP12BE:
357  case AV_PIX_FMT_GBRP14LE:
358  case AV_PIX_FMT_GBRP14BE:
359  case AV_PIX_FMT_GBRP16LE:
360  case AV_PIX_FMT_GBRP16BE:
361  w_align = 16; //FIXME assume 16 pixel per macroblock
362  h_align = 16 * 2; // interlaced needs 2 macroblocks height
363  break;
364  case AV_PIX_FMT_YUV411P:
365  case AV_PIX_FMT_YUVJ411P:
367  w_align = 32;
368  h_align = 16 * 2;
369  break;
370  case AV_PIX_FMT_YUV410P:
371  if (s->codec_id == AV_CODEC_ID_SVQ1) {
372  w_align = 64;
373  h_align = 64;
374  }
375  break;
376  case AV_PIX_FMT_RGB555:
377  if (s->codec_id == AV_CODEC_ID_RPZA) {
378  w_align = 4;
379  h_align = 4;
380  }
381  break;
382  case AV_PIX_FMT_PAL8:
383  case AV_PIX_FMT_BGR8:
384  case AV_PIX_FMT_RGB8:
385  if (s->codec_id == AV_CODEC_ID_SMC ||
387  w_align = 4;
388  h_align = 4;
389  }
390  if (s->codec_id == AV_CODEC_ID_JV) {
391  w_align = 8;
392  h_align = 8;
393  }
394  break;
395  case AV_PIX_FMT_BGR24:
396  if ((s->codec_id == AV_CODEC_ID_MSZH) ||
397  (s->codec_id == AV_CODEC_ID_ZLIB)) {
398  w_align = 4;
399  h_align = 4;
400  }
401  break;
402  case AV_PIX_FMT_RGB24:
403  if (s->codec_id == AV_CODEC_ID_CINEPAK) {
404  w_align = 4;
405  h_align = 4;
406  }
407  break;
408  default:
409  break;
410  }
411 
413  w_align = FFMAX(w_align, 8);
414  }
415 
416  *width = FFALIGN(*width, w_align);
417  *height = FFALIGN(*height, h_align);
418  if (s->codec_id == AV_CODEC_ID_H264 || s->lowres) {
419  // some of the optimized chroma MC reads one line too much
420  // which is also done in mpeg decoders with lowres > 0
421  *height += 2;
422 
423  // H.264 uses edge emulation for out of frame motion vectors, for this
424  // it requires a temporary area large enough to hold a 21x21 block,
425  // increasing witdth ensure that the temporary area is large enough,
426  // the next rounded up width is 32
427  *width = FFMAX(*width, 32);
428  }
429 
430  for (i = 0; i < 4; i++)
431  linesize_align[i] = STRIDE_ALIGN;
432 }
433 
435 {
437  int chroma_shift = desc->log2_chroma_w;
438  int linesize_align[AV_NUM_DATA_POINTERS];
439  int align;
440 
441  avcodec_align_dimensions2(s, width, height, linesize_align);
442  align = FFMAX(linesize_align[0], linesize_align[3]);
443  linesize_align[1] <<= chroma_shift;
444  linesize_align[2] <<= chroma_shift;
445  align = FFMAX3(align, linesize_align[1], linesize_align[2]);
446  *width = FFALIGN(*width, align);
447 }
448 
449 int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
450 {
451  if (pos <= AVCHROMA_LOC_UNSPECIFIED || pos >= AVCHROMA_LOC_NB)
452  return AVERROR(EINVAL);
453  pos--;
454 
455  *xpos = (pos&1) * 128;
456  *ypos = ((pos>>1)^(pos<4)) * 128;
457 
458  return 0;
459 }
460 
462 {
463  int pos, xout, yout;
464 
465  for (pos = AVCHROMA_LOC_UNSPECIFIED + 1; pos < AVCHROMA_LOC_NB; pos++) {
466  if (avcodec_enum_to_chroma_pos(&xout, &yout, pos) == 0 && xout == xpos && yout == ypos)
467  return pos;
468  }
470 }
471 
473  enum AVSampleFormat sample_fmt, const uint8_t *buf,
474  int buf_size, int align)
475 {
476  int ch, planar, needed_size, ret = 0;
477 
478  needed_size = av_samples_get_buffer_size(NULL, nb_channels,
479  frame->nb_samples, sample_fmt,
480  align);
481  if (buf_size < needed_size)
482  return AVERROR(EINVAL);
483 
484  planar = av_sample_fmt_is_planar(sample_fmt);
485  if (planar && nb_channels > AV_NUM_DATA_POINTERS) {
486  if (!(frame->extended_data = av_mallocz_array(nb_channels,
487  sizeof(*frame->extended_data))))
488  return AVERROR(ENOMEM);
489  } else {
490  frame->extended_data = frame->data;
491  }
492 
493  if ((ret = av_samples_fill_arrays(frame->extended_data, &frame->linesize[0],
494  (uint8_t *)(intptr_t)buf, nb_channels, frame->nb_samples,
495  sample_fmt, align)) < 0) {
496  if (frame->extended_data != frame->data)
497  av_freep(&frame->extended_data);
498  return ret;
499  }
500  if (frame->extended_data != frame->data) {
501  for (ch = 0; ch < AV_NUM_DATA_POINTERS; ch++)
502  frame->data[ch] = frame->extended_data[ch];
503  }
504 
505  return ret;
506 }
507 
509 {
510  FramePool *pool = avctx->internal->pool;
511  int i, ret;
512 
513  switch (avctx->codec_type) {
514  case AVMEDIA_TYPE_VIDEO: {
515  AVPicture picture;
516  int size[4] = { 0 };
517  int w = frame->width;
518  int h = frame->height;
519  int tmpsize, unaligned;
520 
521  if (pool->format == frame->format &&
522  pool->width == frame->width && pool->height == frame->height)
523  return 0;
524 
525  avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
526 
527  do {
528  // NOTE: do not align linesizes individually, this breaks e.g. assumptions
529  // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
530  av_image_fill_linesizes(picture.linesize, avctx->pix_fmt, w);
531  // increase alignment of w for next try (rhs gives the lowest bit set in w)
532  w += w & ~(w - 1);
533 
534  unaligned = 0;
535  for (i = 0; i < 4; i++)
536  unaligned |= picture.linesize[i] % pool->stride_align[i];
537  } while (unaligned);
538 
539  tmpsize = av_image_fill_pointers(picture.data, avctx->pix_fmt, h,
540  NULL, picture.linesize);
541  if (tmpsize < 0)
542  return -1;
543 
544  for (i = 0; i < 3 && picture.data[i + 1]; i++)
545  size[i] = picture.data[i + 1] - picture.data[i];
546  size[i] = tmpsize - (picture.data[i] - picture.data[0]);
547 
548  for (i = 0; i < 4; i++) {
549  av_buffer_pool_uninit(&pool->pools[i]);
550  pool->linesize[i] = picture.linesize[i];
551  if (size[i]) {
552  pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1,
553  CONFIG_MEMORY_POISONING ?
554  NULL :
556  if (!pool->pools[i]) {
557  ret = AVERROR(ENOMEM);
558  goto fail;
559  }
560  }
561  }
562  pool->format = frame->format;
563  pool->width = frame->width;
564  pool->height = frame->height;
565 
566  break;
567  }
568  case AVMEDIA_TYPE_AUDIO: {
569  int ch = av_frame_get_channels(frame); //av_get_channel_layout_nb_channels(frame->channel_layout);
570  int planar = av_sample_fmt_is_planar(frame->format);
571  int planes = planar ? ch : 1;
572 
573  if (pool->format == frame->format && pool->planes == planes &&
574  pool->channels == ch && frame->nb_samples == pool->samples)
575  return 0;
576 
577  av_buffer_pool_uninit(&pool->pools[0]);
578  ret = av_samples_get_buffer_size(&pool->linesize[0], ch,
579  frame->nb_samples, frame->format, 0);
580  if (ret < 0)
581  goto fail;
582 
583  pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
584  if (!pool->pools[0]) {
585  ret = AVERROR(ENOMEM);
586  goto fail;
587  }
588 
589  pool->format = frame->format;
590  pool->planes = planes;
591  pool->channels = ch;
592  pool->samples = frame->nb_samples;
593  break;
594  }
595  default: av_assert0(0);
596  }
597  return 0;
598 fail:
599  for (i = 0; i < 4; i++)
600  av_buffer_pool_uninit(&pool->pools[i]);
601  pool->format = -1;
602  pool->planes = pool->channels = pool->samples = 0;
603  pool->width = pool->height = 0;
604  return ret;
605 }
606 
608 {
609  FramePool *pool = avctx->internal->pool;
610  int planes = pool->planes;
611  int i;
612 
613  frame->linesize[0] = pool->linesize[0];
614 
615  if (planes > AV_NUM_DATA_POINTERS) {
616  frame->extended_data = av_mallocz_array(planes, sizeof(*frame->extended_data));
617  frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
619  sizeof(*frame->extended_buf));
620  if (!frame->extended_data || !frame->extended_buf) {
621  av_freep(&frame->extended_data);
622  av_freep(&frame->extended_buf);
623  return AVERROR(ENOMEM);
624  }
625  } else {
626  frame->extended_data = frame->data;
627  av_assert0(frame->nb_extended_buf == 0);
628  }
629 
630  for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
631  frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
632  if (!frame->buf[i])
633  goto fail;
634  frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
635  }
636  for (i = 0; i < frame->nb_extended_buf; i++) {
637  frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
638  if (!frame->extended_buf[i])
639  goto fail;
640  frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
641  }
642 
643  if (avctx->debug & FF_DEBUG_BUFFERS)
644  av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
645 
646  return 0;
647 fail:
648  av_frame_unref(frame);
649  return AVERROR(ENOMEM);
650 }
651 
653 {
654  FramePool *pool = s->internal->pool;
655  int i;
656 
657  if (pic->data[0]) {
658  av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
659  return -1;
660  }
661 
662  memset(pic->data, 0, sizeof(pic->data));
663  pic->extended_data = pic->data;
664 
665  for (i = 0; i < 4 && pool->pools[i]; i++) {
666  pic->linesize[i] = pool->linesize[i];
667 
668  pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
669  if (!pic->buf[i])
670  goto fail;
671 
672  pic->data[i] = pic->buf[i]->data;
673  }
674  for (; i < AV_NUM_DATA_POINTERS; i++) {
675  pic->data[i] = NULL;
676  pic->linesize[i] = 0;
677  }
678  if (pic->data[1] && !pic->data[2])
679  avpriv_set_systematic_pal2((uint32_t *)pic->data[1], s->pix_fmt);
680 
681  if (s->debug & FF_DEBUG_BUFFERS)
682  av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
683 
684  return 0;
685 fail:
686  av_frame_unref(pic);
687  return AVERROR(ENOMEM);
688 }
689 
690 void avpriv_color_frame(AVFrame *frame, const int c[4])
691 {
692  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
693  int p, y, x;
694 
696 
697  for (p = 0; p<desc->nb_components; p++) {
698  uint8_t *dst = frame->data[p];
699  int is_chroma = p == 1 || p == 2;
700  int bytes = is_chroma ? FF_CEIL_RSHIFT(frame->width, desc->log2_chroma_w) : frame->width;
701  int height = is_chroma ? FF_CEIL_RSHIFT(frame->height, desc->log2_chroma_h) : frame->height;
702  for (y = 0; y < height; y++) {
703  if (desc->comp[0].depth_minus1 >= 8) {
704  for (x = 0; x<bytes; x++)
705  ((uint16_t*)dst)[x] = c[p];
706  }else
707  memset(dst, c[p], bytes);
708  dst += frame->linesize[p];
709  }
710  }
711 }
712 
714 {
715  int ret;
716 
717  if ((ret = update_frame_pool(avctx, frame)) < 0)
718  return ret;
719 
720 #if FF_API_GET_BUFFER
722  frame->type = FF_BUFFER_TYPE_INTERNAL;
724 #endif
725 
726  switch (avctx->codec_type) {
727  case AVMEDIA_TYPE_VIDEO:
728  return video_get_buffer(avctx, frame);
729  case AVMEDIA_TYPE_AUDIO:
730  return audio_get_buffer(avctx, frame);
731  default:
732  return -1;
733  }
734 }
735 
737 {
738  int size;
739  const uint8_t *side_metadata;
740 
741  AVDictionary **frame_md = avpriv_frame_get_metadatap(frame);
742 
743  side_metadata = av_packet_get_side_data(avpkt,
745  return av_packet_unpack_dictionary(side_metadata, size, frame_md);
746 }
747 
749 {
750  AVPacket *pkt = avctx->internal->pkt;
751  int i;
752  static const struct {
753  enum AVPacketSideDataType packet;
755  } sd[] = {
760  };
761 
762  if (pkt) {
763  frame->pkt_pts = pkt->pts;
764  av_frame_set_pkt_pos (frame, pkt->pos);
765  av_frame_set_pkt_duration(frame, pkt->duration);
766  av_frame_set_pkt_size (frame, pkt->size);
767 
768  for (i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
769  int size;
770  uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
771  if (packet_sd) {
772  AVFrameSideData *frame_sd = av_frame_new_side_data(frame,
773  sd[i].frame,
774  size);
775  if (!frame_sd)
776  return AVERROR(ENOMEM);
777 
778  memcpy(frame_sd->data, packet_sd, size);
779  }
780  }
781  add_metadata_from_side_data(pkt, frame);
782  } else {
783  frame->pkt_pts = AV_NOPTS_VALUE;
784  av_frame_set_pkt_pos (frame, -1);
785  av_frame_set_pkt_duration(frame, 0);
786  av_frame_set_pkt_size (frame, -1);
787  }
788  frame->reordered_opaque = avctx->reordered_opaque;
789 
791  frame->color_primaries = avctx->color_primaries;
792  if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
793  frame->color_trc = avctx->color_trc;
795  av_frame_set_colorspace(frame, avctx->colorspace);
797  av_frame_set_color_range(frame, avctx->color_range);
799  frame->chroma_location = avctx->chroma_sample_location;
800 
801  switch (avctx->codec->type) {
802  case AVMEDIA_TYPE_VIDEO:
803  frame->format = avctx->pix_fmt;
804  if (!frame->sample_aspect_ratio.num)
806 
807  if (frame->width && frame->height &&
808  av_image_check_sar(frame->width, frame->height,
809  frame->sample_aspect_ratio) < 0) {
810  av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
811  frame->sample_aspect_ratio.num,
812  frame->sample_aspect_ratio.den);
813  frame->sample_aspect_ratio = (AVRational){ 0, 1 };
814  }
815 
816  break;
817  case AVMEDIA_TYPE_AUDIO:
818  if (!frame->sample_rate)
819  frame->sample_rate = avctx->sample_rate;
820  if (frame->format < 0)
821  frame->format = avctx->sample_fmt;
822  if (!frame->channel_layout) {
823  if (avctx->channel_layout) {
825  avctx->channels) {
826  av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
827  "configuration.\n");
828  return AVERROR(EINVAL);
829  }
830 
831  frame->channel_layout = avctx->channel_layout;
832  } else {
833  if (avctx->channels > FF_SANE_NB_CHANNELS) {
834  av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
835  avctx->channels);
836  return AVERROR(ENOSYS);
837  }
838  }
839  }
840  av_frame_set_channels(frame, avctx->channels);
841  break;
842  }
843  return 0;
844 }
845 
846 #if FF_API_GET_BUFFER
849 {
850  return avcodec_default_get_buffer2(avctx, frame, 0);
851 }
852 
853 typedef struct CompatReleaseBufPriv {
856  uint8_t avframe_padding[1024]; // hack to allow linking to a avutil with larger AVFrame
858 
859 static void compat_free_buffer(void *opaque, uint8_t *data)
860 {
861  CompatReleaseBufPriv *priv = opaque;
862  if (priv->avctx.release_buffer)
863  priv->avctx.release_buffer(&priv->avctx, &priv->frame);
864  av_freep(&priv);
865 }
866 
867 static void compat_release_buffer(void *opaque, uint8_t *data)
868 {
869  AVBufferRef *buf = opaque;
870  av_buffer_unref(&buf);
871 }
873 #endif
874 
876 {
877  return ff_init_buffer_info(avctx, frame);
878 }
879 
881 {
882  const AVHWAccel *hwaccel = avctx->hwaccel;
883  int override_dimensions = 1;
884  int ret;
885 
886  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
887  if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0 || avctx->pix_fmt<0) {
888  av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
889  return AVERROR(EINVAL);
890  }
891  }
892  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
893  if (frame->width <= 0 || frame->height <= 0) {
894  frame->width = FFMAX(avctx->width, FF_CEIL_RSHIFT(avctx->coded_width, avctx->lowres));
895  frame->height = FFMAX(avctx->height, FF_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
896  override_dimensions = 0;
897  }
898  }
899  ret = ff_decode_frame_props(avctx, frame);
900  if (ret < 0)
901  return ret;
902 
903  if (hwaccel) {
904  if (hwaccel->alloc_frame) {
905  ret = hwaccel->alloc_frame(avctx, frame);
906  goto end;
907  }
908  } else
909  avctx->sw_pix_fmt = avctx->pix_fmt;
910 
911 #if FF_API_GET_BUFFER
913  /*
914  * Wrap an old get_buffer()-allocated buffer in a bunch of AVBuffers.
915  * We wrap each plane in its own AVBuffer. Each of those has a reference to
916  * a dummy AVBuffer as its private data, unreffing it on free.
917  * When all the planes are freed, the dummy buffer's free callback calls
918  * release_buffer().
919  */
920  if (avctx->get_buffer) {
921  CompatReleaseBufPriv *priv = NULL;
922  AVBufferRef *dummy_buf = NULL;
923  int planes, i, ret;
924 
925  if (flags & AV_GET_BUFFER_FLAG_REF)
926  frame->reference = 1;
927 
928  ret = avctx->get_buffer(avctx, frame);
929  if (ret < 0)
930  return ret;
931 
932  /* return if the buffers are already set up
933  * this would happen e.g. when a custom get_buffer() calls
934  * avcodec_default_get_buffer
935  */
936  if (frame->buf[0])
937  goto end0;
938 
939  priv = av_mallocz(sizeof(*priv));
940  if (!priv) {
941  ret = AVERROR(ENOMEM);
942  goto fail;
943  }
944  priv->avctx = *avctx;
945  priv->frame = *frame;
946 
947  dummy_buf = av_buffer_create(NULL, 0, compat_free_buffer, priv, 0);
948  if (!dummy_buf) {
949  ret = AVERROR(ENOMEM);
950  goto fail;
951  }
952 
953 #define WRAP_PLANE(ref_out, data, data_size) \
954 do { \
955  AVBufferRef *dummy_ref = av_buffer_ref(dummy_buf); \
956  if (!dummy_ref) { \
957  ret = AVERROR(ENOMEM); \
958  goto fail; \
959  } \
960  ref_out = av_buffer_create(data, data_size, compat_release_buffer, \
961  dummy_ref, 0); \
962  if (!ref_out) { \
963  av_buffer_unref(&dummy_ref); \
964  av_frame_unref(frame); \
965  ret = AVERROR(ENOMEM); \
966  goto fail; \
967  } \
968 } while (0)
969 
970  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
971  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
972 
973  planes = av_pix_fmt_count_planes(frame->format);
974  /* workaround for AVHWAccel plane count of 0, buf[0] is used as
975  check for allocated buffers: make libavcodec happy */
976  if (desc && desc->flags & AV_PIX_FMT_FLAG_HWACCEL)
977  planes = 1;
978  if (!desc || planes <= 0) {
979  ret = AVERROR(EINVAL);
980  goto fail;
981  }
982 
983  for (i = 0; i < planes; i++) {
984  int v_shift = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
985  int plane_size = (frame->height >> v_shift) * frame->linesize[i];
986 
987  WRAP_PLANE(frame->buf[i], frame->data[i], plane_size);
988  }
989  } else {
990  int planar = av_sample_fmt_is_planar(frame->format);
991  planes = planar ? avctx->channels : 1;
992 
993  if (planes > FF_ARRAY_ELEMS(frame->buf)) {
994  frame->nb_extended_buf = planes - FF_ARRAY_ELEMS(frame->buf);
995  frame->extended_buf = av_malloc_array(sizeof(*frame->extended_buf),
996  frame->nb_extended_buf);
997  if (!frame->extended_buf) {
998  ret = AVERROR(ENOMEM);
999  goto fail;
1000  }
1001  }
1002 
1003  for (i = 0; i < FFMIN(planes, FF_ARRAY_ELEMS(frame->buf)); i++)
1004  WRAP_PLANE(frame->buf[i], frame->extended_data[i], frame->linesize[0]);
1005 
1006  for (i = 0; i < frame->nb_extended_buf; i++)
1007  WRAP_PLANE(frame->extended_buf[i],
1008  frame->extended_data[i + FF_ARRAY_ELEMS(frame->buf)],
1009  frame->linesize[0]);
1010  }
1011 
1012  av_buffer_unref(&dummy_buf);
1013 
1014 end0:
1015  frame->width = avctx->width;
1016  frame->height = avctx->height;
1017 
1018  return 0;
1019 
1020 fail:
1021  avctx->release_buffer(avctx, frame);
1022  av_freep(&priv);
1023  av_buffer_unref(&dummy_buf);
1024  return ret;
1025  }
1027 #endif
1028 
1029  ret = avctx->get_buffer2(avctx, frame, flags);
1030 
1031 end:
1032  if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions) {
1033  frame->width = avctx->width;
1034  frame->height = avctx->height;
1035  }
1036 
1037  return ret;
1038 }
1039 
1041 {
1042  int ret = get_buffer_internal(avctx, frame, flags);
1043  if (ret < 0)
1044  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1045  return ret;
1046 }
1047 
1049 {
1050  AVFrame *tmp;
1051  int ret;
1052 
1054 
1055  if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1056  av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1057  frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1058  av_frame_unref(frame);
1059  }
1060 
1061  ff_init_buffer_info(avctx, frame);
1062 
1063  if (!frame->data[0])
1064  return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1065 
1066  if (av_frame_is_writable(frame))
1067  return ff_decode_frame_props(avctx, frame);
1068 
1069  tmp = av_frame_alloc();
1070  if (!tmp)
1071  return AVERROR(ENOMEM);
1072 
1073  av_frame_move_ref(tmp, frame);
1074 
1075  ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1076  if (ret < 0) {
1077  av_frame_free(&tmp);
1078  return ret;
1079  }
1080 
1081  av_frame_copy(frame, tmp);
1082  av_frame_free(&tmp);
1083 
1084  return 0;
1085 }
1086 
1088 {
1089  int ret = reget_buffer_internal(avctx, frame);
1090  if (ret < 0)
1091  av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
1092  return ret;
1093 }
1094 
1095 #if FF_API_GET_BUFFER
1097 {
1099 
1100  av_frame_unref(pic);
1101 }
1102 
1104 {
1105  av_assert0(0);
1106  return AVERROR_BUG;
1107 }
1108 #endif
1109 
1110 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
1111 {
1112  int i;
1113 
1114  for (i = 0; i < count; i++) {
1115  int r = func(c, (char *)arg + i * size);
1116  if (ret)
1117  ret[i] = r;
1118  }
1119  return 0;
1120 }
1121 
1122 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
1123 {
1124  int i;
1125 
1126  for (i = 0; i < count; i++) {
1127  int r = func(c, arg, i, 0);
1128  if (ret)
1129  ret[i] = r;
1130  }
1131  return 0;
1132 }
1133 
1135  unsigned int fourcc)
1136 {
1137  while (tags->pix_fmt >= 0) {
1138  if (tags->fourcc == fourcc)
1139  return tags->pix_fmt;
1140  tags++;
1141  }
1142  return AV_PIX_FMT_NONE;
1143 }
1144 
1146 {
1147  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
1148  return desc->flags & AV_PIX_FMT_FLAG_HWACCEL;
1149 }
1150 
1152 {
1153  while (*fmt != AV_PIX_FMT_NONE && is_hwaccel_pix_fmt(*fmt))
1154  ++fmt;
1155  return fmt[0];
1156 }
1157 
1159  enum AVPixelFormat pix_fmt)
1160 {
1161  AVHWAccel *hwaccel = NULL;
1162 
1163  while ((hwaccel = av_hwaccel_next(hwaccel)))
1164  if (hwaccel->id == codec_id
1165  && hwaccel->pix_fmt == pix_fmt)
1166  return hwaccel;
1167  return NULL;
1168 }
1169 
1170 static int setup_hwaccel(AVCodecContext *avctx,
1171  const enum AVPixelFormat fmt,
1172  const char *name)
1173 {
1174  AVHWAccel *hwa = find_hwaccel(avctx->codec_id, fmt);
1175  int ret = 0;
1176 
1177  if (!hwa) {
1178  av_log(avctx, AV_LOG_ERROR,
1179  "Could not find an AVHWAccel for the pixel format: %s",
1180  name);
1181  return AVERROR(ENOENT);
1182  }
1183 
1186  av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1187  hwa->name);
1188  return AVERROR_PATCHWELCOME;
1189  }
1190 
1191  if (hwa->priv_data_size) {
1193  if (!avctx->internal->hwaccel_priv_data)
1194  return AVERROR(ENOMEM);
1195  }
1196 
1197  if (hwa->init) {
1198  ret = hwa->init(avctx);
1199  if (ret < 0) {
1201  return ret;
1202  }
1203  }
1204 
1205  avctx->hwaccel = hwa;
1206 
1207  return 0;
1208 }
1209 
1211 {
1212  const AVPixFmtDescriptor *desc;
1213  enum AVPixelFormat *choices;
1214  enum AVPixelFormat ret;
1215  unsigned n = 0;
1216 
1217  while (fmt[n] != AV_PIX_FMT_NONE)
1218  ++n;
1219 
1220  av_assert0(n >= 1);
1221  avctx->sw_pix_fmt = fmt[n - 1];
1223 
1224  choices = av_malloc_array(n + 1, sizeof(*choices));
1225  if (!choices)
1226  return AV_PIX_FMT_NONE;
1227 
1228  memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1229 
1230  for (;;) {
1231  if (avctx->hwaccel && avctx->hwaccel->uninit)
1232  avctx->hwaccel->uninit(avctx);
1234  avctx->hwaccel = NULL;
1235 
1236  ret = avctx->get_format(avctx, choices);
1237 
1238  desc = av_pix_fmt_desc_get(ret);
1239  if (!desc) {
1240  ret = AV_PIX_FMT_NONE;
1241  break;
1242  }
1243 
1244  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1245  break;
1246 #if FF_API_CAP_VDPAU
1248  break;
1249 #endif
1250 
1251  if (!setup_hwaccel(avctx, ret, desc->name))
1252  break;
1253 
1254  /* Remove failed hwaccel from choices */
1255  for (n = 0; choices[n] != ret; n++)
1256  av_assert0(choices[n] != AV_PIX_FMT_NONE);
1257 
1258  do
1259  choices[n] = choices[n + 1];
1260  while (choices[n++] != AV_PIX_FMT_NONE);
1261  }
1262 
1263  av_freep(&choices);
1264  return ret;
1265 }
1266 
1267 #if FF_API_AVFRAME_LAVC
1269 {
1270 #if LIBAVCODEC_VERSION_MAJOR >= 55
1271  // extended_data should explicitly be freed when needed, this code is unsafe currently
1272  // also this is not compatible to the <55 ABI/API
1273  if (frame->extended_data != frame->data && 0)
1274  av_freep(&frame->extended_data);
1275 #endif
1276 
1277  memset(frame, 0, sizeof(AVFrame));
1278  av_frame_unref(frame);
1279 }
1280 
1282 {
1283  return av_frame_alloc();
1284 }
1285 
1287 {
1288  av_frame_free(frame);
1289 }
1290 #endif
1291 
1292 MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
1293 MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor)
1294 MAKE_ACCESSORS(AVCodecContext, codec, int, lowres)
1295 MAKE_ACCESSORS(AVCodecContext, codec, int, seek_preroll)
1296 MAKE_ACCESSORS(AVCodecContext, codec, uint16_t*, chroma_intra_matrix)
1297 
1298 unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
1299 {
1300  return codec->properties;
1301 }
1302 
1304 {
1305  return codec->max_lowres;
1306 }
1307 
1309 {
1310  memset(sub, 0, sizeof(*sub));
1311  sub->pts = AV_NOPTS_VALUE;
1312 }
1313 
1315 {
1316  int bit_rate;
1317  int bits_per_sample;
1318 
1319  switch (ctx->codec_type) {
1320  case AVMEDIA_TYPE_VIDEO:
1321  case AVMEDIA_TYPE_DATA:
1322  case AVMEDIA_TYPE_SUBTITLE:
1324  bit_rate = ctx->bit_rate;
1325  break;
1326  case AVMEDIA_TYPE_AUDIO:
1327  bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
1328  bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
1329  break;
1330  default:
1331  bit_rate = 0;
1332  break;
1333  }
1334  return bit_rate;
1335 }
1336 
1337 int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1338 {
1339  int ret = 0;
1340 
1342 
1343  ret = avcodec_open2(avctx, codec, options);
1344 
1345  ff_lock_avcodec(avctx, codec);
1346  return ret;
1347 }
1348 
1349 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
1350 {
1351  int ret = 0;
1352  AVDictionary *tmp = NULL;
1353 
1354  if (avcodec_is_open(avctx))
1355  return 0;
1356 
1357  if ((!codec && !avctx->codec)) {
1358  av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
1359  return AVERROR(EINVAL);
1360  }
1361  if ((codec && avctx->codec && codec != avctx->codec)) {
1362  av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
1363  "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
1364  return AVERROR(EINVAL);
1365  }
1366  if (!codec)
1367  codec = avctx->codec;
1368 
1369  if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
1370  return AVERROR(EINVAL);
1371 
1372  if (options)
1373  av_dict_copy(&tmp, *options, 0);
1374 
1375  ret = ff_lock_avcodec(avctx, codec);
1376  if (ret < 0)
1377  return ret;
1378 
1379  avctx->internal = av_mallocz(sizeof(AVCodecInternal));
1380  if (!avctx->internal) {
1381  ret = AVERROR(ENOMEM);
1382  goto end;
1383  }
1384 
1385  avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
1386  if (!avctx->internal->pool) {
1387  ret = AVERROR(ENOMEM);
1388  goto free_and_end;
1389  }
1390 
1391  avctx->internal->to_free = av_frame_alloc();
1392  if (!avctx->internal->to_free) {
1393  ret = AVERROR(ENOMEM);
1394  goto free_and_end;
1395  }
1396 
1397  if (codec->priv_data_size > 0) {
1398  if (!avctx->priv_data) {
1399  avctx->priv_data = av_mallocz(codec->priv_data_size);
1400  if (!avctx->priv_data) {
1401  ret = AVERROR(ENOMEM);
1402  goto end;
1403  }
1404  if (codec->priv_class) {
1405  *(const AVClass **)avctx->priv_data = codec->priv_class;
1407  }
1408  }
1409  if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
1410  goto free_and_end;
1411  } else {
1412  avctx->priv_data = NULL;
1413  }
1414  if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
1415  goto free_and_end;
1416 
1417  if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
1418  av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist\n", codec->name);
1419  ret = AVERROR(EINVAL);
1420  goto free_and_end;
1421  }
1422 
1423  // only call ff_set_dimensions() for non H.264/VP6F codecs so as not to overwrite previously setup dimensions
1424  if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
1425  (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F))) {
1426  if (avctx->coded_width && avctx->coded_height)
1427  ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
1428  else if (avctx->width && avctx->height)
1429  ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
1430  if (ret < 0)
1431  goto free_and_end;
1432  }
1433 
1434  if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
1435  && ( av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
1436  || av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0)) {
1437  av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
1438  ff_set_dimensions(avctx, 0, 0);
1439  }
1440 
1441  if (avctx->width > 0 && avctx->height > 0) {
1442  if (av_image_check_sar(avctx->width, avctx->height,
1443  avctx->sample_aspect_ratio) < 0) {
1444  av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1445  avctx->sample_aspect_ratio.num,
1446  avctx->sample_aspect_ratio.den);
1447  avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
1448  }
1449  }
1450 
1451  /* if the decoder init function was already called previously,
1452  * free the already allocated subtitle_header before overwriting it */
1453  if (av_codec_is_decoder(codec))
1454  av_freep(&avctx->subtitle_header);
1455 
1456  if (avctx->channels > FF_SANE_NB_CHANNELS) {
1457  ret = AVERROR(EINVAL);
1458  goto free_and_end;
1459  }
1460 
1461  avctx->codec = codec;
1462  if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
1463  avctx->codec_id == AV_CODEC_ID_NONE) {
1464  avctx->codec_type = codec->type;
1465  avctx->codec_id = codec->id;
1466  }
1467  if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
1468  && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
1469  av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
1470  ret = AVERROR(EINVAL);
1471  goto free_and_end;
1472  }
1473  avctx->frame_number = 0;
1475 
1476  if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
1478  const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
1479  AVCodec *codec2;
1480  av_log(avctx, AV_LOG_ERROR,
1481  "The %s '%s' is experimental but experimental codecs are not enabled, "
1482  "add '-strict %d' if you want to use it.\n",
1483  codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
1484  codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
1485  if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
1486  av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
1487  codec_string, codec2->name);
1488  ret = AVERROR_EXPERIMENTAL;
1489  goto free_and_end;
1490  }
1491 
1492  if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
1493  (!avctx->time_base.num || !avctx->time_base.den)) {
1494  avctx->time_base.num = 1;
1495  avctx->time_base.den = avctx->sample_rate;
1496  }
1497 
1498  if (!HAVE_THREADS)
1499  av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
1500 
1501  if (CONFIG_FRAME_THREAD_ENCODER) {
1502  ff_unlock_avcodec(); //we will instanciate a few encoders thus kick the counter to prevent false detection of a problem
1503  ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
1504  ff_lock_avcodec(avctx, codec);
1505  if (ret < 0)
1506  goto free_and_end;
1507  }
1508 
1509  if (HAVE_THREADS
1511  ret = ff_thread_init(avctx);
1512  if (ret < 0) {
1513  goto free_and_end;
1514  }
1515  }
1516  if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
1517  avctx->thread_count = 1;
1518 
1519  if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
1520  av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
1521  avctx->codec->max_lowres);
1522  ret = AVERROR(EINVAL);
1523  goto free_and_end;
1524  }
1525 
1526 #if FF_API_VISMV
1527  if (avctx->debug_mv)
1528  av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
1529  "see the codecview filter instead.\n");
1530 #endif
1531 
1532  if (av_codec_is_encoder(avctx->codec)) {
1533  int i;
1534 #if FF_API_CODED_FRAME
1536  avctx->coded_frame = av_frame_alloc();
1537  if (!avctx->coded_frame) {
1538  ret = AVERROR(ENOMEM);
1539  goto free_and_end;
1540  }
1542 #endif
1543  if (avctx->codec->sample_fmts) {
1544  for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
1545  if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
1546  break;
1547  if (avctx->channels == 1 &&
1550  avctx->sample_fmt = avctx->codec->sample_fmts[i];
1551  break;
1552  }
1553  }
1554  if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
1555  char buf[128];
1556  snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
1557  av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
1558  (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
1559  ret = AVERROR(EINVAL);
1560  goto free_and_end;
1561  }
1562  }
1563  if (avctx->codec->pix_fmts) {
1564  for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
1565  if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
1566  break;
1567  if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
1568  && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
1570  char buf[128];
1571  snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
1572  av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
1573  (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
1574  ret = AVERROR(EINVAL);
1575  goto free_and_end;
1576  }
1577  if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
1578  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
1579  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
1580  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
1581  avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
1582  avctx->color_range = AVCOL_RANGE_JPEG;
1583  }
1584  if (avctx->codec->supported_samplerates) {
1585  for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
1586  if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
1587  break;
1588  if (avctx->codec->supported_samplerates[i] == 0) {
1589  av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1590  avctx->sample_rate);
1591  ret = AVERROR(EINVAL);
1592  goto free_and_end;
1593  }
1594  }
1595  if (avctx->sample_rate < 0) {
1596  av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
1597  avctx->sample_rate);
1598  ret = AVERROR(EINVAL);
1599  goto free_and_end;
1600  }
1601  if (avctx->codec->channel_layouts) {
1602  if (!avctx->channel_layout) {
1603  av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
1604  } else {
1605  for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
1606  if (avctx->channel_layout == avctx->codec->channel_layouts[i])
1607  break;
1608  if (avctx->codec->channel_layouts[i] == 0) {
1609  char buf[512];
1610  av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1611  av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
1612  ret = AVERROR(EINVAL);
1613  goto free_and_end;
1614  }
1615  }
1616  }
1617  if (avctx->channel_layout && avctx->channels) {
1618  int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1619  if (channels != avctx->channels) {
1620  char buf[512];
1621  av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1622  av_log(avctx, AV_LOG_ERROR,
1623  "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
1624  buf, channels, avctx->channels);
1625  ret = AVERROR(EINVAL);
1626  goto free_and_end;
1627  }
1628  } else if (avctx->channel_layout) {
1630  }
1631  if (avctx->channels < 0) {
1632  av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
1633  avctx->channels);
1634  ret = AVERROR(EINVAL);
1635  goto free_and_end;
1636  }
1637  if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1638  if (avctx->width <= 0 || avctx->height <= 0) {
1639  av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
1640  ret = AVERROR(EINVAL);
1641  goto free_and_end;
1642  }
1643  }
1644  if ( (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
1645  && avctx->bit_rate>0 && avctx->bit_rate<1000) {
1646  av_log(avctx, AV_LOG_WARNING, "Bitrate %d is extremely low, maybe you mean %dk\n", avctx->bit_rate, avctx->bit_rate);
1647  }
1648 
1649  if (!avctx->rc_initial_buffer_occupancy)
1650  avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
1651  }
1652 
1654  avctx->pts_correction_num_faulty_dts = 0;
1655  avctx->pts_correction_last_pts =
1656  avctx->pts_correction_last_dts = INT64_MIN;
1657 
1658  if ( !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
1660  av_log(avctx, AV_LOG_WARNING,
1661  "gray decoding requested but not enabled at configuration time\n");
1662 
1663  if ( avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
1664  || avctx->internal->frame_thread_encoder)) {
1665  ret = avctx->codec->init(avctx);
1666  if (ret < 0) {
1667  goto free_and_end;
1668  }
1669  }
1670 
1671  ret=0;
1672 
1673 #if FF_API_AUDIOENC_DELAY
1674  if (av_codec_is_encoder(avctx->codec))
1675  avctx->delay = avctx->initial_padding;
1676 #endif
1677 
1678  if (av_codec_is_decoder(avctx->codec)) {
1679  if (!avctx->bit_rate)
1680  avctx->bit_rate = get_bit_rate(avctx);
1681  /* validate channel layout from the decoder */
1682  if (avctx->channel_layout) {
1683  int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
1684  if (!avctx->channels)
1685  avctx->channels = channels;
1686  else if (channels != avctx->channels) {
1687  char buf[512];
1688  av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
1689  av_log(avctx, AV_LOG_WARNING,
1690  "Channel layout '%s' with %d channels does not match specified number of channels %d: "
1691  "ignoring specified channel layout\n",
1692  buf, channels, avctx->channels);
1693  avctx->channel_layout = 0;
1694  }
1695  }
1696  if (avctx->channels && avctx->channels < 0 ||
1697  avctx->channels > FF_SANE_NB_CHANNELS) {
1698  ret = AVERROR(EINVAL);
1699  goto free_and_end;
1700  }
1701  if (avctx->sub_charenc) {
1702  if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
1703  av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
1704  "supported with subtitles codecs\n");
1705  ret = AVERROR(EINVAL);
1706  goto free_and_end;
1707  } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
1708  av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
1709  "subtitles character encoding will be ignored\n",
1710  avctx->codec_descriptor->name);
1712  } else {
1713  /* input character encoding is set for a text based subtitle
1714  * codec at this point */
1717 
1719 #if CONFIG_ICONV
1720  iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
1721  if (cd == (iconv_t)-1) {
1722  ret = AVERROR(errno);
1723  av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
1724  "with input character encoding \"%s\"\n", avctx->sub_charenc);
1725  goto free_and_end;
1726  }
1727  iconv_close(cd);
1728 #else
1729  av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
1730  "conversion needs a libavcodec built with iconv support "
1731  "for this codec\n");
1732  ret = AVERROR(ENOSYS);
1733  goto free_and_end;
1734 #endif
1735  }
1736  }
1737  }
1738 
1739 #if FF_API_AVCTX_TIMEBASE
1740  if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1741  avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
1742 #endif
1743  }
1744  if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
1745  av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
1746  }
1747 
1748 end:
1750  if (options) {
1752  *options = tmp;
1753  }
1754 
1755  return ret;
1756 free_and_end:
1757  if (avctx->codec &&
1758  (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
1759  avctx->codec->close(avctx);
1760 
1761  if (codec->priv_class && codec->priv_data_size)
1762  av_opt_free(avctx->priv_data);
1763  av_opt_free(avctx);
1764 
1765 #if FF_API_CODED_FRAME
1767  av_frame_free(&avctx->coded_frame);
1769 #endif
1770 
1771  av_dict_free(&tmp);
1772  av_freep(&avctx->priv_data);
1773  if (avctx->internal) {
1774  av_frame_free(&avctx->internal->to_free);
1775  av_freep(&avctx->internal->pool);
1776  }
1777  av_freep(&avctx->internal);
1778  avctx->codec = NULL;
1779  goto end;
1780 }
1781 
1782 int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
1783 {
1784  if (avpkt->size < 0) {
1785  av_log(avctx, AV_LOG_ERROR, "Invalid negative user packet size %d\n", avpkt->size);
1786  return AVERROR(EINVAL);
1787  }
1789  av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
1790  size, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
1791  return AVERROR(EINVAL);
1792  }
1793 
1794  if (avctx && 2*min_size < size) { // FIXME The factor needs to be finetuned
1795  av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
1796  if (!avpkt->data || avpkt->size < size) {
1798  avpkt->data = avctx->internal->byte_buffer;
1799  avpkt->size = avctx->internal->byte_buffer_size;
1800 #if FF_API_DESTRUCT_PACKET
1802  avpkt->destruct = NULL;
1804 #endif
1805  }
1806  }
1807 
1808  if (avpkt->data) {
1809  AVBufferRef *buf = avpkt->buf;
1810 #if FF_API_DESTRUCT_PACKET
1812  void *destruct = avpkt->destruct;
1814 #endif
1815 
1816  if (avpkt->size < size) {
1817  av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %"PRId64")\n", avpkt->size, size);
1818  return AVERROR(EINVAL);
1819  }
1820 
1821  av_init_packet(avpkt);
1822 #if FF_API_DESTRUCT_PACKET
1824  avpkt->destruct = destruct;
1826 #endif
1827  avpkt->buf = buf;
1828  avpkt->size = size;
1829  return 0;
1830  } else {
1831  int ret = av_new_packet(avpkt, size);
1832  if (ret < 0)
1833  av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
1834  return ret;
1835  }
1836 }
1837 
1839 {
1840  return ff_alloc_packet2(NULL, avpkt, size, 0);
1841 }
1842 
1843 /**
1844  * Pad last frame with silence.
1845  */
1846 static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
1847 {
1848  AVFrame *frame = NULL;
1849  int ret;
1850 
1851  if (!(frame = av_frame_alloc()))
1852  return AVERROR(ENOMEM);
1853 
1854  frame->format = src->format;
1855  frame->channel_layout = src->channel_layout;
1857  frame->nb_samples = s->frame_size;
1858  ret = av_frame_get_buffer(frame, 32);
1859  if (ret < 0)
1860  goto fail;
1861 
1862  ret = av_frame_copy_props(frame, src);
1863  if (ret < 0)
1864  goto fail;
1865 
1866  if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
1867  src->nb_samples, s->channels, s->sample_fmt)) < 0)
1868  goto fail;
1869  if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
1870  frame->nb_samples - src->nb_samples,
1871  s->channels, s->sample_fmt)) < 0)
1872  goto fail;
1873 
1874  *dst = frame;
1875 
1876  return 0;
1877 
1878 fail:
1879  av_frame_free(&frame);
1880  return ret;
1881 }
1882 
1883 int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
1884  AVPacket *avpkt,
1885  const AVFrame *frame,
1886  int *got_packet_ptr)
1887 {
1888  AVFrame *extended_frame = NULL;
1889  AVFrame *padded_frame = NULL;
1890  int ret;
1891  AVPacket user_pkt = *avpkt;
1892  int needs_realloc = !user_pkt.data;
1893 
1894  *got_packet_ptr = 0;
1895 
1896  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
1897  av_free_packet(avpkt);
1898  av_init_packet(avpkt);
1899  return 0;
1900  }
1901 
1902  /* ensure that extended_data is properly set */
1903  if (frame && !frame->extended_data) {
1904  if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
1905  avctx->channels > AV_NUM_DATA_POINTERS) {
1906  av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
1907  "with more than %d channels, but extended_data is not set.\n",
1909  return AVERROR(EINVAL);
1910  }
1911  av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
1912 
1913  extended_frame = av_frame_alloc();
1914  if (!extended_frame)
1915  return AVERROR(ENOMEM);
1916 
1917  memcpy(extended_frame, frame, sizeof(AVFrame));
1918  extended_frame->extended_data = extended_frame->data;
1919  frame = extended_frame;
1920  }
1921 
1922  /* extract audio service type metadata */
1923  if (frame) {
1925  if (sd && sd->size >= sizeof(enum AVAudioServiceType))
1926  avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
1927  }
1928 
1929  /* check for valid frame size */
1930  if (frame) {
1932  if (frame->nb_samples > avctx->frame_size) {
1933  av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
1934  ret = AVERROR(EINVAL);
1935  goto end;
1936  }
1937  } else if (!(avctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)) {
1938  if (frame->nb_samples < avctx->frame_size &&
1939  !avctx->internal->last_audio_frame) {
1940  ret = pad_last_frame(avctx, &padded_frame, frame);
1941  if (ret < 0)
1942  goto end;
1943 
1944  frame = padded_frame;
1945  avctx->internal->last_audio_frame = 1;
1946  }
1947 
1948  if (frame->nb_samples != avctx->frame_size) {
1949  av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
1950  ret = AVERROR(EINVAL);
1951  goto end;
1952  }
1953  }
1954  }
1955 
1956  av_assert0(avctx->codec->encode2);
1957 
1958  ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
1959  if (!ret) {
1960  if (*got_packet_ptr) {
1961  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
1962  if (avpkt->pts == AV_NOPTS_VALUE)
1963  avpkt->pts = frame->pts;
1964  if (!avpkt->duration)
1965  avpkt->duration = ff_samples_to_time_base(avctx,
1966  frame->nb_samples);
1967  }
1968  avpkt->dts = avpkt->pts;
1969  } else {
1970  avpkt->size = 0;
1971  }
1972  }
1973  if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
1974  needs_realloc = 0;
1975  if (user_pkt.data) {
1976  if (user_pkt.size >= avpkt->size) {
1977  memcpy(user_pkt.data, avpkt->data, avpkt->size);
1978  } else {
1979  av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
1980  avpkt->size = user_pkt.size;
1981  ret = -1;
1982  }
1983  avpkt->buf = user_pkt.buf;
1984  avpkt->data = user_pkt.data;
1985 #if FF_API_DESTRUCT_PACKET
1987  avpkt->destruct = user_pkt.destruct;
1989 #endif
1990  } else {
1991  if (av_dup_packet(avpkt) < 0) {
1992  ret = AVERROR(ENOMEM);
1993  }
1994  }
1995  }
1996 
1997  if (!ret) {
1998  if (needs_realloc && avpkt->data) {
1999  ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
2000  if (ret >= 0)
2001  avpkt->data = avpkt->buf->data;
2002  }
2003 
2004  avctx->frame_number++;
2005  }
2006 
2007  if (ret < 0 || !*got_packet_ptr) {
2008  av_free_packet(avpkt);
2009  av_init_packet(avpkt);
2010  goto end;
2011  }
2012 
2013  /* NOTE: if we add any audio encoders which output non-keyframe packets,
2014  * this needs to be moved to the encoders, but for now we can do it
2015  * here to simplify things */
2016  avpkt->flags |= AV_PKT_FLAG_KEY;
2017 
2018 end:
2019  av_frame_free(&padded_frame);
2020  av_free(extended_frame);
2021 
2022 #if FF_API_AUDIOENC_DELAY
2023  avctx->delay = avctx->initial_padding;
2024 #endif
2025 
2026  return ret;
2027 }
2028 
2029 #if FF_API_OLD_ENCODE_AUDIO
2030 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
2031  uint8_t *buf, int buf_size,
2032  const short *samples)
2033 {
2034  AVPacket pkt;
2035  AVFrame *frame;
2036  int ret, samples_size, got_packet;
2037 
2038  av_init_packet(&pkt);
2039  pkt.data = buf;
2040  pkt.size = buf_size;
2041 
2042  if (samples) {
2043  frame = av_frame_alloc();
2044  if (!frame)
2045  return AVERROR(ENOMEM);
2046 
2047  if (avctx->frame_size) {
2048  frame->nb_samples = avctx->frame_size;
2049  } else {
2050  /* if frame_size is not set, the number of samples must be
2051  * calculated from the buffer size */
2052  int64_t nb_samples;
2053  if (!av_get_bits_per_sample(avctx->codec_id)) {
2054  av_log(avctx, AV_LOG_ERROR, "avcodec_encode_audio() does not "
2055  "support this codec\n");
2056  av_frame_free(&frame);
2057  return AVERROR(EINVAL);
2058  }
2059  nb_samples = (int64_t)buf_size * 8 /
2060  (av_get_bits_per_sample(avctx->codec_id) *
2061  avctx->channels);
2062  if (nb_samples >= INT_MAX) {
2063  av_frame_free(&frame);
2064  return AVERROR(EINVAL);
2065  }
2066  frame->nb_samples = nb_samples;
2067  }
2068 
2069  /* it is assumed that the samples buffer is large enough based on the
2070  * relevant parameters */
2071  samples_size = av_samples_get_buffer_size(NULL, avctx->channels,
2072  frame->nb_samples,
2073  avctx->sample_fmt, 1);
2074  if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
2075  avctx->sample_fmt,
2076  (const uint8_t *)samples,
2077  samples_size, 1)) < 0) {
2078  av_frame_free(&frame);
2079  return ret;
2080  }
2081 
2082  /* fabricate frame pts from sample count.
2083  * this is needed because the avcodec_encode_audio() API does not have
2084  * a way for the user to provide pts */
2085  if (avctx->sample_rate && avctx->time_base.num)
2086  frame->pts = ff_samples_to_time_base(avctx,
2087  avctx->internal->sample_count);
2088  else
2089  frame->pts = AV_NOPTS_VALUE;
2090  avctx->internal->sample_count += frame->nb_samples;
2091  } else {
2092  frame = NULL;
2093  }
2094 
2095  got_packet = 0;
2096  ret = avcodec_encode_audio2(avctx, &pkt, frame, &got_packet);
2097 #if FF_API_CODED_FRAME
2099  if (!ret && got_packet && avctx->coded_frame) {
2100  avctx->coded_frame->pts = pkt.pts;
2101  avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
2102  }
2104 #endif
2105 
2106  /* free any side data since we cannot return it */
2108 
2109  if (frame && frame->extended_data != frame->data)
2110  av_freep(&frame->extended_data);
2111 
2112  av_frame_free(&frame);
2113  return ret ? ret : pkt.size;
2114 }
2115 
2116 #endif
2117 
2118 #if FF_API_OLD_ENCODE_VIDEO
2119 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
2120  const AVFrame *pict)
2121 {
2122  AVPacket pkt;
2123  int ret, got_packet = 0;
2124 
2125  if (buf_size < AV_INPUT_BUFFER_MIN_SIZE) {
2126  av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
2127  return -1;
2128  }
2129 
2130  av_init_packet(&pkt);
2131  pkt.data = buf;
2132  pkt.size = buf_size;
2133 
2134  ret = avcodec_encode_video2(avctx, &pkt, pict, &got_packet);
2135 #if FF_API_CODED_FRAME
2137  if (!ret && got_packet && avctx->coded_frame) {
2138  avctx->coded_frame->pts = pkt.pts;
2139  avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
2142  }
2144 #endif
2145 
2146  /* free any side data since we cannot return it */
2147  if (pkt.side_data_elems > 0) {
2148  int i;
2149  for (i = 0; i < pkt.side_data_elems; i++)
2150  av_free(pkt.side_data[i].data);
2151  av_freep(&pkt.side_data);
2152  pkt.side_data_elems = 0;
2153  }
2154 
2155  return ret ? ret : pkt.size;
2156 }
2157 
2158 #endif
2159 
2160 int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
2161  AVPacket *avpkt,
2162  const AVFrame *frame,
2163  int *got_packet_ptr)
2164 {
2165  int ret;
2166  AVPacket user_pkt = *avpkt;
2167  int needs_realloc = !user_pkt.data;
2168 
2169  *got_packet_ptr = 0;
2170 
2171  if(CONFIG_FRAME_THREAD_ENCODER &&
2173  return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
2174 
2175  if ((avctx->flags&AV_CODEC_FLAG_PASS1) && avctx->stats_out)
2176  avctx->stats_out[0] = '\0';
2177 
2178  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
2179  av_free_packet(avpkt);
2180  av_init_packet(avpkt);
2181  avpkt->size = 0;
2182  return 0;
2183  }
2184 
2185  if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
2186  return AVERROR(EINVAL);
2187 
2188  if (frame && frame->format == AV_PIX_FMT_NONE)
2189  av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
2190  if (frame && (frame->width == 0 || frame->height == 0))
2191  av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
2192 
2193  av_assert0(avctx->codec->encode2);
2194 
2195  ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
2196  av_assert0(ret <= 0);
2197 
2198  if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
2199  needs_realloc = 0;
2200  if (user_pkt.data) {
2201  if (user_pkt.size >= avpkt->size) {
2202  memcpy(user_pkt.data, avpkt->data, avpkt->size);
2203  } else {
2204  av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
2205  avpkt->size = user_pkt.size;
2206  ret = -1;
2207  }
2208  avpkt->buf = user_pkt.buf;
2209  avpkt->data = user_pkt.data;
2210 #if FF_API_DESTRUCT_PACKET
2212  avpkt->destruct = user_pkt.destruct;
2214 #endif
2215  } else {
2216  if (av_dup_packet(avpkt) < 0) {
2217  ret = AVERROR(ENOMEM);
2218  }
2219  }
2220  }
2221 
2222  if (!ret) {
2223  if (!*got_packet_ptr)
2224  avpkt->size = 0;
2225  else if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
2226  avpkt->pts = avpkt->dts = frame->pts;
2227 
2228  if (needs_realloc && avpkt->data) {
2229  ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
2230  if (ret >= 0)
2231  avpkt->data = avpkt->buf->data;
2232  }
2233 
2234  avctx->frame_number++;
2235  }
2236 
2237  if (ret < 0 || !*got_packet_ptr)
2238  av_free_packet(avpkt);
2239 
2240  emms_c();
2241  return ret;
2242 }
2243 
2245  const AVSubtitle *sub)
2246 {
2247  int ret;
2248  if (sub->start_display_time) {
2249  av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
2250  return -1;
2251  }
2252 
2253  ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
2254  avctx->frame_number++;
2255  return ret;
2256 }
2257 
2258 /**
2259  * Attempt to guess proper monotonic timestamps for decoded video frames
2260  * which might have incorrect times. Input timestamps may wrap around, in
2261  * which case the output will as well.
2262  *
2263  * @param pts the pts field of the decoded AVPacket, as passed through
2264  * AVFrame.pkt_pts
2265  * @param dts the dts field of the decoded AVPacket
2266  * @return one of the input values, may be AV_NOPTS_VALUE
2267  */
2268 static int64_t guess_correct_pts(AVCodecContext *ctx,
2269  int64_t reordered_pts, int64_t dts)
2270 {
2271  int64_t pts = AV_NOPTS_VALUE;
2272 
2273  if (dts != AV_NOPTS_VALUE) {
2275  ctx->pts_correction_last_dts = dts;
2276  } else if (reordered_pts != AV_NOPTS_VALUE)
2277  ctx->pts_correction_last_dts = reordered_pts;
2278 
2279  if (reordered_pts != AV_NOPTS_VALUE) {
2280  ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
2281  ctx->pts_correction_last_pts = reordered_pts;
2282  } else if(dts != AV_NOPTS_VALUE)
2283  ctx->pts_correction_last_pts = dts;
2284 
2286  && reordered_pts != AV_NOPTS_VALUE)
2287  pts = reordered_pts;
2288  else
2289  pts = dts;
2290 
2291  return pts;
2292 }
2293 
2294 static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
2295 {
2296  int size = 0, ret;
2297  const uint8_t *data;
2298  uint32_t flags;
2299  int64_t val;
2300 
2301  data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
2302  if (!data)
2303  return 0;
2304 
2305  if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
2306  av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
2307  "changes, but PARAM_CHANGE side data was sent to it.\n");
2308  return AVERROR(EINVAL);
2309  }
2310 
2311  if (size < 4)
2312  goto fail;
2313 
2314  flags = bytestream_get_le32(&data);
2315  size -= 4;
2316 
2318  if (size < 4)
2319  goto fail;
2320  val = bytestream_get_le32(&data);
2321  if (val <= 0 || val > INT_MAX) {
2322  av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
2323  return AVERROR_INVALIDDATA;
2324  }
2325  avctx->channels = val;
2326  size -= 4;
2327  }
2329  if (size < 8)
2330  goto fail;
2331  avctx->channel_layout = bytestream_get_le64(&data);
2332  size -= 8;
2333  }
2335  if (size < 4)
2336  goto fail;
2337  val = bytestream_get_le32(&data);
2338  if (val <= 0 || val > INT_MAX) {
2339  av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
2340  return AVERROR_INVALIDDATA;
2341  }
2342  avctx->sample_rate = val;
2343  size -= 4;
2344  }
2346  if (size < 8)
2347  goto fail;
2348  avctx->width = bytestream_get_le32(&data);
2349  avctx->height = bytestream_get_le32(&data);
2350  size -= 8;
2351  ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
2352  if (ret < 0)
2353  return ret;
2354  }
2355 
2356  return 0;
2357 fail:
2358  av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
2359  return AVERROR_INVALIDDATA;
2360 }
2361 
2363 {
2364  int ret;
2365 
2366  /* move the original frame to our backup */
2367  av_frame_unref(avci->to_free);
2368  av_frame_move_ref(avci->to_free, frame);
2369 
2370  /* now copy everything except the AVBufferRefs back
2371  * note that we make a COPY of the side data, so calling av_frame_free() on
2372  * the caller's frame will work properly */
2373  ret = av_frame_copy_props(frame, avci->to_free);
2374  if (ret < 0)
2375  return ret;
2376 
2377  memcpy(frame->data, avci->to_free->data, sizeof(frame->data));
2378  memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
2379  if (avci->to_free->extended_data != avci->to_free->data) {
2380  int planes = av_frame_get_channels(avci->to_free);
2381  int size = planes * sizeof(*frame->extended_data);
2382 
2383  if (!size) {
2384  av_frame_unref(frame);
2385  return AVERROR_BUG;
2386  }
2387 
2388  frame->extended_data = av_malloc(size);
2389  if (!frame->extended_data) {
2390  av_frame_unref(frame);
2391  return AVERROR(ENOMEM);
2392  }
2393  memcpy(frame->extended_data, avci->to_free->extended_data,
2394  size);
2395  } else
2396  frame->extended_data = frame->data;
2397 
2398  frame->format = avci->to_free->format;
2399  frame->width = avci->to_free->width;
2400  frame->height = avci->to_free->height;
2401  frame->channel_layout = avci->to_free->channel_layout;
2402  frame->nb_samples = avci->to_free->nb_samples;
2404 
2405  return 0;
2406 }
2407 
2408 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
2409  int *got_picture_ptr,
2410  const AVPacket *avpkt)
2411 {
2412  AVCodecInternal *avci = avctx->internal;
2413  int ret;
2414  // copy to ensure we do not change avpkt
2415  AVPacket tmp = *avpkt;
2416 
2417  if (!avctx->codec)
2418  return AVERROR(EINVAL);
2419  if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
2420  av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
2421  return AVERROR(EINVAL);
2422  }
2423 
2424  *got_picture_ptr = 0;
2425  if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
2426  return AVERROR(EINVAL);
2427 
2428  av_frame_unref(picture);
2429 
2430  if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size ||
2431  (avctx->active_thread_type & FF_THREAD_FRAME)) {
2432  int did_split = av_packet_split_side_data(&tmp);
2433  ret = apply_param_change(avctx, &tmp);
2434  if (ret < 0) {
2435  av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2436  if (avctx->err_recognition & AV_EF_EXPLODE)
2437  goto fail;
2438  }
2439 
2440  avctx->internal->pkt = &tmp;
2441  if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2442  ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
2443  &tmp);
2444  else {
2445  ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
2446  &tmp);
2447  picture->pkt_dts = avpkt->dts;
2448 
2449  if(!avctx->has_b_frames){
2450  av_frame_set_pkt_pos(picture, avpkt->pos);
2451  }
2452  //FIXME these should be under if(!avctx->has_b_frames)
2453  /* get_buffer is supposed to set frame parameters */
2454  if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
2455  if (!picture->sample_aspect_ratio.num) picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
2456  if (!picture->width) picture->width = avctx->width;
2457  if (!picture->height) picture->height = avctx->height;
2458  if (picture->format == AV_PIX_FMT_NONE) picture->format = avctx->pix_fmt;
2459  }
2460  }
2461 
2462 fail:
2463  emms_c(); //needed to avoid an emms_c() call before every return;
2464 
2465  avctx->internal->pkt = NULL;
2466  if (did_split) {
2468  if(ret == tmp.size)
2469  ret = avpkt->size;
2470  }
2471 
2472  if (*got_picture_ptr) {
2473  if (!avctx->refcounted_frames) {
2474  int err = unrefcount_frame(avci, picture);
2475  if (err < 0)
2476  return err;
2477  }
2478 
2479  avctx->frame_number++;
2481  guess_correct_pts(avctx,
2482  picture->pkt_pts,
2483  picture->pkt_dts));
2484  } else
2485  av_frame_unref(picture);
2486  } else
2487  ret = 0;
2488 
2489  /* many decoders assign whole AVFrames, thus overwriting extended_data;
2490  * make sure it's set correctly */
2491  av_assert0(!picture->extended_data || picture->extended_data == picture->data);
2492 
2493 #if FF_API_AVCTX_TIMEBASE
2494  if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
2495  avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
2496 #endif
2497 
2498  return ret;
2499 }
2500 
2501 #if FF_API_OLD_DECODE_AUDIO
2502 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
2503  int *frame_size_ptr,
2504  AVPacket *avpkt)
2505 {
2507  int ret, got_frame = 0;
2508 
2509  if (!frame)
2510  return AVERROR(ENOMEM);
2511 #if FF_API_GET_BUFFER
2513  if (avctx->get_buffer != avcodec_default_get_buffer) {
2514  av_log(avctx, AV_LOG_ERROR, "Custom get_buffer() for use with"
2515  "avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer\n");
2516  av_log(avctx, AV_LOG_ERROR, "Please port your application to "
2517  "avcodec_decode_audio4()\n");
2520  }
2522 #endif
2523 
2524  ret = avcodec_decode_audio4(avctx, frame, &got_frame, avpkt);
2525 
2526  if (ret >= 0 && got_frame) {
2527  int ch, plane_size;
2528  int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
2529  int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
2530  frame->nb_samples,
2531  avctx->sample_fmt, 1);
2532  if (*frame_size_ptr < data_size) {
2533  av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
2534  "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
2535  av_frame_free(&frame);
2536  return AVERROR(EINVAL);
2537  }
2538 
2539  memcpy(samples, frame->extended_data[0], plane_size);
2540 
2541  if (planar && avctx->channels > 1) {
2542  uint8_t *out = ((uint8_t *)samples) + plane_size;
2543  for (ch = 1; ch < avctx->channels; ch++) {
2544  memcpy(out, frame->extended_data[ch], plane_size);
2545  out += plane_size;
2546  }
2547  }
2548  *frame_size_ptr = data_size;
2549  } else {
2550  *frame_size_ptr = 0;
2551  }
2552  av_frame_free(&frame);
2553  return ret;
2554 }
2555 
2556 #endif
2557 
2558 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
2559  AVFrame *frame,
2560  int *got_frame_ptr,
2561  const AVPacket *avpkt)
2562 {
2563  AVCodecInternal *avci = avctx->internal;
2564  int ret = 0;
2565 
2566  *got_frame_ptr = 0;
2567 
2568  if (!avpkt->data && avpkt->size) {
2569  av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2570  return AVERROR(EINVAL);
2571  }
2572  if (!avctx->codec)
2573  return AVERROR(EINVAL);
2574  if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
2575  av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
2576  return AVERROR(EINVAL);
2577  }
2578 
2579  av_frame_unref(frame);
2580 
2581  if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
2582  uint8_t *side;
2583  int side_size;
2584  uint32_t discard_padding = 0;
2585  uint8_t skip_reason = 0;
2586  uint8_t discard_reason = 0;
2587  // copy to ensure we do not change avpkt
2588  AVPacket tmp = *avpkt;
2589  int did_split = av_packet_split_side_data(&tmp);
2590  ret = apply_param_change(avctx, &tmp);
2591  if (ret < 0) {
2592  av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
2593  if (avctx->err_recognition & AV_EF_EXPLODE)
2594  goto fail;
2595  }
2596 
2597  avctx->internal->pkt = &tmp;
2598  if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
2599  ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
2600  else {
2601  ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
2602  av_assert0(ret <= tmp.size);
2603  frame->pkt_dts = avpkt->dts;
2604  }
2605  if (ret >= 0 && *got_frame_ptr) {
2606  avctx->frame_number++;
2608  guess_correct_pts(avctx,
2609  frame->pkt_pts,
2610  frame->pkt_dts));
2611  if (frame->format == AV_SAMPLE_FMT_NONE)
2612  frame->format = avctx->sample_fmt;
2613  if (!frame->channel_layout)
2614  frame->channel_layout = avctx->channel_layout;
2615  if (!av_frame_get_channels(frame))
2616  av_frame_set_channels(frame, avctx->channels);
2617  if (!frame->sample_rate)
2618  frame->sample_rate = avctx->sample_rate;
2619  }
2620 
2621  side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
2622  if(side && side_size>=10) {
2623  avctx->internal->skip_samples = AV_RL32(side);
2624  discard_padding = AV_RL32(side + 4);
2625  av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
2626  avctx->internal->skip_samples, (int)discard_padding);
2627  skip_reason = AV_RL8(side + 8);
2628  discard_reason = AV_RL8(side + 9);
2629  }
2630  if (avctx->internal->skip_samples && *got_frame_ptr &&
2631  !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2632  if(frame->nb_samples <= avctx->internal->skip_samples){
2633  *got_frame_ptr = 0;
2634  avctx->internal->skip_samples -= frame->nb_samples;
2635  av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
2636  avctx->internal->skip_samples);
2637  } else {
2639  frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
2640  if(avctx->pkt_timebase.num && avctx->sample_rate) {
2641  int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
2642  (AVRational){1, avctx->sample_rate},
2643  avctx->pkt_timebase);
2644  if(frame->pkt_pts!=AV_NOPTS_VALUE)
2645  frame->pkt_pts += diff_ts;
2646  if(frame->pkt_dts!=AV_NOPTS_VALUE)
2647  frame->pkt_dts += diff_ts;
2648  if (av_frame_get_pkt_duration(frame) >= diff_ts)
2649  av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2650  } else {
2651  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
2652  }
2653  av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
2654  avctx->internal->skip_samples, frame->nb_samples);
2655  frame->nb_samples -= avctx->internal->skip_samples;
2656  avctx->internal->skip_samples = 0;
2657  }
2658  }
2659 
2660  if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
2661  !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
2662  if (discard_padding == frame->nb_samples) {
2663  *got_frame_ptr = 0;
2664  } else {
2665  if(avctx->pkt_timebase.num && avctx->sample_rate) {
2666  int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
2667  (AVRational){1, avctx->sample_rate},
2668  avctx->pkt_timebase);
2669  if (av_frame_get_pkt_duration(frame) >= diff_ts)
2670  av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
2671  } else {
2672  av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
2673  }
2674  av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
2675  (int)discard_padding, frame->nb_samples);
2676  frame->nb_samples -= discard_padding;
2677  }
2678  }
2679 
2680  if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
2682  if (fside) {
2683  AV_WL32(fside->data, avctx->internal->skip_samples);
2684  AV_WL32(fside->data + 4, discard_padding);
2685  AV_WL8(fside->data + 8, skip_reason);
2686  AV_WL8(fside->data + 9, discard_reason);
2687  avctx->internal->skip_samples = 0;
2688  }
2689  }
2690 fail:
2691  avctx->internal->pkt = NULL;
2692  if (did_split) {
2694  if(ret == tmp.size)
2695  ret = avpkt->size;
2696  }
2697 
2698  if (ret >= 0 && *got_frame_ptr) {
2699  if (!avctx->refcounted_frames) {
2700  int err = unrefcount_frame(avci, frame);
2701  if (err < 0)
2702  return err;
2703  }
2704  } else
2706  }
2707 
2708  return ret;
2709 }
2710 
2711 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
2713  AVPacket *outpkt, const AVPacket *inpkt)
2714 {
2715 #if CONFIG_ICONV
2716  iconv_t cd = (iconv_t)-1;
2717  int ret = 0;
2718  char *inb, *outb;
2719  size_t inl, outl;
2720  AVPacket tmp;
2721 #endif
2722 
2723  if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
2724  return 0;
2725 
2726 #if CONFIG_ICONV
2727  cd = iconv_open("UTF-8", avctx->sub_charenc);
2728  av_assert0(cd != (iconv_t)-1);
2729 
2730  inb = inpkt->data;
2731  inl = inpkt->size;
2732 
2733  if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
2734  av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
2735  ret = AVERROR(ENOMEM);
2736  goto end;
2737  }
2738 
2739  ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
2740  if (ret < 0)
2741  goto end;
2742  outpkt->buf = tmp.buf;
2743  outpkt->data = tmp.data;
2744  outpkt->size = tmp.size;
2745  outb = outpkt->data;
2746  outl = outpkt->size;
2747 
2748  if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
2749  iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
2750  outl >= outpkt->size || inl != 0) {
2751  ret = FFMIN(AVERROR(errno), -1);
2752  av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
2753  "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
2754  av_free_packet(&tmp);
2755  goto end;
2756  }
2757  outpkt->size -= outl;
2758  memset(outpkt->data + outpkt->size, 0, outl);
2759 
2760 end:
2761  if (cd != (iconv_t)-1)
2762  iconv_close(cd);
2763  return ret;
2764 #else
2765  av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
2766  return AVERROR(EINVAL);
2767 #endif
2768 }
2769 
2770 static int utf8_check(const uint8_t *str)
2771 {
2772  const uint8_t *byte;
2773  uint32_t codepoint, min;
2774 
2775  while (*str) {
2776  byte = str;
2777  GET_UTF8(codepoint, *(byte++), return 0;);
2778  min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
2779  1 << (5 * (byte - str) - 4);
2780  if (codepoint < min || codepoint >= 0x110000 ||
2781  codepoint == 0xFFFE /* BOM */ ||
2782  codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
2783  return 0;
2784  str = byte;
2785  }
2786  return 1;
2787 }
2788 
2790  int *got_sub_ptr,
2791  AVPacket *avpkt)
2792 {
2793  int i, ret = 0;
2794 
2795  if (!avpkt->data && avpkt->size) {
2796  av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
2797  return AVERROR(EINVAL);
2798  }
2799  if (!avctx->codec)
2800  return AVERROR(EINVAL);
2801  if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
2802  av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
2803  return AVERROR(EINVAL);
2804  }
2805 
2806  *got_sub_ptr = 0;
2807  get_subtitle_defaults(sub);
2808 
2809  if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
2810  AVPacket pkt_recoded;
2811  AVPacket tmp = *avpkt;
2812  int did_split = av_packet_split_side_data(&tmp);
2813  //apply_param_change(avctx, &tmp);
2814 
2815  if (did_split) {
2816  /* FFMIN() prevents overflow in case the packet wasn't allocated with
2817  * proper padding.
2818  * If the side data is smaller than the buffer padding size, the
2819  * remaining bytes should have already been filled with zeros by the
2820  * original packet allocation anyway. */
2821  memset(tmp.data + tmp.size, 0,
2822  FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
2823  }
2824 
2825  pkt_recoded = tmp;
2826  ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
2827  if (ret < 0) {
2828  *got_sub_ptr = 0;
2829  } else {
2830  avctx->internal->pkt = &pkt_recoded;
2831 
2832  if (avctx->pkt_timebase.den && avpkt->pts != AV_NOPTS_VALUE)
2833  sub->pts = av_rescale_q(avpkt->pts,
2834  avctx->pkt_timebase, AV_TIME_BASE_Q);
2835  ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
2836  av_assert1((ret >= 0) >= !!*got_sub_ptr &&
2837  !!*got_sub_ptr >= !!sub->num_rects);
2838 
2839  if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
2840  avctx->pkt_timebase.num) {
2841  AVRational ms = { 1, 1000 };
2842  sub->end_display_time = av_rescale_q(avpkt->duration,
2843  avctx->pkt_timebase, ms);
2844  }
2845 
2846  for (i = 0; i < sub->num_rects; i++) {
2847  if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
2848  av_log(avctx, AV_LOG_ERROR,
2849  "Invalid UTF-8 in decoded subtitles text; "
2850  "maybe missing -sub_charenc option\n");
2851  avsubtitle_free(sub);
2852  return AVERROR_INVALIDDATA;
2853  }
2854  }
2855 
2856  if (tmp.data != pkt_recoded.data) { // did we recode?
2857  /* prevent from destroying side data from original packet */
2858  pkt_recoded.side_data = NULL;
2859  pkt_recoded.side_data_elems = 0;
2860 
2861  av_free_packet(&pkt_recoded);
2862  }
2864  sub->format = 0;
2865  else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
2866  sub->format = 1;
2867  avctx->internal->pkt = NULL;
2868  }
2869 
2870  if (did_split) {
2872  if(ret == tmp.size)
2873  ret = avpkt->size;
2874  }
2875 
2876  if (*got_sub_ptr)
2877  avctx->frame_number++;
2878  }
2879 
2880  return ret;
2881 }
2882 
2884 {
2885  int i;
2886 
2887  for (i = 0; i < sub->num_rects; i++) {
2888  av_freep(&sub->rects[i]->pict.data[0]);
2889  av_freep(&sub->rects[i]->pict.data[1]);
2890  av_freep(&sub->rects[i]->pict.data[2]);
2891  av_freep(&sub->rects[i]->pict.data[3]);
2892  av_freep(&sub->rects[i]->text);
2893  av_freep(&sub->rects[i]->ass);
2894  av_freep(&sub->rects[i]);
2895  }
2896 
2897  av_freep(&sub->rects);
2898 
2899  memset(sub, 0, sizeof(AVSubtitle));
2900 }
2901 
2903 {
2904  if (!avctx)
2905  return 0;
2906 
2907  if (avcodec_is_open(avctx)) {
2908  FramePool *pool = avctx->internal->pool;
2909  int i;
2910  if (CONFIG_FRAME_THREAD_ENCODER &&
2911  avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
2913  }
2914  if (HAVE_THREADS && avctx->internal->thread_ctx)
2915  ff_thread_free(avctx);
2916  if (avctx->codec && avctx->codec->close)
2917  avctx->codec->close(avctx);
2918  avctx->internal->byte_buffer_size = 0;
2919  av_freep(&avctx->internal->byte_buffer);
2920  av_frame_free(&avctx->internal->to_free);
2921  for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
2922  av_buffer_pool_uninit(&pool->pools[i]);
2923  av_freep(&avctx->internal->pool);
2924 
2925  if (avctx->hwaccel && avctx->hwaccel->uninit)
2926  avctx->hwaccel->uninit(avctx);
2928 
2929  av_freep(&avctx->internal);
2930  }
2931 
2932  if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
2933  av_opt_free(avctx->priv_data);
2934  av_opt_free(avctx);
2935  av_freep(&avctx->priv_data);
2936  if (av_codec_is_encoder(avctx->codec)) {
2937  av_freep(&avctx->extradata);
2938 #if FF_API_CODED_FRAME
2940  av_frame_free(&avctx->coded_frame);
2942 #endif
2943  }
2944  avctx->codec = NULL;
2945  avctx->active_thread_type = 0;
2946 
2947  return 0;
2948 }
2949 
2951 {
2952  switch(id){
2953  //This is for future deprecatec codec ids, its empty since
2954  //last major bump but will fill up again over time, please don't remove it
2955 // case AV_CODEC_ID_UTVIDEO_DEPRECATED: return AV_CODEC_ID_UTVIDEO;
2975  default : return id;
2976  }
2977 }
2978 
2979 static AVCodec *find_encdec(enum AVCodecID id, int encoder)
2980 {
2981  AVCodec *p, *experimental = NULL;
2982  p = first_avcodec;
2983  id= remap_deprecated_codec_id(id);
2984  while (p) {
2985  if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
2986  p->id == id) {
2987  if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
2988  experimental = p;
2989  } else
2990  return p;
2991  }
2992  p = p->next;
2993  }
2994  return experimental;
2995 }
2996 
2998 {
2999  return find_encdec(id, 1);
3000 }
3001 
3003 {
3004  AVCodec *p;
3005  if (!name)
3006  return NULL;
3007  p = first_avcodec;
3008  while (p) {
3009  if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
3010  return p;
3011  p = p->next;
3012  }
3013  return NULL;
3014 }
3015 
3017 {
3018  return find_encdec(id, 0);
3019 }
3020 
3022 {
3023  AVCodec *p;
3024  if (!name)
3025  return NULL;
3026  p = first_avcodec;
3027  while (p) {
3028  if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
3029  return p;
3030  p = p->next;
3031  }
3032  return NULL;
3033 }
3034 
3035 const char *avcodec_get_name(enum AVCodecID id)
3036 {
3037  const AVCodecDescriptor *cd;
3038  AVCodec *codec;
3039 
3040  if (id == AV_CODEC_ID_NONE)
3041  return "none";
3042  cd = avcodec_descriptor_get(id);
3043  if (cd)
3044  return cd->name;
3045  av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
3046  codec = avcodec_find_decoder(id);
3047  if (codec)
3048  return codec->name;
3049  codec = avcodec_find_encoder(id);
3050  if (codec)
3051  return codec->name;
3052  return "unknown_codec";
3053 }
3054 
3055 size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
3056 {
3057  int i, len, ret = 0;
3058 
3059 #define TAG_PRINT(x) \
3060  (((x) >= '0' && (x) <= '9') || \
3061  ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') || \
3062  ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
3063 
3064  for (i = 0; i < 4; i++) {
3065  len = snprintf(buf, buf_size,
3066  TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
3067  buf += len;
3068  buf_size = buf_size > len ? buf_size - len : 0;
3069  ret += len;
3070  codec_tag >>= 8;
3071  }
3072  return ret;
3073 }
3074 
3075 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
3076 {
3077  const char *codec_type;
3078  const char *codec_name;
3079  const char *profile = NULL;
3080  const AVCodec *p;
3081  int bitrate;
3082  int new_line = 0;
3083  AVRational display_aspect_ratio;
3084  const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
3085 
3086  if (!buf || buf_size <= 0)
3087  return;
3088  codec_type = av_get_media_type_string(enc->codec_type);
3089  codec_name = avcodec_get_name(enc->codec_id);
3090  if (enc->profile != FF_PROFILE_UNKNOWN) {
3091  if (enc->codec)
3092  p = enc->codec;
3093  else
3094  p = encode ? avcodec_find_encoder(enc->codec_id) :
3096  if (p)
3097  profile = av_get_profile_name(p, enc->profile);
3098  }
3099 
3100  snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
3101  codec_name);
3102  buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
3103 
3104  if (enc->codec && strcmp(enc->codec->name, codec_name))
3105  snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
3106 
3107  if (profile)
3108  snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
3109  if ( enc->codec_type == AVMEDIA_TYPE_VIDEO
3111  && enc->refs)
3112  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3113  ", %d reference frame%s",
3114  enc->refs, enc->refs > 1 ? "s" : "");
3115 
3116  if (enc->codec_tag) {
3117  char tag_buf[32];
3118  av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
3119  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3120  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
3121  }
3122 
3123  switch (enc->codec_type) {
3124  case AVMEDIA_TYPE_VIDEO:
3125  {
3126  char detail[256] = "(";
3127 
3128  av_strlcat(buf, separator, buf_size);
3129 
3130  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3131  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
3133  if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
3135  av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
3137  av_strlcatf(detail, sizeof(detail), "%s, ",
3139 
3140  if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
3142  enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
3143  if (enc->colorspace != (int)enc->color_primaries ||
3144  enc->colorspace != (int)enc->color_trc) {
3145  new_line = 1;
3146  av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
3150  } else
3151  av_strlcatf(detail, sizeof(detail), "%s, ",
3153  }
3154 
3155  if (av_log_get_level() >= AV_LOG_DEBUG &&
3157  av_strlcatf(detail, sizeof(detail), "%s, ",
3159 
3160  if (strlen(detail) > 1) {
3161  detail[strlen(detail) - 2] = 0;
3162  av_strlcatf(buf, buf_size, "%s)", detail);
3163  }
3164  }
3165 
3166  if (enc->width) {
3167  av_strlcat(buf, new_line ? separator : ", ", buf_size);
3168 
3169  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3170  "%dx%d",
3171  enc->width, enc->height);
3172 
3173  if (av_log_get_level() >= AV_LOG_VERBOSE &&
3174  (enc->width != enc->coded_width ||
3175  enc->height != enc->coded_height))
3176  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3177  " (%dx%d)", enc->coded_width, enc->coded_height);
3178 
3179  if (enc->sample_aspect_ratio.num) {
3180  av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
3181  enc->width * enc->sample_aspect_ratio.num,
3182  enc->height * enc->sample_aspect_ratio.den,
3183  1024 * 1024);
3184  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3185  " [SAR %d:%d DAR %d:%d]",
3187  display_aspect_ratio.num, display_aspect_ratio.den);
3188  }
3189  if (av_log_get_level() >= AV_LOG_DEBUG) {
3190  int g = av_gcd(enc->time_base.num, enc->time_base.den);
3191  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3192  ", %d/%d",
3193  enc->time_base.num / g, enc->time_base.den / g);
3194  }
3195  }
3196  if (encode) {
3197  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3198  ", q=%d-%d", enc->qmin, enc->qmax);
3199  } else {
3201  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3202  ", Closed Captions");
3204  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3205  ", lossless");
3206  }
3207  break;
3208  case AVMEDIA_TYPE_AUDIO:
3209  av_strlcat(buf, separator, buf_size);
3210 
3211  if (enc->sample_rate) {
3212  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3213  "%d Hz, ", enc->sample_rate);
3214  }
3215  av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
3216  if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
3217  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3218  ", %s", av_get_sample_fmt_name(enc->sample_fmt));
3219  }
3220  if ( enc->bits_per_raw_sample > 0
3222  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3223  " (%d bit)", enc->bits_per_raw_sample);
3224  break;
3225  case AVMEDIA_TYPE_DATA:
3226  if (av_log_get_level() >= AV_LOG_DEBUG) {
3227  int g = av_gcd(enc->time_base.num, enc->time_base.den);
3228  if (g)
3229  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3230  ", %d/%d",
3231  enc->time_base.num / g, enc->time_base.den / g);
3232  }
3233  break;
3234  case AVMEDIA_TYPE_SUBTITLE:
3235  if (enc->width)
3236  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3237  ", %dx%d", enc->width, enc->height);
3238  break;
3239  default:
3240  return;
3241  }
3242  if (encode) {
3243  if (enc->flags & AV_CODEC_FLAG_PASS1)
3244  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3245  ", pass 1");
3246  if (enc->flags & AV_CODEC_FLAG_PASS2)
3247  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3248  ", pass 2");
3249  }
3250  bitrate = get_bit_rate(enc);
3251  if (bitrate != 0) {
3252  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3253  ", %d kb/s", bitrate / 1000);
3254  } else if (enc->rc_max_rate > 0) {
3255  snprintf(buf + strlen(buf), buf_size - strlen(buf),
3256  ", max. %d kb/s", enc->rc_max_rate / 1000);
3257  }
3258 }
3259 
3260 const char *av_get_profile_name(const AVCodec *codec, int profile)
3261 {
3262  const AVProfile *p;
3263  if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
3264  return NULL;
3265 
3266  for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
3267  if (p->profile == profile)
3268  return p->name;
3269 
3270  return NULL;
3271 }
3272 
3273 unsigned avcodec_version(void)
3274 {
3275 // av_assert0(AV_CODEC_ID_V410==164);
3278 // av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
3279  av_assert0(AV_CODEC_ID_SRT==94216);
3281 
3282 #if FF_API_CODEC_ID
3288 #endif
3289  return LIBAVCODEC_VERSION_INT;
3290 }
3291 
3292 const char *avcodec_configuration(void)
3293 {
3294  return FFMPEG_CONFIGURATION;
3295 }
3296 
3297 const char *avcodec_license(void)
3298 {
3299 #define LICENSE_PREFIX "libavcodec license: "
3300  return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
3301 }
3302 
3304 {
3305  if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
3306  ff_thread_flush(avctx);
3307  else if (avctx->codec->flush)
3308  avctx->codec->flush(avctx);
3309 
3310  avctx->pts_correction_last_pts =
3311  avctx->pts_correction_last_dts = INT64_MIN;
3312 
3313  if (!avctx->refcounted_frames)
3314  av_frame_unref(avctx->internal->to_free);
3315 }
3316 
3318 {
3319  switch (codec_id) {
3320  case AV_CODEC_ID_8SVX_EXP:
3321  case AV_CODEC_ID_8SVX_FIB:
3322  case AV_CODEC_ID_ADPCM_CT:
3329  return 4;
3330  case AV_CODEC_ID_DSD_LSBF:
3331  case AV_CODEC_ID_DSD_MSBF:
3334  case AV_CODEC_ID_PCM_ALAW:
3335  case AV_CODEC_ID_PCM_MULAW:
3336  case AV_CODEC_ID_PCM_S8:
3338  case AV_CODEC_ID_PCM_U8:
3339  case AV_CODEC_ID_PCM_ZORK:
3340  return 8;
3341  case AV_CODEC_ID_PCM_S16BE:
3343  case AV_CODEC_ID_PCM_S16LE:
3345  case AV_CODEC_ID_PCM_U16BE:
3346  case AV_CODEC_ID_PCM_U16LE:
3347  return 16;
3349  case AV_CODEC_ID_PCM_S24BE:
3350  case AV_CODEC_ID_PCM_S24LE:
3352  case AV_CODEC_ID_PCM_U24BE:
3353  case AV_CODEC_ID_PCM_U24LE:
3354  return 24;
3355  case AV_CODEC_ID_PCM_S32BE:
3356  case AV_CODEC_ID_PCM_S32LE:
3358  case AV_CODEC_ID_PCM_U32BE:
3359  case AV_CODEC_ID_PCM_U32LE:
3360  case AV_CODEC_ID_PCM_F32BE:
3361  case AV_CODEC_ID_PCM_F32LE:
3362  return 32;
3363  case AV_CODEC_ID_PCM_F64BE:
3364  case AV_CODEC_ID_PCM_F64LE:
3365  return 64;
3366  default:
3367  return 0;
3368  }
3369 }
3370 
3372 {
3373  static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
3384  };
3385  if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
3386  return AV_CODEC_ID_NONE;
3387  if (be < 0 || be > 1)
3388  be = AV_NE(1, 0);
3389  return map[fmt][be];
3390 }
3391 
3393 {
3394  switch (codec_id) {
3396  return 2;
3398  return 3;
3402  case AV_CODEC_ID_ADPCM_SWF:
3403  case AV_CODEC_ID_ADPCM_MS:
3404  return 4;
3405  default:
3406  return av_get_exact_bits_per_sample(codec_id);
3407  }
3408 }
3409 
3410 int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
3411 {
3412  int id, sr, ch, ba, tag, bps;
3413 
3414  id = avctx->codec_id;
3415  sr = avctx->sample_rate;
3416  ch = avctx->channels;
3417  ba = avctx->block_align;
3418  tag = avctx->codec_tag;
3419  bps = av_get_exact_bits_per_sample(avctx->codec_id);
3420 
3421  /* codecs with an exact constant bits per sample */
3422  if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
3423  return (frame_bytes * 8LL) / (bps * ch);
3424  bps = avctx->bits_per_coded_sample;
3425 
3426  /* codecs with a fixed packet duration */
3427  switch (id) {
3428  case AV_CODEC_ID_ADPCM_ADX: return 32;
3429  case AV_CODEC_ID_ADPCM_IMA_QT: return 64;
3430  case AV_CODEC_ID_ADPCM_EA_XAS: return 128;
3431  case AV_CODEC_ID_AMR_NB:
3432  case AV_CODEC_ID_EVRC:
3433  case AV_CODEC_ID_GSM:
3434  case AV_CODEC_ID_QCELP:
3435  case AV_CODEC_ID_RA_288: return 160;
3436  case AV_CODEC_ID_AMR_WB:
3437  case AV_CODEC_ID_GSM_MS: return 320;
3438  case AV_CODEC_ID_MP1: return 384;
3439  case AV_CODEC_ID_ATRAC1: return 512;
3440  case AV_CODEC_ID_ATRAC3: return 1024;
3441  case AV_CODEC_ID_ATRAC3P: return 2048;
3442  case AV_CODEC_ID_MP2:
3443  case AV_CODEC_ID_MUSEPACK7: return 1152;
3444  case AV_CODEC_ID_AC3: return 1536;
3445  }
3446 
3447  if (sr > 0) {
3448  /* calc from sample rate */
3449  if (id == AV_CODEC_ID_TTA)
3450  return 256 * sr / 245;
3451 
3452  if (ch > 0) {
3453  /* calc from sample rate and channels */
3454  if (id == AV_CODEC_ID_BINKAUDIO_DCT)
3455  return (480 << (sr / 22050)) / ch;
3456  }
3457  }
3458 
3459  if (ba > 0) {
3460  /* calc from block_align */
3461  if (id == AV_CODEC_ID_SIPR) {
3462  switch (ba) {
3463  case 20: return 160;
3464  case 19: return 144;
3465  case 29: return 288;
3466  case 37: return 480;
3467  }
3468  } else if (id == AV_CODEC_ID_ILBC) {
3469  switch (ba) {
3470  case 38: return 160;
3471  case 50: return 240;
3472  }
3473  }
3474  }
3475 
3476  if (frame_bytes > 0) {
3477  /* calc from frame_bytes only */
3478  if (id == AV_CODEC_ID_TRUESPEECH)
3479  return 240 * (frame_bytes / 32);
3480  if (id == AV_CODEC_ID_NELLYMOSER)
3481  return 256 * (frame_bytes / 64);
3482  if (id == AV_CODEC_ID_RA_144)
3483  return 160 * (frame_bytes / 20);
3484  if (id == AV_CODEC_ID_G723_1)
3485  return 240 * (frame_bytes / 24);
3486 
3487  if (bps > 0) {
3488  /* calc from frame_bytes and bits_per_coded_sample */
3489  if (id == AV_CODEC_ID_ADPCM_G726)
3490  return frame_bytes * 8 / bps;
3491  }
3492 
3493  if (ch > 0) {
3494  /* calc from frame_bytes and channels */
3495  switch (id) {
3496  case AV_CODEC_ID_ADPCM_AFC:
3497  return frame_bytes / (9 * ch) * 16;
3498  case AV_CODEC_ID_ADPCM_DTK:
3499  return frame_bytes / (16 * ch) * 28;
3500  case AV_CODEC_ID_ADPCM_4XM:
3502  return (frame_bytes - 4 * ch) * 2 / ch;
3504  return (frame_bytes - 4) * 2 / ch;
3506  return (frame_bytes - 8) * 2 / ch;
3507  case AV_CODEC_ID_ADPCM_THP:
3509  if (avctx->extradata)
3510  return frame_bytes * 14 / (8 * ch);
3511  break;
3512  case AV_CODEC_ID_ADPCM_XA:
3513  return (frame_bytes / 128) * 224 / ch;
3515  return (frame_bytes - 6 - ch) / ch;
3516  case AV_CODEC_ID_ROQ_DPCM:
3517  return (frame_bytes - 8) / ch;
3518  case AV_CODEC_ID_XAN_DPCM:
3519  return (frame_bytes - 2 * ch) / ch;
3520  case AV_CODEC_ID_MACE3:
3521  return 3 * frame_bytes / ch;
3522  case AV_CODEC_ID_MACE6:
3523  return 6 * frame_bytes / ch;
3524  case AV_CODEC_ID_PCM_LXF:
3525  return 2 * (frame_bytes / (5 * ch));
3526  case AV_CODEC_ID_IAC:
3527  case AV_CODEC_ID_IMC:
3528  return 4 * frame_bytes / ch;
3529  }
3530 
3531  if (tag) {
3532  /* calc from frame_bytes, channels, and codec_tag */
3533  if (id == AV_CODEC_ID_SOL_DPCM) {
3534  if (tag == 3)
3535  return frame_bytes / ch;
3536  else
3537  return frame_bytes * 2 / ch;
3538  }
3539  }
3540 
3541  if (ba > 0) {
3542  /* calc from frame_bytes, channels, and block_align */
3543  int blocks = frame_bytes / ba;
3544  switch (avctx->codec_id) {
3546  if (bps < 2 || bps > 5)
3547  return 0;
3548  return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
3550  return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
3552  return blocks * (1 + (ba - 4 * ch) * 2 / ch);
3554  return blocks * ((ba - 4 * ch) * 2 / ch);
3555  case AV_CODEC_ID_ADPCM_MS:
3556  return blocks * (2 + (ba - 7 * ch) * 2 / ch);
3557  }
3558  }
3559 
3560  if (bps > 0) {
3561  /* calc from frame_bytes, channels, and bits_per_coded_sample */
3562  switch (avctx->codec_id) {
3563  case AV_CODEC_ID_PCM_DVD:
3564  if(bps<4)
3565  return 0;
3566  return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
3568  if(bps<4)
3569  return 0;
3570  return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
3571  case AV_CODEC_ID_S302M:
3572  return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
3573  }
3574  }
3575  }
3576  }
3577 
3578  /* Fall back on using frame_size */
3579  if (avctx->frame_size > 1 && frame_bytes)
3580  return avctx->frame_size;
3581 
3582  //For WMA we currently have no other means to calculate duration thus we
3583  //do it here by assuming CBR, which is true for all known cases.
3584  if (avctx->bit_rate>0 && frame_bytes>0 && avctx->sample_rate>0 && avctx->block_align>1) {
3585  if (avctx->codec_id == AV_CODEC_ID_WMAV1 || avctx->codec_id == AV_CODEC_ID_WMAV2)
3586  return (frame_bytes * 8LL * avctx->sample_rate) / avctx->bit_rate;
3587  }
3588 
3589  return 0;
3590 }
3591 
3592 #if !HAVE_THREADS
3594 {
3595  return -1;
3596 }
3597 
3598 #endif
3599 
3600 unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
3601 {
3602  unsigned int n = 0;
3603 
3604  while (v >= 0xff) {
3605  *s++ = 0xff;
3606  v -= 0xff;
3607  n++;
3608  }
3609  *s = v;
3610  n++;
3611  return n;
3612 }
3613 
3614 int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
3615 {
3616  int i;
3617  for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
3618  return i;
3619 }
3620 
3621 #if FF_API_MISSING_SAMPLE
3623 void av_log_missing_feature(void *avc, const char *feature, int want_sample)
3624 {
3625  av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
3626  "version to the newest one from Git. If the problem still "
3627  "occurs, it means that your file has a feature which has not "
3628  "been implemented.\n", feature);
3629  if(want_sample)
3631 }
3632 
3633 void av_log_ask_for_sample(void *avc, const char *msg, ...)
3634 {
3635  va_list argument_list;
3636 
3637  va_start(argument_list, msg);
3638 
3639  if (msg)
3640  av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
3641  av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
3642  "of this file to ftp://upload.ffmpeg.org/incoming/ "
3643  "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
3644 
3645  va_end(argument_list);
3646 }
3648 #endif /* FF_API_MISSING_SAMPLE */
3649 
3652 
3654 {
3655  AVHWAccel **p = last_hwaccel;
3656  hwaccel->next = NULL;
3657  while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
3658  p = &(*p)->next;
3659  last_hwaccel = &hwaccel->next;
3660 }
3661 
3663 {
3664  return hwaccel ? hwaccel->next : first_hwaccel;
3665 }
3666 
3667 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
3668 {
3669  if (lockmgr_cb) {
3670  // There is no good way to rollback a failure to destroy the
3671  // mutex, so we ignore failures.
3674  lockmgr_cb = NULL;
3675  codec_mutex = NULL;
3676  avformat_mutex = NULL;
3677  }
3678 
3679  if (cb) {
3680  void *new_codec_mutex = NULL;
3681  void *new_avformat_mutex = NULL;
3682  int err;
3683  if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
3684  return err > 0 ? AVERROR_UNKNOWN : err;
3685  }
3686  if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
3687  // Ignore failures to destroy the newly created mutex.
3688  cb(&new_codec_mutex, AV_LOCK_DESTROY);
3689  return err > 0 ? AVERROR_UNKNOWN : err;
3690  }
3691  lockmgr_cb = cb;
3692  codec_mutex = new_codec_mutex;
3693  avformat_mutex = new_avformat_mutex;
3694  }
3695 
3696  return 0;
3697 }
3698 
3699 int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
3700 {
3701  if (lockmgr_cb) {
3703  return -1;
3704  }
3705 
3708  av_log(log_ctx, AV_LOG_ERROR,
3709  "Insufficient thread locking. At least %d threads are "
3710  "calling avcodec_open2() at the same time right now.\n",
3712  if (!lockmgr_cb)
3713  av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
3714  ff_avcodec_locked = 1;
3716  return AVERROR(EINVAL);
3717  }
3719  ff_avcodec_locked = 1;
3720  return 0;
3721 }
3722 
3724 {
3726  ff_avcodec_locked = 0;
3728  if (lockmgr_cb) {
3730  return -1;
3731  }
3732 
3733  return 0;
3734 }
3735 
3737 {
3738  if (lockmgr_cb) {
3740  return -1;
3741  }
3742  return 0;
3743 }
3744 
3746 {
3747  if (lockmgr_cb) {
3749  return -1;
3750  }
3751  return 0;
3752 }
3753 
3754 unsigned int avpriv_toupper4(unsigned int x)
3755 {
3756  return av_toupper(x & 0xFF) +
3757  (av_toupper((x >> 8) & 0xFF) << 8) +
3758  (av_toupper((x >> 16) & 0xFF) << 16) +
3759 ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
3760 }
3761 
3763 {
3764  int ret;
3765 
3766  dst->owner = src->owner;
3767 
3768  ret = av_frame_ref(dst->f, src->f);
3769  if (ret < 0)
3770  return ret;
3771 
3772  av_assert0(!dst->progress);
3773 
3774  if (src->progress &&
3775  !(dst->progress = av_buffer_ref(src->progress))) {
3776  ff_thread_release_buffer(dst->owner, dst);
3777  return AVERROR(ENOMEM);
3778  }
3779 
3780  return 0;
3781 }
3782 
3783 #if !HAVE_THREADS
3784 
3786 {
3787  return ff_get_format(avctx, fmt);
3788 }
3789 
3791 {
3792  f->owner = avctx;
3793  return ff_get_buffer(avctx, f->f, flags);
3794 }
3795 
3797 {
3798  if (f->f)
3799  av_frame_unref(f->f);
3800 }
3801 
3803 {
3804 }
3805 
3806 void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
3807 {
3808 }
3809 
3810 void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
3811 {
3812 }
3813 
3815 {
3816  return 1;
3817 }
3818 
3820 {
3821  return 0;
3822 }
3823 
3825 {
3826 }
3827 
3828 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
3829 {
3830 }
3831 
3832 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
3833 {
3834 }
3835 
3836 #endif
3837 
3839 {
3840  AVCodec *c= avcodec_find_decoder(codec_id);
3841  if(!c)
3842  c= avcodec_find_encoder(codec_id);
3843  if(c)
3844  return c->type;
3845 
3846  if (codec_id <= AV_CODEC_ID_NONE)
3847  return AVMEDIA_TYPE_UNKNOWN;
3848  else if (codec_id < AV_CODEC_ID_FIRST_AUDIO)
3849  return AVMEDIA_TYPE_VIDEO;
3850  else if (codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
3851  return AVMEDIA_TYPE_AUDIO;
3852  else if (codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
3853  return AVMEDIA_TYPE_SUBTITLE;
3854 
3855  return AVMEDIA_TYPE_UNKNOWN;
3856 }
3857 
3859 {
3860  return !!s->internal;
3861 }
3862 
3863 int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
3864 {
3865  int ret;
3866  char *str;
3867 
3868  ret = av_bprint_finalize(buf, &str);
3869  if (ret < 0)
3870  return ret;
3871  if (!av_bprint_is_complete(buf)) {
3872  av_free(str);
3873  return AVERROR(ENOMEM);
3874  }
3875 
3876  avctx->extradata = str;
3877  /* Note: the string is NUL terminated (so extradata can be read as a
3878  * string), but the ending character is not accounted in the size (in
3879  * binary formats you are likely not supposed to mux that character). When
3880  * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
3881  * zeros. */
3882  avctx->extradata_size = buf->len;
3883  return 0;
3884 }
3885 
3886 const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
3887  const uint8_t *end,
3888  uint32_t *av_restrict state)
3889 {
3890  int i;
3891 
3892  av_assert0(p <= end);
3893  if (p >= end)
3894  return end;
3895 
3896  for (i = 0; i < 3; i++) {
3897  uint32_t tmp = *state << 8;
3898  *state = tmp + *(p++);
3899  if (tmp == 0x100 || p == end)
3900  return p;
3901  }
3902 
3903  while (p < end) {
3904  if (p[-1] > 1 ) p += 3;
3905  else if (p[-2] ) p += 2;
3906  else if (p[-3]|(p[-1]-1)) p++;
3907  else {
3908  p++;
3909  break;
3910  }
3911  }
3912 
3913  p = FFMIN(p, end) - 4;
3914  *state = AV_RB32(p);
3915 
3916  return p + 4;
3917 }
#define WRAP_PLANE(ref_out, data, data_size)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
#define FF_SANE_NB_CHANNELS
Definition: internal.h:62
static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
Definition: utils.c:2294
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition: pixfmt.h:83
void av_frame_set_channels(AVFrame *frame, int val)
float, planar
Definition: samplefmt.h:70
#define UTF8_MAX_BYTES
Definition: utils.c:2711
#define NULL
Definition: coverity.c:32
const struct AVCodec * codec
Definition: avcodec.h:1511
planar YUV 4:2:2, 18bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:178
AVRational framerate
Definition: avcodec.h:3302
const char const char void * val
Definition: avisynth_c.h:634
#define avpriv_atomic_int_add_and_fetch
Definition: atomic_gcc.h:50
float v
const AVCodecDescriptor * codec_descriptor
AVCodecDescriptor Code outside libavcodec should access this field using: av_codec_{get,set}_codec_descriptor(avctx)
Definition: avcodec.h:3327
static AVCodec * find_encdec(enum AVCodecID id, int encoder)
Definition: utils.c:2979
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:319
const char * s
Definition: avisynth_c.h:631
planar YUV 4:4:4,42bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:293
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
Number of sample formats. DO NOT USE if linking dynamically.
Definition: samplefmt.h:73
static enum AVPixelFormat pix_fmt
#define AV_NUM_DATA_POINTERS
Definition: frame.h:172
int ff_thread_video_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet_ptr)
int64_t av_frame_get_pkt_duration(const AVFrame *frame)
static int shift(int a, int b)
Definition: sonic.c:82
AVPacketSideDataType
Definition: avcodec.h:1224
planar YUV 4:2:0,21bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:286
static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex)
Definition: os2threads.h:94
int64_t pts_correction_num_faulty_dts
Number of incorrect PTS values so far.
Definition: avcodec.h:3346
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
#define 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:349
unsigned int fourcc
Definition: raw.h:35
int linesize[AV_NUM_DATA_POINTERS]
number of bytes per line
Definition: avcodec.h:3746
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:280
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2129
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVCodec * avcodec_find_encoder(enum AVCodecID id)
Find a registered encoder with a matching codec ID.
Definition: utils.c:2997
int(* init)(AVCodecContext *avctx)
Initialize the hwaccel private data.
Definition: avcodec.h:3694
int stride_align[AV_NUM_DATA_POINTERS]
Definition: internal.h:86
A dummy id pointing at the start of audio codecs.
Definition: avcodec.h:330
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
planar YUV 4:2:2,28bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:290
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:171
This side data must be associated with an audio frame and corresponds to enum AVAudioServiceType defi...
Definition: frame.h:114
enum AVCodecID id
Definition: mxfenc.c:101
#define AV_CODEC_FLAG2_SKIP_MANUAL
Do not skip samples and export skip information as frame side data.
Definition: avcodec.h:839
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:1696
int capabilities
Hardware accelerated codec capabilities.
Definition: avcodec.h:3610
const char * fmt
Definition: avisynth_c.h:632
void(* flush)(AVCodecContext *)
Flush buffers.
Definition: avcodec.h:3561
int av_lockmgr_register(int(*cb)(void **mutex, enum AVLockOp op))
Register a user provided lock manager supporting the operations specified by AVLockOp.
Definition: utils.c:3667
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
Unlock the mutex.
Definition: avcodec.h:5533
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
AVFrame * f
Definition: thread.h:36
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2169
AVFrame * to_free
Definition: internal.h:131
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:65
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1448
enum AVColorRange av_frame_get_color_range(const AVFrame *frame)
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:441
const char * g
Definition: vf_curves.c:108
int width
Definition: internal.h:85
#define LIBAVCODEC_VERSION_MICRO
Definition: version.h:33
planar YUV 4:4:4, 27bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:174
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition: avcodec.h:2643
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:291
This side data should be associated with a video stream and contains Stereoscopic 3D information in f...
Definition: avcodec.h:1285
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1178
const char * avcodec_configuration(void)
Return the libavcodec build-time configuration.
Definition: utils.c:3292
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:2237
int nb_extended_buf
Number of elements in extended_buf.
Definition: frame.h:459
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:188
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:1424
const char * b
Definition: vf_curves.c:109
const char * avcodec_license(void)
Return the libavcodec license.
Definition: utils.c:3297
#define FF_CODEC_PROPERTY_LOSSLESS
Definition: avcodec.h:3436
enum AVPixelFormat pix_fmt
Supported pixel format.
Definition: avcodec.h:3604
static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
Definition: utils.c:880
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:1902
static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
Pad last frame with silence.
Definition: utils.c:1846
AVPacket * pkt
Current packet as passed into the decoder, to avoid having to pass the packet into every function...
Definition: internal.h:141
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:215
double, planar
Definition: samplefmt.h:71
enum AVMediaType codec_type
Definition: rtp.c:37
#define AV_CODEC_PROP_TEXT_SUB
Subtitle codec is text based.
Definition: avcodec.h:626
os2threads to pthreads wrapper
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1722
void avpriv_color_frame(AVFrame *frame, const int c[4])
Definition: utils.c:690
enum AVPixelFormat pix_fmt
Definition: raw.h:34
int samples
Definition: internal.h:90
void av_frame_set_pkt_duration(AVFrame *frame, int64_t val)
unsigned num_rects
Definition: avcodec.h:3803
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:126
planar GBR 4:4:4 36bpp, little-endian
Definition: pixfmt.h:296
A dummy ID pointing at the start of various fake codecs.
Definition: avcodec.h:536
The following 12 formats have the disadvantage of needing 1 format for each bit depth.
Definition: pixfmt.h:168
#define AV_CODEC_CAP_EXPERIMENTAL
Codec is experimental and is thus avoided in favor of non experimental encoders.
Definition: avcodec.h:912
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:484
mpegvideo header.
enum AVMediaType type
Definition: avcodec.h:3485
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:3055
AVBufferPool * pools[4]
Pools for each data plane.
Definition: internal.h:79
int(* decode)(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt)
Definition: avcodec.h:3555
static AVPacket pkt
int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Encode a frame of audio.
Definition: utils.c:1883
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:3003
enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Wrapper around get_format() for frame-multithreaded codecs.
Definition: utils.c:3785
int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
Converts AVChromaLocation to swscale x/y chroma position.
Definition: utils.c:449
#define AV_CODEC_CAP_AUTO_THREADS
Codec supports avctx->thread_count == 0 (auto).
Definition: avcodec.h:932
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt)
Decode a subtitle message.
Definition: utils.c:2789
void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic)
Definition: utils.c:1096
int av_dup_packet(AVPacket *pkt)
Definition: avpacket.c:248
attribute_deprecated int(* get_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called at the beginning of each frame to get a buffer for it.
Definition: avcodec.h:2411
Picture data structure.
Definition: avcodec.h:3744
void av_frame_set_pkt_size(AVFrame *frame, int val)
int profile
profile
Definition: avcodec.h:3115
planar GBR 4:4:4 36bpp, big-endian
Definition: pixfmt.h:295
AVCodec.
Definition: avcodec.h:3472
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:140
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Definition: avcodec.h:2299
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
AVLockOp
Lock operation used by lockmgr.
Definition: avcodec.h:5530
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
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:216
attribute_deprecated void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:2425
char * text
0 terminated plain UTF-8 text
Definition: avcodec.h:3787
unsigned avcodec_get_edge_width(void)
Return the amount of padding in pixels which the get_buffer callback must provide around the edge of ...
Definition: utils.c:200
const char * av_color_space_name(enum AVColorSpace space)
Definition: pixdesc.c:2457
Macro definitions for various function/variable attributes.
#define FFALIGN(x, a)
Definition: common.h:86
FF_DISABLE_DEPRECATION_WARNINGS void av_log_missing_feature(void *avc, const char *feature, int want_sample)
Log a generic warning message about a missing feature.
Definition: utils.c:3623
static void * codec_mutex
Definition: utils.c:123
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
Definition: avcodec.h:940
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1631
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:625
AVSubtitleRect ** rects
Definition: avcodec.h:3804
int av_codec_is_decoder(const AVCodec *codec)
Definition: utils.c:179
enum AVAudioServiceType audio_service_type
Type of service that the audio stream conveys.
Definition: avcodec.h:2337
void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
Definition: utils.c:3828
int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels, enum AVSampleFormat sample_fmt, const uint8_t *buf, int buf_size, int align)
Fill AVFrame audio data and linesize pointers.
Definition: utils.c:472
int av_codec_is_encoder(const AVCodec *codec)
Definition: utils.c:174
planar YUV 4:2:0 22.5bpp, (1 Cr & Cb sample per 2x2 Y & A samples), little-endian ...
Definition: pixfmt.h:205
void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height)
Modify width and height values so that they will result in a memory buffer that is acceptable for the...
Definition: utils.c:434
struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2922
static int volatile entangled_thread_counter
Definition: utils.c:122
#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:882
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
Public dictionary API.
planar YUV 4:2:0 40bpp, (1 Cr & Cb sample per 2x2 Y & A samples, big-endian)
Definition: pixfmt.h:216
int ff_unlock_avcodec(void)
Definition: utils.c:3723
static double cb(void *priv, double x, double y)
Definition: vf_geq.c:97
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
HMTX pthread_mutex_t
Definition: os2threads.h:40
int height
Definition: internal.h:85
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Definition: utils.c:1151
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:2270
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:100
Lock the mutex.
Definition: avcodec.h:5532
uint8_t
#define av_cold
Definition: attributes.h:74
#define av_malloc(s)
AV_SAMPLE_FMT_U8
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
Opaque data information usually continuous.
Definition: avutil.h:195
int av_packet_unpack_dictionary(const uint8_t *data, int size, AVDictionary **dict)
Unpack a dictionary from side_data.
Definition: avpacket.c:481
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:63
8 bit with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:74
AVOptions.
attribute_deprecated void(* destruct)(struct AVPacket *)
Definition: avcodec.h:1444
uint8_t * data[AV_NUM_DATA_POINTERS]
pointers to the image data planes
Definition: avcodec.h:3745
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
Definition: imgutils.c:152
const char * av_color_range_name(enum AVColorRange range)
Definition: pixdesc.c:2439
void * thread_ctx
Definition: internal.h:135
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
static int setup_hwaccel(AVCodecContext *avctx, const enum AVPixelFormat fmt, const char *name)
Definition: utils.c:1170
static AVCodec * first_avcodec
Definition: utils.c:151
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
Definition: avcodec.h:1279
int ff_side_data_update_matrix_encoding(AVFrame *frame, enum AVMatrixEncoding matrix_encoding)
Add or update AV_FRAME_DATA_MATRIXENCODING side data.
Definition: utils.c:246
#define AV_WL8(p, d)
Definition: intreadwrite.h:399
Multithreading support functions.
#define AV_NE(be, le)
Definition: common.h:49
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:365
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:292
#define FF_PROFILE_UNKNOWN
Definition: avcodec.h:3116
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
#define LIBAVCODEC_VERSION_INT
Definition: version.h:35
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: utils.c:1087
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1617
#define LICENSE_PREFIX
int64_t sample_count
Internal sample count used by avcodec_encode_audio() to fabricate pts.
Definition: internal.h:122
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_RB32
Definition: bytestream.h:87
int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Encode a frame of video.
Definition: utils.c:2160
static AVFrame * frame
planar YUV 4:2:0 40bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:217
int planes
Definition: internal.h:88
void * frame_thread_encoder
Definition: internal.h:149
Structure to hold side data for an AVFrame.
Definition: frame.h:134
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:252
int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Call avcodec_open2 recursively by decrementing counter, unlocking mutex, calling the function and the...
Definition: utils.c:1337
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), big-endian
Definition: pixfmt.h:320
uint8_t * data
Definition: avcodec.h:1423
planar GBR 4:4:4 48bpp, big-endian
Definition: pixfmt.h:193
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:102
static int(* lockmgr_cb)(void **mutex, enum AVLockOp op)
Definition: utils.c:117
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
int ff_init_buffer_info(AVCodecContext *avctx, AVFrame *frame)
does needed setup of pkt_pts/pos and such for (re)get_buffer();
Definition: utils.c:748
uint32_t tag
Definition: movenc.c:1334
#define AV_CODEC_CAP_HWACCEL_VDPAU
Codec can export data for HW decoding (VDPAU).
Definition: avcodec.h:893
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:76
planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, big-endian)
Definition: pixfmt.h:220
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
AVFrame * avcodec_alloc_frame(void)
Definition: utils.c:1281
uint8_t * data
Definition: avcodec.h:1373
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
Definition: avcodec.h:3013
void av_frame_set_best_effort_timestamp(AVFrame *frame, int64_t val)
enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt)
Get the planar alternative form of the given sample format.
Definition: samplefmt.c:82
int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
Return the index into tab at which {a,b} match elements {[0],[1]} of tab.
Definition: utils.c:3614
ptrdiff_t size
Definition: opengl_enc.c:101
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2996
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), big-endian
Definition: pixfmt.h:322
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
Definition: utils.c:231
char * stats_out
pass1 encoding statistics output buffer
Definition: avcodec.h:2771
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition: avcodec.h:763
signed 32 bits
Definition: samplefmt.h:63
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1441
const OptionDef options[]
Definition: ffserver.c:3807
void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:213
#define AV_INPUT_BUFFER_MIN_SIZE
minimum encoding buffer size Used to avoid some checks during header writing.
Definition: avcodec.h:643
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2244
#define av_log(a,...)
AVCodecContext * owner
Definition: thread.h:37
const char * name
Definition: pixdesc.h:70
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1782
#define FF_BUFFER_TYPE_INTERNAL
Definition: avcodec.h:1202
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
Definition: samplefmt.c:110
FramePool * pool
Definition: internal.h:133
static void compat_release_buffer(void *opaque, uint8_t *data)
Definition: utils.c:867
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1469
AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.
Definition: utils.c:3002
void av_frame_set_color_range(AVFrame *frame, enum AVColorRange val)
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:266
static av_cold void avcodec_init(void)
Definition: utils.c:162
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
Definition: avutil.h:300
#define EDGE_WIDTH
Definition: mpegpicture.h:33
int ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt)
Submit a new frame to a decoding thread.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:140
planar YUV 4:2:0, 13.5bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:169
#define AV_RL8(x)
Definition: intreadwrite.h:398
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
Definition: utils.c:207
Libavcodec version macros.
int(* close)(AVCodecContext *)
Definition: avcodec.h:3556
av_cold int avcodec_close(AVCodecContext *avctx)
Close a given AVCodecContext and free all the data associated with it (but not the AVCodecContext its...
Definition: utils.c:2902
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:83
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
Definition: avcodec.h:3318
enum AVCodecID id
Definition: avcodec.h:3486
const uint64_t * channel_layouts
array of support channel layouts, or NULL if unknown. array is terminated by 0
Definition: avcodec.h:3496
planar GBR 4:4:4 27bpp, big-endian
Definition: pixfmt.h:189
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:177
const char * av_chroma_location_name(enum AVChromaLocation location)
Definition: pixdesc.c:2463
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:281
uint16_t depth_minus1
Number of bits in the component minus 1.
Definition: pixdesc.h:57
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:102
int width
width and height of the video frame
Definition: frame.h:220
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1812
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3392
#define avpriv_atomic_ptr_cas
Definition: atomic_gcc.h:60
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
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: utils.c:2408
Create a mutex.
Definition: avcodec.h:5531
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:235
int profile
Definition: mxfenc.c:1806
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2901
AVAudioServiceType
Definition: avcodec.h:692
#define MAKE_ACCESSORS(str, name, type, field)
Definition: internal.h:86
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:145
An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows:
Definition: avcodec.h:1243
#define AVERROR(e)
Definition: error.h:43
unsigned int avpriv_toupper4(unsigned int x)
Definition: utils.c:3754
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
void av_packet_free_side_data(AVPacket *pkt)
Convenience function to free all the side data stored.
Definition: avpacket.c:271
int qmax
maximum quantizer
Definition: avcodec.h:2554
void av_frame_set_colorspace(AVFrame *frame, enum AVColorSpace val)
AVCodec * av_codec_next(const AVCodec *c)
If c is NULL, returns the first registered codec, if c is non-NULL, returns the next registered codec...
Definition: utils.c:154
int64_t pts_correction_last_pts
Number of incorrect DTS values so far.
Definition: avcodec.h:3347
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:3052
int avcodec_is_open(AVCodecContext *s)
Definition: utils.c:3858
const char * r
Definition: vf_curves.c:107
int av_match_list(const char *name, const char *list, char separator)
Check if a name is in a list.
Definition: avstring.c:436
int capabilities
Codec capabilities.
Definition: avcodec.h:3491
int initial_padding
Audio only.
Definition: avcodec.h:3294
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
int ff_thread_init(AVCodecContext *s)
Definition: utils.c:3593
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:199
planar YUV 4:4:4 36bpp, (1 Cr & Cb sample per 1x1 Y & A samples), big-endian
Definition: pixfmt.h:208
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1406
const char * arg
Definition: jacosubdec.c:66
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:173
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1597
int rc_max_rate
maximum bitrate
Definition: avcodec.h:2604
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:123
simple assert() macros that are a bit more flexible than ISO C assert().
planar YUV 4:2:2,28bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:289
int64_t av_gcd(int64_t a, int64_t b)
Return the greatest common divisor of a and b.
Definition: mathematics.c:55
enum AVMediaType avcodec_get_type(enum AVCodecID codec_id)
Get the type of the given codec.
Definition: utils.c:3838
int av_log_get_level(void)
Get the current log level.
Definition: log.c:377
const char * name
Name of the codec implementation.
Definition: avcodec.h:3479
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:143
int side_data_elems
Definition: avcodec.h:1435
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
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:47
int av_buffer_realloc(AVBufferRef **pbuf, int size)
Reallocate a given buffer.
Definition: buffer.c:168
enum AVCodecID codec_id
Definition: mov_chan.c:433
GLsizei count
Definition: opengl_enc.c:109
planar YUV 4:4:4 36bpp, (1 Cr & Cb sample per 1x1 Y & A samples), little-endian
Definition: pixfmt.h:209
void ff_thread_free(AVCodecContext *avctx)
Definition: pthread.c:82
#define FFMAX(a, b)
Definition: common.h:79
Libavcodec external API header.
#define fail()
Definition: checkasm.h:57
const char av_codec_ffversion[]
Definition: utils.c:71
av_cold void ff_me_cmp_init_static(void)
Definition: me_cmp.c:907
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition: avcodec.h:936
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:683
int priv_data_size
Size of the private data to allocate in AVCodecInternal.hwaccel_priv_data.
Definition: avcodec.h:3708
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1429
const char * av_color_primaries_name(enum AVColorPrimaries primaries)
Definition: pixdesc.c:2445
reference-counted frame API
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:2935
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2323
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, big-endian)
Definition: pixfmt.h:210
uint32_t end_display_time
Definition: avcodec.h:3802
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition: avcodec.h:3805
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:2581
uint64_t channel_layout
Channel layout of the audio data.
Definition: frame.h:427
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: avcodec.h:582
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
int(* encode_sub)(AVCodecContext *, uint8_t *buf, int buf_size, const struct AVSubtitle *sub)
Definition: avcodec.h:3541
static AVCodec ** last_avcodec
Definition: utils.c:152
int ff_frame_thread_encoder_init(AVCodecContext *avctx, AVDictionary *options)
common internal API header
#define FF_MAX_EXTRADATA_SIZE
Maximum size in bytes of extradata.
Definition: internal.h:197
int refs
number of reference frames
Definition: avcodec.h:2178
static AVHWAccel * find_hwaccel(enum AVCodecID codec_id, enum AVPixelFormat pix_fmt)
Definition: utils.c:1158
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
Definition: avcodec.h:2825
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition: imgutils.c:241
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:71
static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
Definition: utils.c:508
int bit_rate
the average bitrate
Definition: avcodec.h:1567
audio channel layout utility functions
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3493
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples, int *frame_size_ptr, AVPacket *avpkt)
Wrapper function which calls avcodec_decode_audio4.
Definition: utils.c:2502
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2890
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:53
AVPicture pict
data+linesize for the bitmap of this subtitle.
Definition: avcodec.h:3784
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
Definition: avcodec.h:887
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:3583
#define FFMIN(a, b)
Definition: common.h:81
Raw Video Codec.
float y
signed 32 bits, planar
Definition: samplefmt.h:69
volatile int ff_avcodec_locked
Definition: utils.c:121
AVBufferRef ** extended_buf
For planar audio which requires more than AV_NUM_DATA_POINTERS AVBufferRef pointers, this array will hold all the references which cannot fit into AVFrame.buf.
Definition: frame.h:455
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:75
int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3317
int channels
Definition: internal.h:89
int(* alloc_frame)(AVCodecContext *avctx, AVFrame *frame)
Allocate a custom buffer.
Definition: avcodec.h:3624
static int is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
Definition: utils.c:1145
void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
Definition: utils.c:3832
int width
picture width / height.
Definition: avcodec.h:1681
int priv_data_size
Definition: avcodec.h:3508
int profile
Definition: avcodec.h:3461
attribute_deprecated int reference
Definition: frame.h:287
#define FF_CEIL_RSHIFT(a, b)
Definition: common.h:57
FF_ENABLE_DEPRECATION_WARNINGS int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
Set various frame properties from the codec context / packet data.
Definition: utils.c:875
static struct @197 state
#define FF_DEBUG_BUFFERS
Definition: avcodec.h:2867
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:751
void av_frame_set_pkt_pos(AVFrame *frame, int64_t val)
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:2216
AVFrameSideDataType
Definition: frame.h:48
static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
Definition: os2threads.h:87
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, big-endian)
Definition: pixfmt.h:214
packed YUV 4:2:2, 16bpp, Y0 Cr Y1 Cb
Definition: pixfmt.h:242
uint16_t format
Definition: avcodec.h:3800
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
Definition: utils.c:3802
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: utils.c:2558
planar YUV 4:2:2 27bpp, (1 Cr & Cb sample per 2x1 Y & A samples), big-endian
Definition: pixfmt.h:206
const AVProfile * profiles
array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN} ...
Definition: avcodec.h:3499
int64_t reordered_opaque
opaque 64bit number (generally a PTS) that will be reordered and output in AVFrame.reordered_opaque
Definition: avcodec.h:2915
int n
Definition: avisynth_c.h:547
static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
Definition: utils.c:652
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition: bprint.h:185
int refcounted_frames
If non-zero, the decoded audio and video frames returned from avcodec_decode_video2() and avcodec_dec...
Definition: avcodec.h:2536
void avcodec_free_frame(AVFrame **frame)
Definition: utils.c:1286
unsigned 8 bits, planar
Definition: samplefmt.h:67
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:1640
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:66
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:284
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:170
uint8_t avframe_padding[1024]
Definition: utils.c:856
Usually treated as AVMEDIA_TYPE_DATA.
Definition: avutil.h:192
void av_log_ask_for_sample(void *avc, const char *msg,...)
Definition: utils.c:3633
Opaque data information usually sparse.
Definition: avutil.h:197
int ff_alloc_packet(AVPacket *avpkt, int size)
Definition: utils.c:1838
const char * av_get_colorspace_name(enum AVColorSpace val)
Get the name of a colorspace.
Definition: frame.c:73
static pthread_mutex_t * mutex
Definition: w32pthreads.h:166
static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
Definition: utils.c:607
#define FF_SUB_CHARENC_MODE_AUTOMATIC
libavcodec will select the mode itself
Definition: avcodec.h:3365
enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
Definition: utils.c:1134
char * sub_charenc
DTS of the last frame.
Definition: avcodec.h:3355
planar YUV 4:2:2, 18bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:179
#define AVERROR_EXPERIMENTAL
Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it...
Definition: error.h:72
#define FF_ARRAY_ELEMS(a)
const char * avcodec_get_name(enum AVCodecID id)
Get the name of a codec.
Definition: utils.c:3035
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:3033
int linesize[4]
Definition: internal.h:87
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:540
int sub_charenc_mode
Subtitles character encoding mode.
Definition: avcodec.h:3363
int av_packet_split_side_data(AVPacket *pkt)
Definition: avpacket.c:404
int av_codec_get_max_lowres(const AVCodec *codec)
Definition: utils.c:1303
void av_get_channel_layout_string(char *buf, int buf_size, int nb_channels, uint64_t channel_layout)
Return a description of a channel layout.
void avcodec_flush_buffers(AVCodecContext *avctx)
Reset the internal decoder state / flush internal buffers.
Definition: utils.c:3303
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:232
const AVS_VideoInfo int align
Definition: avisynth_c.h:658
AVBufferRef * progress
Definition: thread.h:40
const char * av_get_profile_name(const AVCodec *codec, int profile)
Return a name for the specified profile, if available.
Definition: utils.c:3260
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:2282
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: avcodec.h:2824
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
Definition: pixfmt.h:85
static int width
Definition: utils.c:158
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:141
AVS_Value src
Definition: avisynth_c.h:482
int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
The default callback for AVCodecContext.get_buffer2().
Definition: utils.c:713
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:110
enum AVMediaType codec_type
Definition: avcodec.h:1510
void(* init_static_data)(struct AVCodec *codec)
Initialize codec static data, called from avcodec_register().
Definition: avcodec.h:3538
A list of zero terminated key/value strings.
Definition: avcodec.h:1330
int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic)
Definition: utils.c:1103
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:59
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
Definition: frame.h:84
AVDictionary ** avpriv_frame_get_metadatap(AVFrame *frame)
Definition: frame.c:47
enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
Return the PCM codec associated with a sample format.
Definition: utils.c:3371
enum AVCodecID codec_id
Definition: avcodec.h:1519
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:252
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:493
int av_opt_set_dict(void *obj, AVDictionary **options)
Set all the options from a given dictionary on an object.
Definition: opt.c:1476
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:87
int sample_rate
samples per second
Definition: avcodec.h:2262
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
#define FF_CODEC_PROPERTY_CLOSED_CAPTIONS
Definition: avcodec.h:3437
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:280
uint8_t flags
Definition: pixdesc.h:90
int debug
debug
Definition: avcodec.h:2842
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
planar GBR 4:4:4 30bpp, big-endian
Definition: pixfmt.h:191
main external API structure.
Definition: avcodec.h:1502
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: utils.c:3016
static int recode_subtitle(AVCodecContext *avctx, AVPacket *outpkt, const AVPacket *inpkt)
Definition: utils.c:2712
planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, big-endian)
Definition: pixfmt.h:218
uint8_t * data
The data buffer.
Definition: buffer.h:89
int qmin
minimum quantizer
Definition: avcodec.h:2547
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: utils.c:2883
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:252
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1534
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:64
uint8_t * data
Definition: frame.h:136
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:321
#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:621
planar GBR 4:4:4 42bpp, little-endian
Definition: pixfmt.h:298
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:211
void * buf
Definition: avisynth_c.h:553
int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVFrame *pict)
Definition: utils.c:2119
int extradata_size
Definition: avcodec.h:1618
AVBufferRef * av_buffer_allocz(int size)
Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.
Definition: buffer.c:82
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
Encode extradata length to a buffer.
Definition: utils.c:3600
struct AVCodec * next
Definition: avcodec.h:3509
#define FF_SUB_CHARENC_MODE_DO_NOTHING
do nothing (demuxer outputs a stream supposed to be already in UTF-8, or the codec is bitmap for inst...
Definition: avcodec.h:3364
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:3044
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:219
static int utf8_check(const uint8_t *str)
Definition: utils.c:2770
int coded_height
Definition: avcodec.h:1696
int64_t reordered_opaque
reordered opaque 64bit (generally an integer or a double precision float PTS but can be anything)...
Definition: frame.h:399
enum AVColorSpace av_frame_get_colorspace(const AVFrame *frame)
Describe the class of an AVClass context structure.
Definition: log.h:67
int sample_rate
Sample rate of the audio data.
Definition: frame.h:422
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
Definition: avcodec.h:1772
int av_frame_get_channels(const AVFrame *frame)
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:88
planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:221
AVFrameSideData * av_frame_new_side_data(AVFrame *frame, enum AVFrameSideDataType type, int size)
Add a new side data to a frame.
Definition: frame.c:589
static av_const int av_toupper(int c)
Locale-independent conversion of ASCII characters to uppercase.
Definition: avstring.h:221
Y , 16bpp, big-endian.
Definition: pixfmt.h:99
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:250
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:117
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:2230
rational number numerator/denominator
Definition: rational.h:43
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:2223
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
Wrapper around release_buffer() frame-for multithreaded codecs.
Definition: utils.c:3796
const char * name
short name for the profile
Definition: avcodec.h:3462
Recommmends skipping the specified number of samples.
Definition: avcodec.h:1314
planar YUV 4:2:0,21bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:285
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Send the specified message to the log if the level is less than or equal to the current av_log_level...
Definition: log.c:370
int(* func)(AVBPrint *dst, const char *in, const char *arg)
Definition: jacosubdec.c:67
AVMediaType
Definition: avutil.h:191
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
int skip_samples
Number of audio samples to skip at the start of the next decoded frame.
Definition: internal.h:154
planar GBR 4:4:4 42bpp, big-endian
Definition: pixfmt.h:297
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:2523
static FF_ENABLE_DEPRECATION_WARNINGS AVHWAccel * first_hwaccel
Definition: utils.c:3650
char * codec_whitelist
',' separated list of allowed decoders.
Definition: avcodec.h:3427
planar YUV 4:2:0 22.5bpp, (1 Cr & Cb sample per 2x2 Y & A samples), big-endian
Definition: pixfmt.h:204
#define STRIDE_ALIGN
Definition: internal.h:71
const char * name
Name of the codec described by this descriptor.
Definition: avcodec.h:574
enum AVChromaLocation chroma_location
Definition: frame.h:506
int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:1349
#define snprintf
Definition: snprintf.h:34
static AVHWAccel ** last_hwaccel
Definition: utils.c:3651
void avcodec_get_frame_defaults(AVFrame *frame)
Definition: utils.c:1268
int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
Return audio frame duration.
Definition: utils.c:3410
static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
Definition: utils.c:2950
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
Definition: avstring.c:93
AVHWAccel * av_hwaccel_next(const AVHWAccel *hwaccel)
If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL...
Definition: utils.c:3662
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:566
int64_t pkt_pts
PTS copied from the AVPacket that was decoded to produce this frame.
Definition: frame.h:262
int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
Finalize buf into extradata and set its size appropriately.
Definition: utils.c:3863
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
Definition: frame.c:265
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:464
static int64_t pts
Global timestamp for the audio frames.
const char * av_get_media_type_string(enum AVMediaType media_type)
Return a string describing the media_type enum, NULL if media_type is unknown.
Definition: utils.c:79
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:213
int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples)
Encode an audio frame from samples into buf.
Definition: utils.c:2030
AVCodec * avcodec_find_decoder_by_name(const char *name)
Find a registered decoder with the specified name.
Definition: utils.c:3021
This side data should be associated with an audio stream and contains ReplayGain information in form ...
Definition: avcodec.h:1270
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:133
static int flags
Definition: cpu.c:47
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:1040
const AVClass * priv_class
AVClass for the private context.
Definition: avcodec.h:3498
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
planar YUV 4:4:4, 27bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:175
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:144
int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
Return number of bytes per sample.
Definition: samplefmt.c:104
enum AVMediaType type
Definition: avcodec.h:568
uint8_t max_lowres
maximum value for lowres supported by the decoder, no direct access, use av_codec_get_max_lowres() ...
Definition: avcodec.h:3497
int64_t pkt_dts
DTS copied from the AVPacket that triggered returning this frame.
Definition: frame.h:269
A reference to a data buffer.
Definition: buffer.h:81
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
Definition: anm.c:78
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: avcodec.h:1434
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:288
Y , 8bpp.
Definition: pixfmt.h:71
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1432
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:79
common internal api header.
enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos)
Converts swscale x/y chroma position to AVChromaLocation.
Definition: utils.c:461
Free mutex resources.
Definition: avcodec.h:5534
if(ret< 0)
Definition: vf_mcdeint.c:280
AVBufferPool * av_buffer_pool_init(int size, AVBufferRef *(*alloc)(int size))
Allocate and initialize a buffer pool.
Definition: buffer.c:217
int avpriv_lock_avformat(void)
Definition: utils.c:3736
#define HWACCEL_CODEC_CAP_EXPERIMENTAL
HWAccel is experimental and is thus avoided in favor of non experimental codecs.
Definition: avcodec.h:1136
void av_register_hwaccel(AVHWAccel *hwaccel)
Register the hardware accelerator hwaccel.
Definition: utils.c:3653
struct AVHWAccel * next
Definition: avcodec.h:3619
#define AV_CODEC_CAP_PARAM_CHANGE
Codec supports changed parameters at any point.
Definition: avcodec.h:928
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:299
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: utils.c:2268
signed 16 bits
Definition: samplefmt.h:62
planar GBR 4:4:4 27bpp, little-endian
Definition: pixfmt.h:190
static double c[64]
const char * av_color_transfer_name(enum AVColorTransferCharacteristic transfer)
Definition: pixdesc.c:2451
int(* uninit)(AVCodecContext *avctx)
Uninitialize the hwaccel private data.
Definition: avcodec.h:3702
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:159
uint32_t start_display_time
Definition: avcodec.h:3801
void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_padded_malloc except that buffer will always be 0-initialized after call...
Definition: utils.c:138
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:92
AVProfile.
Definition: avcodec.h:3460
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:142
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:77
int ff_thread_can_start_frame(AVCodecContext *avctx)
Definition: utils.c:3814
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:3024
enum AVCodecID id
Codec implemented by the hardware accelerator.
Definition: avcodec.h:3597
void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
Notify later decoding threads when part of their reference picture is ready.
Definition: utils.c:3806
packed RGB 3:3:2, 8bpp, (msb)2R 3G 3B(lsb)
Definition: pixfmt.h:88
static const uint64_t c2
Definition: murmur3.c:50
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:368
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
int caps_internal
Internal codec capabilities.
Definition: avcodec.h:3566
unsigned properties
Definition: avcodec.h:3435
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:49
int den
denominator
Definition: rational.h:45
int avcodec_default_execute2(AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
Definition: utils.c:1122
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
unsigned bps
Definition: movenc.c:1335
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:211
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:636
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
Definition: utils.c:3075
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition: avcodec.h:755
static int lowres
Definition: ffplay.c:329
void * priv_data
Definition: avcodec.h:1544
int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
Definition: utils.c:3699
int av_samples_fill_arrays(uint8_t **audio_data, int *linesize, const uint8_t *buf, int nb_channels, int nb_samples, enum AVSampleFormat sample_fmt, int align)
Fill plane data pointers and linesize for samples with sample format sample_fmt.
Definition: samplefmt.c:149
static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame)
Definition: utils.c:1048
void ff_thread_flush(AVCodecContext *avctx)
Wait for decoding threads to finish and reset internal state.
#define av_free(p)
static void get_subtitle_defaults(AVSubtitle *sub)
Definition: utils.c:1308
uint8_t * dump_separator
dump format separator.
Definition: avcodec.h:3419
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
#define TAG_PRINT(x)
planar YUV 4:4:4,42bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:294
as in Berlin toast format
Definition: avcodec.h:442
int len
int channels
number of audio channels
Definition: avcodec.h:2263
static av_always_inline int pthread_mutex_unlock(pthread_mutex_t *mutex)
Definition: os2threads.h:108
const int * supported_samplerates
array of supported audio samplerates, or NULL if unknown, array is terminated by 0 ...
Definition: avcodec.h:3494
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:1552
unsigned avcodec_version(void)
Return the LIBAVCODEC_VERSION_INT constant.
Definition: utils.c:3273
Y , 16bpp, little-endian.
Definition: pixfmt.h:100
char * ass
0 terminated ASS/SSA compatible event line.
Definition: avcodec.h:3794
static void * avformat_mutex
Definition: utils.c:124
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:237
unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
Definition: utils.c:1298
static int get_bit_rate(AVCodecContext *ctx)
Definition: utils.c:1314
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:302
Not part of ABI.
Definition: pixfmt.h:567
w32threads to pthreads wrapper
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1604
enum AVColorPrimaries color_primaries
Definition: frame.h:493
static const struct twinvq_data tab
unsigned int byte_buffer_size
Definition: internal.h:147
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
Wait for earlier decoding threads to finish reference pictures.
Definition: utils.c:3810
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, big-endian)
Definition: pixfmt.h:212
static int height
Definition: utils.c:158
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1422
av_cold void avcodec_register(AVCodec *codec)
Register the codec codec and initialize libavcodec.
Definition: utils.c:184
int64_t pts_correction_last_dts
PTS of the last frame.
Definition: avcodec.h:3348
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:228
int frame_number
Frame counter, set by libavcodec.
Definition: avcodec.h:2293
int height
Definition: frame.h:220
void ff_frame_thread_encoder_free(AVCodecContext *avctx)
#define av_freep(p)
int64_t pts_correction_num_faulty_pts
Current statistics for PTS correction.
Definition: avcodec.h:3345
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
signed 16 bits, planar
Definition: samplefmt.h:68
static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
Definition: utils.c:2362
AVChromaLocation
Location of chroma samples.
Definition: pixfmt.h:559
enum AVColorTransferCharacteristic color_trc
Definition: frame.h:495
uint8_t * av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
Definition: avpacket.c:324
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: utils.c:1210
int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
Definition: utils.c:3762
planar GBR 4:4:4 48bpp, little-endian
Definition: pixfmt.h:194
static av_always_inline int pthread_mutex_lock(pthread_mutex_t *mutex)
Definition: os2threads.h:101
static int add_metadata_from_side_data(AVPacket *avpkt, AVFrame *frame)
Definition: utils.c:736
static av_always_inline int64_t ff_samples_to_time_base(AVCodecContext *avctx, int64_t samples)
Rescale from sample rate to AVCodecContext.time_base.
Definition: internal.h:232
Recommmends skipping the specified number of samples.
Definition: frame.h:108
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
Definition: buffer.c:355
#define av_malloc_array(a, b)
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3495
AVMatrixEncoding
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
Definition: utils.c:3790
int ff_alloc_entries(AVCodecContext *avctx, int count)
Definition: utils.c:3819
int nb_channels
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:2050
planar YUV 4:2:2 27bpp, (1 Cr & Cb sample per 2x1 Y & A samples), little-endian
Definition: pixfmt.h:207
int avpriv_unlock_avformat(void)
Definition: utils.c:3745
const uint8_t * avpriv_find_start_code(const uint8_t *av_restrict p, const uint8_t *end, uint32_t *av_restrict state)
Definition: utils.c:3886
int debug_mv
debug Code outside libavcodec should access this field using AVOptions
Definition: avcodec.h:2879
void ff_reset_entries(AVCodecContext *avctx)
Definition: utils.c:3824
ReplayGain information in the form of the AVReplayGain struct.
Definition: frame.h:76
int(* init)(AVCodecContext *)
Definition: avcodec.h:3540
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:215
int format
Definition: internal.h:84
attribute_deprecated int type
Definition: frame.h:355
packed YUV 4:1:1, 12bpp, Cb Y0 Y1 Cr Y2 Y3
Definition: pixfmt.h:84
float min
Stereoscopic 3d metadata.
Definition: frame.h:63
AVCodecContext avctx
Definition: utils.c:854
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:87
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1400
uint8_t * byte_buffer
temporary buffer used for encoders to store their bitstream
Definition: internal.h:146
int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVSubtitle *sub)
Definition: utils.c:2244
int(* encode2)(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Encode data to an AVPacket.
Definition: avcodec.h:3553
static int ff_fast_malloc(void *ptr, unsigned int *size, size_t min_size, int zero_realloc)
Definition: mem_internal.h:27
int delay
Codec delay.
Definition: avcodec.h:1664
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition: avcodec.h:1216
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:225
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition: pixdesc.h:127
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857
int strict_std_compliance
strictly follow the standard (MPEG4, ...).
Definition: avcodec.h:2820
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:283
The data is the AVMatrixEncoding enum defined in libavutil/channel_layout.h.
Definition: frame.h:67
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1416
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:176
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:3309
A dummy ID pointing at the start of subtitle codecs.
Definition: avcodec.h:509
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:287
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:553
#define FFMAX3(a, b, c)
Definition: common.h:80
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240
static void compat_free_buffer(void *opaque, uint8_t *data)
Definition: utils.c:859
planar GBR 4:4:4 30bpp, little-endian
Definition: pixfmt.h:192
int avcodec_default_execute(AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
Definition: utils.c:1110
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
#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:3366
const char * name
Definition: opengl_enc.c:103
int last_audio_frame
An audio frame with less than required samples has been submitted and padded with silence...
Definition: internal.h:129
This side data should be associated with an audio stream and corresponds to enum AVAudioServiceType.
Definition: avcodec.h:1291
uint8_t * subtitle_header
Header containing style information for text subtitles.
Definition: avcodec.h:3236
FF_DISABLE_DEPRECATION_WARNINGS int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
Definition: utils.c:848
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:172