Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  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"
  34. #include "libavutil/channel_layout.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) {
  84.             pthread_mutex_t *tmp = av_malloc(sizeof(pthread_mutex_t));
  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)) {
  92.                 pthread_mutex_destroy(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 */
  151. static AVCodec *first_avcodec = NULL;
  152. static AVCodec **last_avcodec = &first_avcodec;
  153.  
  154. AVCodec *av_codec_next(const AVCodec *c)
  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)
  171.         ff_me_cmp_init_static();
  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.  
  184. av_cold void avcodec_register(AVCodec *codec)
  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
  200. unsigned avcodec_get_edge_width(void)
  201. {
  202.     return EDGE_WIDTH;
  203. }
  204. #endif
  205.  
  206. #if FF_API_SET_DIMENSIONS
  207. void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
  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.  
  216. int ff_set_dimensions(AVCodecContext *s, int width, int height)
  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.  
  231. int ff_set_sar(AVCodecContext *avctx, AVRational sar)
  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.  
  246. int ff_side_data_update_matrix_encoding(AVFrame *frame,
  247.                                         enum AVMatrixEncoding matrix_encoding)
  248. {
  249.     AVFrameSideData *side_data;
  250.     enum AVMatrixEncoding *data;
  251.  
  252.     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_MATRIXENCODING);
  253.     if (!side_data)
  254.         side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_MATRIXENCODING,
  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.  
  266. void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
  267.                                int linesize_align[AV_NUM_DATA_POINTERS])
  268. {
  269.     int i;
  270.     int w_align = 1;
  271.     int h_align = 1;
  272.     AVPixFmtDescriptor const *desc = av_pix_fmt_desc_get(s->pix_fmt);
  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:
  299.     case AV_PIX_FMT_YUV420P9LE:
  300.     case AV_PIX_FMT_YUV420P9BE:
  301.     case AV_PIX_FMT_YUV420P10LE:
  302.     case AV_PIX_FMT_YUV420P10BE:
  303.     case AV_PIX_FMT_YUV420P12LE:
  304.     case AV_PIX_FMT_YUV420P12BE:
  305.     case AV_PIX_FMT_YUV420P14LE:
  306.     case AV_PIX_FMT_YUV420P14BE:
  307.     case AV_PIX_FMT_YUV420P16LE:
  308.     case AV_PIX_FMT_YUV420P16BE:
  309.     case AV_PIX_FMT_YUVA420P9LE:
  310.     case AV_PIX_FMT_YUVA420P9BE:
  311.     case AV_PIX_FMT_YUVA420P10LE:
  312.     case AV_PIX_FMT_YUVA420P10BE:
  313.     case AV_PIX_FMT_YUVA420P16LE:
  314.     case AV_PIX_FMT_YUVA420P16BE:
  315.     case AV_PIX_FMT_YUV422P9LE:
  316.     case AV_PIX_FMT_YUV422P9BE:
  317.     case AV_PIX_FMT_YUV422P10LE:
  318.     case AV_PIX_FMT_YUV422P10BE:
  319.     case AV_PIX_FMT_YUV422P12LE:
  320.     case AV_PIX_FMT_YUV422P12BE:
  321.     case AV_PIX_FMT_YUV422P14LE:
  322.     case AV_PIX_FMT_YUV422P14BE:
  323.     case AV_PIX_FMT_YUV422P16LE:
  324.     case AV_PIX_FMT_YUV422P16BE:
  325.     case AV_PIX_FMT_YUVA422P9LE:
  326.     case AV_PIX_FMT_YUVA422P9BE:
  327.     case AV_PIX_FMT_YUVA422P10LE:
  328.     case AV_PIX_FMT_YUVA422P10BE:
  329.     case AV_PIX_FMT_YUVA422P16LE:
  330.     case AV_PIX_FMT_YUVA422P16BE:
  331.     case AV_PIX_FMT_YUV440P10LE:
  332.     case AV_PIX_FMT_YUV440P10BE:
  333.     case AV_PIX_FMT_YUV440P12LE:
  334.     case AV_PIX_FMT_YUV440P12BE:
  335.     case AV_PIX_FMT_YUV444P9LE:
  336.     case AV_PIX_FMT_YUV444P9BE:
  337.     case AV_PIX_FMT_YUV444P10LE:
  338.     case AV_PIX_FMT_YUV444P10BE:
  339.     case AV_PIX_FMT_YUV444P12LE:
  340.     case AV_PIX_FMT_YUV444P12BE:
  341.     case AV_PIX_FMT_YUV444P14LE:
  342.     case AV_PIX_FMT_YUV444P14BE:
  343.     case AV_PIX_FMT_YUV444P16LE:
  344.     case AV_PIX_FMT_YUV444P16BE:
  345.     case AV_PIX_FMT_YUVA444P9LE:
  346.     case AV_PIX_FMT_YUVA444P9BE:
  347.     case AV_PIX_FMT_YUVA444P10LE:
  348.     case AV_PIX_FMT_YUVA444P10BE:
  349.     case AV_PIX_FMT_YUVA444P16LE:
  350.     case AV_PIX_FMT_YUVA444P16BE:
  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:
  366.     case AV_PIX_FMT_UYYVYY411:
  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 ||
  386.             s->codec_id == AV_CODEC_ID_CINEPAK) {
  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.  
  412.     if (s->codec_id == AV_CODEC_ID_IFF_ILBM || s->codec_id == AV_CODEC_ID_IFF_BYTERUN1) {
  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.  
  434. void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height)
  435. {
  436.     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt);
  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.  
  461. enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos)
  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.     }
  469.     return AVCHROMA_LOC_UNSPECIFIED;
  470. }
  471.  
  472. int avcodec_fill_audio_frame(AVFrame *frame, int nb_channels,
  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.  
  508. static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
  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 :
  555.                                                         av_buffer_allocz);
  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.  
  607. static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
  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;
  618.         frame->extended_buf  = av_mallocz_array(frame->nb_extended_buf,
  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.  
  652. static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
  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.  
  695.     av_assert0(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
  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.  
  713. int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
  714. {
  715.     int ret;
  716.  
  717.     if ((ret = update_frame_pool(avctx, frame)) < 0)
  718.         return ret;
  719.  
  720. #if FF_API_GET_BUFFER
  721. FF_DISABLE_DEPRECATION_WARNINGS
  722.     frame->type = FF_BUFFER_TYPE_INTERNAL;
  723. FF_ENABLE_DEPRECATION_WARNINGS
  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.  
  736. static int add_metadata_from_side_data(AVPacket *avpkt, AVFrame *frame)
  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,
  744.                                             AV_PKT_DATA_STRINGS_METADATA, &size);
  745.     return av_packet_unpack_dictionary(side_metadata, size, frame_md);
  746. }
  747.  
  748. int ff_init_buffer_info(AVCodecContext *avctx, AVFrame *frame)
  749. {
  750.     AVPacket *pkt = avctx->internal->pkt;
  751.     int i;
  752.     static const struct {
  753.         enum AVPacketSideDataType packet;
  754.         enum AVFrameSideDataType frame;
  755.     } sd[] = {
  756.         { AV_PKT_DATA_REPLAYGAIN ,   AV_FRAME_DATA_REPLAYGAIN },
  757.         { AV_PKT_DATA_DISPLAYMATRIX, AV_FRAME_DATA_DISPLAYMATRIX },
  758.         { AV_PKT_DATA_STEREO3D,      AV_FRAME_DATA_STEREO3D },
  759.         { AV_PKT_DATA_AUDIO_SERVICE_TYPE, AV_FRAME_DATA_AUDIO_SERVICE_TYPE },
  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.  
  790.     if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
  791.         frame->color_primaries = avctx->color_primaries;
  792.     if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
  793.         frame->color_trc = avctx->color_trc;
  794.     if (av_frame_get_colorspace(frame) == AVCOL_SPC_UNSPECIFIED)
  795.         av_frame_set_colorspace(frame, avctx->colorspace);
  796.     if (av_frame_get_color_range(frame) == AVCOL_RANGE_UNSPECIFIED)
  797.         av_frame_set_color_range(frame, avctx->color_range);
  798.     if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
  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)
  805.             frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
  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) {
  824.                  if (av_get_channel_layout_nb_channels(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
  847. FF_DISABLE_DEPRECATION_WARNINGS
  848. int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
  849. {
  850.     return avcodec_default_get_buffer2(avctx, frame, 0);
  851. }
  852.  
  853. typedef struct CompatReleaseBufPriv {
  854.     AVCodecContext avctx;
  855.     AVFrame frame;
  856.     uint8_t avframe_padding[1024]; // hack to allow linking to a avutil with larger AVFrame
  857. } CompatReleaseBufPriv;
  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. }
  872. FF_ENABLE_DEPRECATION_WARNINGS
  873. #endif
  874.  
  875. int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
  876. {
  877.     return ff_init_buffer_info(avctx, frame);
  878. }
  879.  
  880. static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
  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
  912. FF_DISABLE_DEPRECATION_WARNINGS
  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.     }
  1026. FF_ENABLE_DEPRECATION_WARNINGS
  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.  
  1040. int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
  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.         frame->width = frame->height = 0;
  1046.     }
  1047.     return ret;
  1048. }
  1049.  
  1050. static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame)
  1051. {
  1052.     AVFrame *tmp;
  1053.     int ret;
  1054.  
  1055.     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
  1056.  
  1057.     if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
  1058.         av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
  1059.                frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
  1060.         av_frame_unref(frame);
  1061.     }
  1062.  
  1063.     ff_init_buffer_info(avctx, frame);
  1064.  
  1065.     if (!frame->data[0])
  1066.         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
  1067.  
  1068.     if (av_frame_is_writable(frame))
  1069.         return ff_decode_frame_props(avctx, frame);
  1070.  
  1071.     tmp = av_frame_alloc();
  1072.     if (!tmp)
  1073.         return AVERROR(ENOMEM);
  1074.  
  1075.     av_frame_move_ref(tmp, frame);
  1076.  
  1077.     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
  1078.     if (ret < 0) {
  1079.         av_frame_free(&tmp);
  1080.         return ret;
  1081.     }
  1082.  
  1083.     av_frame_copy(frame, tmp);
  1084.     av_frame_free(&tmp);
  1085.  
  1086.     return 0;
  1087. }
  1088.  
  1089. int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
  1090. {
  1091.     int ret = reget_buffer_internal(avctx, frame);
  1092.     if (ret < 0)
  1093.         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
  1094.     return ret;
  1095. }
  1096.  
  1097. #if FF_API_GET_BUFFER
  1098. void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic)
  1099. {
  1100.     av_assert0(s->codec_type == AVMEDIA_TYPE_VIDEO);
  1101.  
  1102.     av_frame_unref(pic);
  1103. }
  1104.  
  1105. int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic)
  1106. {
  1107.     av_assert0(0);
  1108.     return AVERROR_BUG;
  1109. }
  1110. #endif
  1111.  
  1112. int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
  1113. {
  1114.     int i;
  1115.  
  1116.     for (i = 0; i < count; i++) {
  1117.         int r = func(c, (char *)arg + i * size);
  1118.         if (ret)
  1119.             ret[i] = r;
  1120.     }
  1121.     return 0;
  1122. }
  1123.  
  1124. int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
  1125. {
  1126.     int i;
  1127.  
  1128.     for (i = 0; i < count; i++) {
  1129.         int r = func(c, arg, i, 0);
  1130.         if (ret)
  1131.             ret[i] = r;
  1132.     }
  1133.     return 0;
  1134. }
  1135.  
  1136. enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags,
  1137.                                        unsigned int fourcc)
  1138. {
  1139.     while (tags->pix_fmt >= 0) {
  1140.         if (tags->fourcc == fourcc)
  1141.             return tags->pix_fmt;
  1142.         tags++;
  1143.     }
  1144.     return AV_PIX_FMT_NONE;
  1145. }
  1146.  
  1147. static int is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
  1148. {
  1149.     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
  1150.     return desc->flags & AV_PIX_FMT_FLAG_HWACCEL;
  1151. }
  1152.  
  1153. enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
  1154. {
  1155.     while (*fmt != AV_PIX_FMT_NONE && is_hwaccel_pix_fmt(*fmt))
  1156.         ++fmt;
  1157.     return fmt[0];
  1158. }
  1159.  
  1160. static AVHWAccel *find_hwaccel(enum AVCodecID codec_id,
  1161.                                enum AVPixelFormat pix_fmt)
  1162. {
  1163.     AVHWAccel *hwaccel = NULL;
  1164.  
  1165.     while ((hwaccel = av_hwaccel_next(hwaccel)))
  1166.         if (hwaccel->id == codec_id
  1167.             && hwaccel->pix_fmt == pix_fmt)
  1168.             return hwaccel;
  1169.     return NULL;
  1170. }
  1171.  
  1172. static int setup_hwaccel(AVCodecContext *avctx,
  1173.                          const enum AVPixelFormat fmt,
  1174.                          const char *name)
  1175. {
  1176.     AVHWAccel *hwa = find_hwaccel(avctx->codec_id, fmt);
  1177.     int ret        = 0;
  1178.  
  1179.     if (!hwa) {
  1180.         av_log(avctx, AV_LOG_ERROR,
  1181.                "Could not find an AVHWAccel for the pixel format: %s",
  1182.                name);
  1183.         return AVERROR(ENOENT);
  1184.     }
  1185.  
  1186.     if (hwa->capabilities & HWACCEL_CODEC_CAP_EXPERIMENTAL &&
  1187.         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
  1188.         av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
  1189.                hwa->name);
  1190.         return AVERROR_PATCHWELCOME;
  1191.     }
  1192.  
  1193.     if (hwa->priv_data_size) {
  1194.         avctx->internal->hwaccel_priv_data = av_mallocz(hwa->priv_data_size);
  1195.         if (!avctx->internal->hwaccel_priv_data)
  1196.             return AVERROR(ENOMEM);
  1197.     }
  1198.  
  1199.     if (hwa->init) {
  1200.         ret = hwa->init(avctx);
  1201.         if (ret < 0) {
  1202.             av_freep(&avctx->internal->hwaccel_priv_data);
  1203.             return ret;
  1204.         }
  1205.     }
  1206.  
  1207.     avctx->hwaccel = hwa;
  1208.  
  1209.     return 0;
  1210. }
  1211.  
  1212. int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
  1213. {
  1214.     const AVPixFmtDescriptor *desc;
  1215.     enum AVPixelFormat *choices;
  1216.     enum AVPixelFormat ret;
  1217.     unsigned n = 0;
  1218.  
  1219.     while (fmt[n] != AV_PIX_FMT_NONE)
  1220.         ++n;
  1221.  
  1222.     av_assert0(n >= 1);
  1223.     avctx->sw_pix_fmt = fmt[n - 1];
  1224.     av_assert2(!is_hwaccel_pix_fmt(avctx->sw_pix_fmt));
  1225.  
  1226.     choices = av_malloc_array(n + 1, sizeof(*choices));
  1227.     if (!choices)
  1228.         return AV_PIX_FMT_NONE;
  1229.  
  1230.     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
  1231.  
  1232.     for (;;) {
  1233.         if (avctx->hwaccel && avctx->hwaccel->uninit)
  1234.             avctx->hwaccel->uninit(avctx);
  1235.         av_freep(&avctx->internal->hwaccel_priv_data);
  1236.         avctx->hwaccel = NULL;
  1237.  
  1238.         ret = avctx->get_format(avctx, choices);
  1239.  
  1240.         desc = av_pix_fmt_desc_get(ret);
  1241.         if (!desc) {
  1242.             ret = AV_PIX_FMT_NONE;
  1243.             break;
  1244.         }
  1245.  
  1246.         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
  1247.             break;
  1248. #if FF_API_CAP_VDPAU
  1249.         if (avctx->codec->capabilities&AV_CODEC_CAP_HWACCEL_VDPAU)
  1250.             break;
  1251. #endif
  1252.  
  1253.         if (!setup_hwaccel(avctx, ret, desc->name))
  1254.             break;
  1255.  
  1256.         /* Remove failed hwaccel from choices */
  1257.         for (n = 0; choices[n] != ret; n++)
  1258.             av_assert0(choices[n] != AV_PIX_FMT_NONE);
  1259.  
  1260.         do
  1261.             choices[n] = choices[n + 1];
  1262.         while (choices[n++] != AV_PIX_FMT_NONE);
  1263.     }
  1264.  
  1265.     av_freep(&choices);
  1266.     return ret;
  1267. }
  1268.  
  1269. #if FF_API_AVFRAME_LAVC
  1270. void avcodec_get_frame_defaults(AVFrame *frame)
  1271. {
  1272. #if LIBAVCODEC_VERSION_MAJOR >= 55
  1273.      // extended_data should explicitly be freed when needed, this code is unsafe currently
  1274.      // also this is not compatible to the <55 ABI/API
  1275.     if (frame->extended_data != frame->data && 0)
  1276.         av_freep(&frame->extended_data);
  1277. #endif
  1278.  
  1279.     memset(frame, 0, sizeof(AVFrame));
  1280.     av_frame_unref(frame);
  1281. }
  1282.  
  1283. AVFrame *avcodec_alloc_frame(void)
  1284. {
  1285.     return av_frame_alloc();
  1286. }
  1287.  
  1288. void avcodec_free_frame(AVFrame **frame)
  1289. {
  1290.     av_frame_free(frame);
  1291. }
  1292. #endif
  1293.  
  1294. MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase)
  1295. MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor)
  1296. MAKE_ACCESSORS(AVCodecContext, codec, int, lowres)
  1297. MAKE_ACCESSORS(AVCodecContext, codec, int, seek_preroll)
  1298. MAKE_ACCESSORS(AVCodecContext, codec, uint16_t*, chroma_intra_matrix)
  1299.  
  1300. unsigned av_codec_get_codec_properties(const AVCodecContext *codec)
  1301. {
  1302.     return codec->properties;
  1303. }
  1304.  
  1305. int av_codec_get_max_lowres(const AVCodec *codec)
  1306. {
  1307.     return codec->max_lowres;
  1308. }
  1309.  
  1310. static void get_subtitle_defaults(AVSubtitle *sub)
  1311. {
  1312.     memset(sub, 0, sizeof(*sub));
  1313.     sub->pts = AV_NOPTS_VALUE;
  1314. }
  1315.  
  1316. static int get_bit_rate(AVCodecContext *ctx)
  1317. {
  1318.     int bit_rate;
  1319.     int bits_per_sample;
  1320.  
  1321.     switch (ctx->codec_type) {
  1322.     case AVMEDIA_TYPE_VIDEO:
  1323.     case AVMEDIA_TYPE_DATA:
  1324.     case AVMEDIA_TYPE_SUBTITLE:
  1325.     case AVMEDIA_TYPE_ATTACHMENT:
  1326.         bit_rate = ctx->bit_rate;
  1327.         break;
  1328.     case AVMEDIA_TYPE_AUDIO:
  1329.         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
  1330.         bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
  1331.         break;
  1332.     default:
  1333.         bit_rate = 0;
  1334.         break;
  1335.     }
  1336.     return bit_rate;
  1337. }
  1338.  
  1339. int attribute_align_arg ff_codec_open2_recursive(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
  1340. {
  1341.     int ret = 0;
  1342.  
  1343.     ff_unlock_avcodec();
  1344.  
  1345.     ret = avcodec_open2(avctx, codec, options);
  1346.  
  1347.     ff_lock_avcodec(avctx, codec);
  1348.     return ret;
  1349. }
  1350.  
  1351. int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
  1352. {
  1353.     int ret = 0;
  1354.     AVDictionary *tmp = NULL;
  1355.  
  1356.     if (avcodec_is_open(avctx))
  1357.         return 0;
  1358.  
  1359.     if ((!codec && !avctx->codec)) {
  1360.         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
  1361.         return AVERROR(EINVAL);
  1362.     }
  1363.     if ((codec && avctx->codec && codec != avctx->codec)) {
  1364.         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
  1365.                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
  1366.         return AVERROR(EINVAL);
  1367.     }
  1368.     if (!codec)
  1369.         codec = avctx->codec;
  1370.  
  1371.     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
  1372.         return AVERROR(EINVAL);
  1373.  
  1374.     if (options)
  1375.         av_dict_copy(&tmp, *options, 0);
  1376.  
  1377.     ret = ff_lock_avcodec(avctx, codec);
  1378.     if (ret < 0)
  1379.         return ret;
  1380.  
  1381.     avctx->internal = av_mallocz(sizeof(AVCodecInternal));
  1382.     if (!avctx->internal) {
  1383.         ret = AVERROR(ENOMEM);
  1384.         goto end;
  1385.     }
  1386.  
  1387.     avctx->internal->pool = av_mallocz(sizeof(*avctx->internal->pool));
  1388.     if (!avctx->internal->pool) {
  1389.         ret = AVERROR(ENOMEM);
  1390.         goto free_and_end;
  1391.     }
  1392.  
  1393.     avctx->internal->to_free = av_frame_alloc();
  1394.     if (!avctx->internal->to_free) {
  1395.         ret = AVERROR(ENOMEM);
  1396.         goto free_and_end;
  1397.     }
  1398.  
  1399.     if (codec->priv_data_size > 0) {
  1400.         if (!avctx->priv_data) {
  1401.             avctx->priv_data = av_mallocz(codec->priv_data_size);
  1402.             if (!avctx->priv_data) {
  1403.                 ret = AVERROR(ENOMEM);
  1404.                 goto end;
  1405.             }
  1406.             if (codec->priv_class) {
  1407.                 *(const AVClass **)avctx->priv_data = codec->priv_class;
  1408.                 av_opt_set_defaults(avctx->priv_data);
  1409.             }
  1410.         }
  1411.         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
  1412.             goto free_and_end;
  1413.     } else {
  1414.         avctx->priv_data = NULL;
  1415.     }
  1416.     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
  1417.         goto free_and_end;
  1418.  
  1419.     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
  1420.         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist\n", codec->name);
  1421.         ret = AVERROR(EINVAL);
  1422.         goto free_and_end;
  1423.     }
  1424.  
  1425.     // only call ff_set_dimensions() for non H.264/VP6F codecs so as not to overwrite previously setup dimensions
  1426.     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
  1427.           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F))) {
  1428.     if (avctx->coded_width && avctx->coded_height)
  1429.         ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
  1430.     else if (avctx->width && avctx->height)
  1431.         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
  1432.     if (ret < 0)
  1433.         goto free_and_end;
  1434.     }
  1435.  
  1436.     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
  1437.         && (  av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
  1438.            || av_image_check_size(avctx->width,       avctx->height,       0, avctx) < 0)) {
  1439.         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
  1440.         ff_set_dimensions(avctx, 0, 0);
  1441.     }
  1442.  
  1443.     if (avctx->width > 0 && avctx->height > 0) {
  1444.         if (av_image_check_sar(avctx->width, avctx->height,
  1445.                                avctx->sample_aspect_ratio) < 0) {
  1446.             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
  1447.                    avctx->sample_aspect_ratio.num,
  1448.                    avctx->sample_aspect_ratio.den);
  1449.             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
  1450.         }
  1451.     }
  1452.  
  1453.     /* if the decoder init function was already called previously,
  1454.      * free the already allocated subtitle_header before overwriting it */
  1455.     if (av_codec_is_decoder(codec))
  1456.         av_freep(&avctx->subtitle_header);
  1457.  
  1458.     if (avctx->channels > FF_SANE_NB_CHANNELS) {
  1459.         ret = AVERROR(EINVAL);
  1460.         goto free_and_end;
  1461.     }
  1462.  
  1463.     avctx->codec = codec;
  1464.     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
  1465.         avctx->codec_id == AV_CODEC_ID_NONE) {
  1466.         avctx->codec_type = codec->type;
  1467.         avctx->codec_id   = codec->id;
  1468.     }
  1469.     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
  1470.                                          && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
  1471.         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
  1472.         ret = AVERROR(EINVAL);
  1473.         goto free_and_end;
  1474.     }
  1475.     avctx->frame_number = 0;
  1476.     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
  1477.  
  1478.     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
  1479.         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
  1480.         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
  1481.         AVCodec *codec2;
  1482.         av_log(avctx, AV_LOG_ERROR,
  1483.                "The %s '%s' is experimental but experimental codecs are not enabled, "
  1484.                "add '-strict %d' if you want to use it.\n",
  1485.                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
  1486.         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
  1487.         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
  1488.             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
  1489.                 codec_string, codec2->name);
  1490.         ret = AVERROR_EXPERIMENTAL;
  1491.         goto free_and_end;
  1492.     }
  1493.  
  1494.     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
  1495.         (!avctx->time_base.num || !avctx->time_base.den)) {
  1496.         avctx->time_base.num = 1;
  1497.         avctx->time_base.den = avctx->sample_rate;
  1498.     }
  1499.  
  1500.     if (!HAVE_THREADS)
  1501.         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
  1502.  
  1503.     if (CONFIG_FRAME_THREAD_ENCODER) {
  1504.         ff_unlock_avcodec(); //we will instanciate a few encoders thus kick the counter to prevent false detection of a problem
  1505.         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
  1506.         ff_lock_avcodec(avctx, codec);
  1507.         if (ret < 0)
  1508.             goto free_and_end;
  1509.     }
  1510.  
  1511.     if (HAVE_THREADS
  1512.         && !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
  1513.         ret = ff_thread_init(avctx);
  1514.         if (ret < 0) {
  1515.             goto free_and_end;
  1516.         }
  1517.     }
  1518.     if (!HAVE_THREADS && !(codec->capabilities & AV_CODEC_CAP_AUTO_THREADS))
  1519.         avctx->thread_count = 1;
  1520.  
  1521.     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
  1522.         av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
  1523.                avctx->codec->max_lowres);
  1524.         ret = AVERROR(EINVAL);
  1525.         goto free_and_end;
  1526.     }
  1527.  
  1528. #if FF_API_VISMV
  1529.     if (avctx->debug_mv)
  1530.         av_log(avctx, AV_LOG_WARNING, "The 'vismv' option is deprecated, "
  1531.                "see the codecview filter instead.\n");
  1532. #endif
  1533.  
  1534.     if (av_codec_is_encoder(avctx->codec)) {
  1535.         int i;
  1536. #if FF_API_CODED_FRAME
  1537. FF_DISABLE_DEPRECATION_WARNINGS
  1538.         avctx->coded_frame = av_frame_alloc();
  1539.         if (!avctx->coded_frame) {
  1540.             ret = AVERROR(ENOMEM);
  1541.             goto free_and_end;
  1542.         }
  1543. FF_ENABLE_DEPRECATION_WARNINGS
  1544. #endif
  1545.         if (avctx->codec->sample_fmts) {
  1546.             for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) {
  1547.                 if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
  1548.                     break;
  1549.                 if (avctx->channels == 1 &&
  1550.                     av_get_planar_sample_fmt(avctx->sample_fmt) ==
  1551.                     av_get_planar_sample_fmt(avctx->codec->sample_fmts[i])) {
  1552.                     avctx->sample_fmt = avctx->codec->sample_fmts[i];
  1553.                     break;
  1554.                 }
  1555.             }
  1556.             if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
  1557.                 char buf[128];
  1558.                 snprintf(buf, sizeof(buf), "%d", avctx->sample_fmt);
  1559.                 av_log(avctx, AV_LOG_ERROR, "Specified sample format %s is invalid or not supported\n",
  1560.                        (char *)av_x_if_null(av_get_sample_fmt_name(avctx->sample_fmt), buf));
  1561.                 ret = AVERROR(EINVAL);
  1562.                 goto free_and_end;
  1563.             }
  1564.         }
  1565.         if (avctx->codec->pix_fmts) {
  1566.             for (i = 0; avctx->codec->pix_fmts[i] != AV_PIX_FMT_NONE; i++)
  1567.                 if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
  1568.                     break;
  1569.             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_NONE
  1570.                 && !((avctx->codec_id == AV_CODEC_ID_MJPEG || avctx->codec_id == AV_CODEC_ID_LJPEG)
  1571.                      && avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
  1572.                 char buf[128];
  1573.                 snprintf(buf, sizeof(buf), "%d", avctx->pix_fmt);
  1574.                 av_log(avctx, AV_LOG_ERROR, "Specified pixel format %s is invalid or not supported\n",
  1575.                        (char *)av_x_if_null(av_get_pix_fmt_name(avctx->pix_fmt), buf));
  1576.                 ret = AVERROR(EINVAL);
  1577.                 goto free_and_end;
  1578.             }
  1579.             if (avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ420P ||
  1580.                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ411P ||
  1581.                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ422P ||
  1582.                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ440P ||
  1583.                 avctx->codec->pix_fmts[i] == AV_PIX_FMT_YUVJ444P)
  1584.                 avctx->color_range = AVCOL_RANGE_JPEG;
  1585.         }
  1586.         if (avctx->codec->supported_samplerates) {
  1587.             for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
  1588.                 if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
  1589.                     break;
  1590.             if (avctx->codec->supported_samplerates[i] == 0) {
  1591.                 av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
  1592.                        avctx->sample_rate);
  1593.                 ret = AVERROR(EINVAL);
  1594.                 goto free_and_end;
  1595.             }
  1596.         }
  1597.         if (avctx->sample_rate < 0) {
  1598.             av_log(avctx, AV_LOG_ERROR, "Specified sample rate %d is not supported\n",
  1599.                     avctx->sample_rate);
  1600.             ret = AVERROR(EINVAL);
  1601.             goto free_and_end;
  1602.         }
  1603.         if (avctx->codec->channel_layouts) {
  1604.             if (!avctx->channel_layout) {
  1605.                 av_log(avctx, AV_LOG_WARNING, "Channel layout not specified\n");
  1606.             } else {
  1607.                 for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
  1608.                     if (avctx->channel_layout == avctx->codec->channel_layouts[i])
  1609.                         break;
  1610.                 if (avctx->codec->channel_layouts[i] == 0) {
  1611.                     char buf[512];
  1612.                     av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
  1613.                     av_log(avctx, AV_LOG_ERROR, "Specified channel layout '%s' is not supported\n", buf);
  1614.                     ret = AVERROR(EINVAL);
  1615.                     goto free_and_end;
  1616.                 }
  1617.             }
  1618.         }
  1619.         if (avctx->channel_layout && avctx->channels) {
  1620.             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
  1621.             if (channels != avctx->channels) {
  1622.                 char buf[512];
  1623.                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
  1624.                 av_log(avctx, AV_LOG_ERROR,
  1625.                        "Channel layout '%s' with %d channels does not match number of specified channels %d\n",
  1626.                        buf, channels, avctx->channels);
  1627.                 ret = AVERROR(EINVAL);
  1628.                 goto free_and_end;
  1629.             }
  1630.         } else if (avctx->channel_layout) {
  1631.             avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
  1632.         }
  1633.         if (avctx->channels < 0) {
  1634.             av_log(avctx, AV_LOG_ERROR, "Specified number of channels %d is not supported\n",
  1635.                     avctx->channels);
  1636.             ret = AVERROR(EINVAL);
  1637.             goto free_and_end;
  1638.         }
  1639.         if(avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
  1640.             if (avctx->width <= 0 || avctx->height <= 0) {
  1641.                 av_log(avctx, AV_LOG_ERROR, "dimensions not set\n");
  1642.                 ret = AVERROR(EINVAL);
  1643.                 goto free_and_end;
  1644.             }
  1645.         }
  1646.         if (   (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
  1647.             && avctx->bit_rate>0 && avctx->bit_rate<1000) {
  1648.             av_log(avctx, AV_LOG_WARNING, "Bitrate %d is extremely low, maybe you mean %dk\n", avctx->bit_rate, avctx->bit_rate);
  1649.         }
  1650.  
  1651.         if (!avctx->rc_initial_buffer_occupancy)
  1652.             avctx->rc_initial_buffer_occupancy = avctx->rc_buffer_size * 3 / 4;
  1653.     }
  1654.  
  1655.     avctx->pts_correction_num_faulty_pts =
  1656.     avctx->pts_correction_num_faulty_dts = 0;
  1657.     avctx->pts_correction_last_pts =
  1658.     avctx->pts_correction_last_dts = INT64_MIN;
  1659.  
  1660.     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
  1661.         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
  1662.         av_log(avctx, AV_LOG_WARNING,
  1663.                "gray decoding requested but not enabled at configuration time\n");
  1664.  
  1665.     if (   avctx->codec->init && (!(avctx->active_thread_type&FF_THREAD_FRAME)
  1666.         || avctx->internal->frame_thread_encoder)) {
  1667.         ret = avctx->codec->init(avctx);
  1668.         if (ret < 0) {
  1669.             goto free_and_end;
  1670.         }
  1671.     }
  1672.  
  1673.     ret=0;
  1674.  
  1675. #if FF_API_AUDIOENC_DELAY
  1676.     if (av_codec_is_encoder(avctx->codec))
  1677.         avctx->delay = avctx->initial_padding;
  1678. #endif
  1679.  
  1680.     if (av_codec_is_decoder(avctx->codec)) {
  1681.         if (!avctx->bit_rate)
  1682.             avctx->bit_rate = get_bit_rate(avctx);
  1683.         /* validate channel layout from the decoder */
  1684.         if (avctx->channel_layout) {
  1685.             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
  1686.             if (!avctx->channels)
  1687.                 avctx->channels = channels;
  1688.             else if (channels != avctx->channels) {
  1689.                 char buf[512];
  1690.                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
  1691.                 av_log(avctx, AV_LOG_WARNING,
  1692.                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
  1693.                        "ignoring specified channel layout\n",
  1694.                        buf, channels, avctx->channels);
  1695.                 avctx->channel_layout = 0;
  1696.             }
  1697.         }
  1698.         if (avctx->channels && avctx->channels < 0 ||
  1699.             avctx->channels > FF_SANE_NB_CHANNELS) {
  1700.             ret = AVERROR(EINVAL);
  1701.             goto free_and_end;
  1702.         }
  1703.         if (avctx->sub_charenc) {
  1704.             if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
  1705.                 av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
  1706.                        "supported with subtitles codecs\n");
  1707.                 ret = AVERROR(EINVAL);
  1708.                 goto free_and_end;
  1709.             } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
  1710.                 av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
  1711.                        "subtitles character encoding will be ignored\n",
  1712.                        avctx->codec_descriptor->name);
  1713.                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
  1714.             } else {
  1715.                 /* input character encoding is set for a text based subtitle
  1716.                  * codec at this point */
  1717.                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
  1718.                     avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
  1719.  
  1720.                 if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
  1721. #if CONFIG_ICONV
  1722.                     iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
  1723.                     if (cd == (iconv_t)-1) {
  1724.                         ret = AVERROR(errno);
  1725.                         av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
  1726.                                "with input character encoding \"%s\"\n", avctx->sub_charenc);
  1727.                         goto free_and_end;
  1728.                     }
  1729.                     iconv_close(cd);
  1730. #else
  1731.                     av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
  1732.                            "conversion needs a libavcodec built with iconv support "
  1733.                            "for this codec\n");
  1734.                     ret = AVERROR(ENOSYS);
  1735.                     goto free_and_end;
  1736. #endif
  1737.                 }
  1738.             }
  1739.         }
  1740.  
  1741. #if FF_API_AVCTX_TIMEBASE
  1742.         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
  1743.             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
  1744. #endif
  1745.     }
  1746.     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
  1747.         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
  1748.     }
  1749.  
  1750. end:
  1751.     ff_unlock_avcodec();
  1752.     if (options) {
  1753.         av_dict_free(options);
  1754.         *options = tmp;
  1755.     }
  1756.  
  1757.     return ret;
  1758. free_and_end:
  1759.     if (avctx->codec &&
  1760.         (avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
  1761.         avctx->codec->close(avctx);
  1762.  
  1763.     if (codec->priv_class && codec->priv_data_size)
  1764.         av_opt_free(avctx->priv_data);
  1765.     av_opt_free(avctx);
  1766.  
  1767. #if FF_API_CODED_FRAME
  1768. FF_DISABLE_DEPRECATION_WARNINGS
  1769.     av_frame_free(&avctx->coded_frame);
  1770. FF_ENABLE_DEPRECATION_WARNINGS
  1771. #endif
  1772.  
  1773.     av_dict_free(&tmp);
  1774.     av_freep(&avctx->priv_data);
  1775.     if (avctx->internal) {
  1776.         av_frame_free(&avctx->internal->to_free);
  1777.         av_freep(&avctx->internal->pool);
  1778.     }
  1779.     av_freep(&avctx->internal);
  1780.     avctx->codec = NULL;
  1781.     goto end;
  1782. }
  1783.  
  1784. int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
  1785. {
  1786.     if (avpkt->size < 0) {
  1787.         av_log(avctx, AV_LOG_ERROR, "Invalid negative user packet size %d\n", avpkt->size);
  1788.         return AVERROR(EINVAL);
  1789.     }
  1790.     if (size < 0 || size > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
  1791.         av_log(avctx, AV_LOG_ERROR, "Invalid minimum required packet size %"PRId64" (max allowed is %d)\n",
  1792.                size, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
  1793.         return AVERROR(EINVAL);
  1794.     }
  1795.  
  1796.     if (avctx && 2*min_size < size) { // FIXME The factor needs to be finetuned
  1797.         av_assert0(!avpkt->data || avpkt->data != avctx->internal->byte_buffer);
  1798.         if (!avpkt->data || avpkt->size < size) {
  1799.             av_fast_padded_malloc(&avctx->internal->byte_buffer, &avctx->internal->byte_buffer_size, size);
  1800.             avpkt->data = avctx->internal->byte_buffer;
  1801.             avpkt->size = avctx->internal->byte_buffer_size;
  1802. #if FF_API_DESTRUCT_PACKET
  1803. FF_DISABLE_DEPRECATION_WARNINGS
  1804.             avpkt->destruct = NULL;
  1805. FF_ENABLE_DEPRECATION_WARNINGS
  1806. #endif
  1807.         }
  1808.     }
  1809.  
  1810.     if (avpkt->data) {
  1811.         AVBufferRef *buf = avpkt->buf;
  1812. #if FF_API_DESTRUCT_PACKET
  1813. FF_DISABLE_DEPRECATION_WARNINGS
  1814.         void *destruct = avpkt->destruct;
  1815. FF_ENABLE_DEPRECATION_WARNINGS
  1816. #endif
  1817.  
  1818.         if (avpkt->size < size) {
  1819.             av_log(avctx, AV_LOG_ERROR, "User packet is too small (%d < %"PRId64")\n", avpkt->size, size);
  1820.             return AVERROR(EINVAL);
  1821.         }
  1822.  
  1823.         av_init_packet(avpkt);
  1824. #if FF_API_DESTRUCT_PACKET
  1825. FF_DISABLE_DEPRECATION_WARNINGS
  1826.         avpkt->destruct = destruct;
  1827. FF_ENABLE_DEPRECATION_WARNINGS
  1828. #endif
  1829.         avpkt->buf      = buf;
  1830.         avpkt->size     = size;
  1831.         return 0;
  1832.     } else {
  1833.         int ret = av_new_packet(avpkt, size);
  1834.         if (ret < 0)
  1835.             av_log(avctx, AV_LOG_ERROR, "Failed to allocate packet of size %"PRId64"\n", size);
  1836.         return ret;
  1837.     }
  1838. }
  1839.  
  1840. int ff_alloc_packet(AVPacket *avpkt, int size)
  1841. {
  1842.     return ff_alloc_packet2(NULL, avpkt, size, 0);
  1843. }
  1844.  
  1845. /**
  1846.  * Pad last frame with silence.
  1847.  */
  1848. static int pad_last_frame(AVCodecContext *s, AVFrame **dst, const AVFrame *src)
  1849. {
  1850.     AVFrame *frame = NULL;
  1851.     int ret;
  1852.  
  1853.     if (!(frame = av_frame_alloc()))
  1854.         return AVERROR(ENOMEM);
  1855.  
  1856.     frame->format         = src->format;
  1857.     frame->channel_layout = src->channel_layout;
  1858.     av_frame_set_channels(frame, av_frame_get_channels(src));
  1859.     frame->nb_samples     = s->frame_size;
  1860.     ret = av_frame_get_buffer(frame, 32);
  1861.     if (ret < 0)
  1862.         goto fail;
  1863.  
  1864.     ret = av_frame_copy_props(frame, src);
  1865.     if (ret < 0)
  1866.         goto fail;
  1867.  
  1868.     if ((ret = av_samples_copy(frame->extended_data, src->extended_data, 0, 0,
  1869.                                src->nb_samples, s->channels, s->sample_fmt)) < 0)
  1870.         goto fail;
  1871.     if ((ret = av_samples_set_silence(frame->extended_data, src->nb_samples,
  1872.                                       frame->nb_samples - src->nb_samples,
  1873.                                       s->channels, s->sample_fmt)) < 0)
  1874.         goto fail;
  1875.  
  1876.     *dst = frame;
  1877.  
  1878.     return 0;
  1879.  
  1880. fail:
  1881.     av_frame_free(&frame);
  1882.     return ret;
  1883. }
  1884.  
  1885. int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
  1886.                                               AVPacket *avpkt,
  1887.                                               const AVFrame *frame,
  1888.                                               int *got_packet_ptr)
  1889. {
  1890.     AVFrame *extended_frame = NULL;
  1891.     AVFrame *padded_frame = NULL;
  1892.     int ret;
  1893.     AVPacket user_pkt = *avpkt;
  1894.     int needs_realloc = !user_pkt.data;
  1895.  
  1896.     *got_packet_ptr = 0;
  1897.  
  1898.     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
  1899.         av_free_packet(avpkt);
  1900.         av_init_packet(avpkt);
  1901.         return 0;
  1902.     }
  1903.  
  1904.     /* ensure that extended_data is properly set */
  1905.     if (frame && !frame->extended_data) {
  1906.         if (av_sample_fmt_is_planar(avctx->sample_fmt) &&
  1907.             avctx->channels > AV_NUM_DATA_POINTERS) {
  1908.             av_log(avctx, AV_LOG_ERROR, "Encoding to a planar sample format, "
  1909.                                         "with more than %d channels, but extended_data is not set.\n",
  1910.                    AV_NUM_DATA_POINTERS);
  1911.             return AVERROR(EINVAL);
  1912.         }
  1913.         av_log(avctx, AV_LOG_WARNING, "extended_data is not set.\n");
  1914.  
  1915.         extended_frame = av_frame_alloc();
  1916.         if (!extended_frame)
  1917.             return AVERROR(ENOMEM);
  1918.  
  1919.         memcpy(extended_frame, frame, sizeof(AVFrame));
  1920.         extended_frame->extended_data = extended_frame->data;
  1921.         frame = extended_frame;
  1922.     }
  1923.  
  1924.     /* extract audio service type metadata */
  1925.     if (frame) {
  1926.         AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_AUDIO_SERVICE_TYPE);
  1927.         if (sd && sd->size >= sizeof(enum AVAudioServiceType))
  1928.             avctx->audio_service_type = *(enum AVAudioServiceType*)sd->data;
  1929.     }
  1930.  
  1931.     /* check for valid frame size */
  1932.     if (frame) {
  1933.         if (avctx->codec->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) {
  1934.             if (frame->nb_samples > avctx->frame_size) {
  1935.                 av_log(avctx, AV_LOG_ERROR, "more samples than frame size (avcodec_encode_audio2)\n");
  1936.                 ret = AVERROR(EINVAL);
  1937.                 goto end;
  1938.             }
  1939.         } else if (!(avctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)) {
  1940.             if (frame->nb_samples < avctx->frame_size &&
  1941.                 !avctx->internal->last_audio_frame) {
  1942.                 ret = pad_last_frame(avctx, &padded_frame, frame);
  1943.                 if (ret < 0)
  1944.                     goto end;
  1945.  
  1946.                 frame = padded_frame;
  1947.                 avctx->internal->last_audio_frame = 1;
  1948.             }
  1949.  
  1950.             if (frame->nb_samples != avctx->frame_size) {
  1951.                 av_log(avctx, AV_LOG_ERROR, "nb_samples (%d) != frame_size (%d) (avcodec_encode_audio2)\n", frame->nb_samples, avctx->frame_size);
  1952.                 ret = AVERROR(EINVAL);
  1953.                 goto end;
  1954.             }
  1955.         }
  1956.     }
  1957.  
  1958.     av_assert0(avctx->codec->encode2);
  1959.  
  1960.     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
  1961.     if (!ret) {
  1962.         if (*got_packet_ptr) {
  1963.             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
  1964.                 if (avpkt->pts == AV_NOPTS_VALUE)
  1965.                     avpkt->pts = frame->pts;
  1966.                 if (!avpkt->duration)
  1967.                     avpkt->duration = ff_samples_to_time_base(avctx,
  1968.                                                               frame->nb_samples);
  1969.             }
  1970.             avpkt->dts = avpkt->pts;
  1971.         } else {
  1972.             avpkt->size = 0;
  1973.         }
  1974.     }
  1975.     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
  1976.         needs_realloc = 0;
  1977.         if (user_pkt.data) {
  1978.             if (user_pkt.size >= avpkt->size) {
  1979.                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
  1980.             } else {
  1981.                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
  1982.                 avpkt->size = user_pkt.size;
  1983.                 ret = -1;
  1984.             }
  1985.             avpkt->buf      = user_pkt.buf;
  1986.             avpkt->data     = user_pkt.data;
  1987. #if FF_API_DESTRUCT_PACKET
  1988. FF_DISABLE_DEPRECATION_WARNINGS
  1989.             avpkt->destruct = user_pkt.destruct;
  1990. FF_ENABLE_DEPRECATION_WARNINGS
  1991. #endif
  1992.         } else {
  1993.             if (av_dup_packet(avpkt) < 0) {
  1994.                 ret = AVERROR(ENOMEM);
  1995.             }
  1996.         }
  1997.     }
  1998.  
  1999.     if (!ret) {
  2000.         if (needs_realloc && avpkt->data) {
  2001.             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
  2002.             if (ret >= 0)
  2003.                 avpkt->data = avpkt->buf->data;
  2004.         }
  2005.  
  2006.         avctx->frame_number++;
  2007.     }
  2008.  
  2009.     if (ret < 0 || !*got_packet_ptr) {
  2010.         av_free_packet(avpkt);
  2011.         av_init_packet(avpkt);
  2012.         goto end;
  2013.     }
  2014.  
  2015.     /* NOTE: if we add any audio encoders which output non-keyframe packets,
  2016.      *       this needs to be moved to the encoders, but for now we can do it
  2017.      *       here to simplify things */
  2018.     avpkt->flags |= AV_PKT_FLAG_KEY;
  2019.  
  2020. end:
  2021.     av_frame_free(&padded_frame);
  2022.     av_free(extended_frame);
  2023.  
  2024. #if FF_API_AUDIOENC_DELAY
  2025.     avctx->delay = avctx->initial_padding;
  2026. #endif
  2027.  
  2028.     return ret;
  2029. }
  2030.  
  2031. #if FF_API_OLD_ENCODE_AUDIO
  2032. int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
  2033.                                              uint8_t *buf, int buf_size,
  2034.                                              const short *samples)
  2035. {
  2036.     AVPacket pkt;
  2037.     AVFrame *frame;
  2038.     int ret, samples_size, got_packet;
  2039.  
  2040.     av_init_packet(&pkt);
  2041.     pkt.data = buf;
  2042.     pkt.size = buf_size;
  2043.  
  2044.     if (samples) {
  2045.         frame = av_frame_alloc();
  2046.         if (!frame)
  2047.             return AVERROR(ENOMEM);
  2048.  
  2049.         if (avctx->frame_size) {
  2050.             frame->nb_samples = avctx->frame_size;
  2051.         } else {
  2052.             /* if frame_size is not set, the number of samples must be
  2053.              * calculated from the buffer size */
  2054.             int64_t nb_samples;
  2055.             if (!av_get_bits_per_sample(avctx->codec_id)) {
  2056.                 av_log(avctx, AV_LOG_ERROR, "avcodec_encode_audio() does not "
  2057.                                             "support this codec\n");
  2058.                 av_frame_free(&frame);
  2059.                 return AVERROR(EINVAL);
  2060.             }
  2061.             nb_samples = (int64_t)buf_size * 8 /
  2062.                          (av_get_bits_per_sample(avctx->codec_id) *
  2063.                           avctx->channels);
  2064.             if (nb_samples >= INT_MAX) {
  2065.                 av_frame_free(&frame);
  2066.                 return AVERROR(EINVAL);
  2067.             }
  2068.             frame->nb_samples = nb_samples;
  2069.         }
  2070.  
  2071.         /* it is assumed that the samples buffer is large enough based on the
  2072.          * relevant parameters */
  2073.         samples_size = av_samples_get_buffer_size(NULL, avctx->channels,
  2074.                                                   frame->nb_samples,
  2075.                                                   avctx->sample_fmt, 1);
  2076.         if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
  2077.                                             avctx->sample_fmt,
  2078.                                             (const uint8_t *)samples,
  2079.                                             samples_size, 1)) < 0) {
  2080.             av_frame_free(&frame);
  2081.             return ret;
  2082.         }
  2083.  
  2084.         /* fabricate frame pts from sample count.
  2085.          * this is needed because the avcodec_encode_audio() API does not have
  2086.          * a way for the user to provide pts */
  2087.         if (avctx->sample_rate && avctx->time_base.num)
  2088.             frame->pts = ff_samples_to_time_base(avctx,
  2089.                                                  avctx->internal->sample_count);
  2090.         else
  2091.             frame->pts = AV_NOPTS_VALUE;
  2092.         avctx->internal->sample_count += frame->nb_samples;
  2093.     } else {
  2094.         frame = NULL;
  2095.     }
  2096.  
  2097.     got_packet = 0;
  2098.     ret = avcodec_encode_audio2(avctx, &pkt, frame, &got_packet);
  2099. #if FF_API_CODED_FRAME
  2100. FF_DISABLE_DEPRECATION_WARNINGS
  2101.     if (!ret && got_packet && avctx->coded_frame) {
  2102.         avctx->coded_frame->pts       = pkt.pts;
  2103.         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
  2104.     }
  2105. FF_ENABLE_DEPRECATION_WARNINGS
  2106. #endif
  2107.  
  2108.     /* free any side data since we cannot return it */
  2109.     av_packet_free_side_data(&pkt);
  2110.  
  2111.     if (frame && frame->extended_data != frame->data)
  2112.         av_freep(&frame->extended_data);
  2113.  
  2114.     av_frame_free(&frame);
  2115.     return ret ? ret : pkt.size;
  2116. }
  2117.  
  2118. #endif
  2119.  
  2120. #if FF_API_OLD_ENCODE_VIDEO
  2121. int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2122.                                              const AVFrame *pict)
  2123. {
  2124.     AVPacket pkt;
  2125.     int ret, got_packet = 0;
  2126.  
  2127.     if (buf_size < AV_INPUT_BUFFER_MIN_SIZE) {
  2128.         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
  2129.         return -1;
  2130.     }
  2131.  
  2132.     av_init_packet(&pkt);
  2133.     pkt.data = buf;
  2134.     pkt.size = buf_size;
  2135.  
  2136.     ret = avcodec_encode_video2(avctx, &pkt, pict, &got_packet);
  2137. #if FF_API_CODED_FRAME
  2138. FF_DISABLE_DEPRECATION_WARNINGS
  2139.     if (!ret && got_packet && avctx->coded_frame) {
  2140.         avctx->coded_frame->pts       = pkt.pts;
  2141.         avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
  2142.         if (avctx->codec->capabilities & AV_CODEC_CAP_INTRA_ONLY)
  2143.             avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  2144.     }
  2145. FF_ENABLE_DEPRECATION_WARNINGS
  2146. #endif
  2147.  
  2148.     /* free any side data since we cannot return it */
  2149.     if (pkt.side_data_elems > 0) {
  2150.         int i;
  2151.         for (i = 0; i < pkt.side_data_elems; i++)
  2152.             av_free(pkt.side_data[i].data);
  2153.         av_freep(&pkt.side_data);
  2154.         pkt.side_data_elems = 0;
  2155.     }
  2156.  
  2157.     return ret ? ret : pkt.size;
  2158. }
  2159.  
  2160. #endif
  2161.  
  2162. int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
  2163.                                               AVPacket *avpkt,
  2164.                                               const AVFrame *frame,
  2165.                                               int *got_packet_ptr)
  2166. {
  2167.     int ret;
  2168.     AVPacket user_pkt = *avpkt;
  2169.     int needs_realloc = !user_pkt.data;
  2170.  
  2171.     *got_packet_ptr = 0;
  2172.  
  2173.     if(CONFIG_FRAME_THREAD_ENCODER &&
  2174.        avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))
  2175.         return ff_thread_video_encode_frame(avctx, avpkt, frame, got_packet_ptr);
  2176.  
  2177.     if ((avctx->flags&AV_CODEC_FLAG_PASS1) && avctx->stats_out)
  2178.         avctx->stats_out[0] = '\0';
  2179.  
  2180.     if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY) && !frame) {
  2181.         av_free_packet(avpkt);
  2182.         av_init_packet(avpkt);
  2183.         avpkt->size = 0;
  2184.         return 0;
  2185.     }
  2186.  
  2187.     if (av_image_check_size(avctx->width, avctx->height, 0, avctx))
  2188.         return AVERROR(EINVAL);
  2189.  
  2190.     if (frame && frame->format == AV_PIX_FMT_NONE)
  2191.         av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
  2192.     if (frame && (frame->width == 0 || frame->height == 0))
  2193.         av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
  2194.  
  2195.     av_assert0(avctx->codec->encode2);
  2196.  
  2197.     ret = avctx->codec->encode2(avctx, avpkt, frame, got_packet_ptr);
  2198.     av_assert0(ret <= 0);
  2199.  
  2200.     if (avpkt->data && avpkt->data == avctx->internal->byte_buffer) {
  2201.         needs_realloc = 0;
  2202.         if (user_pkt.data) {
  2203.             if (user_pkt.size >= avpkt->size) {
  2204.                 memcpy(user_pkt.data, avpkt->data, avpkt->size);
  2205.             } else {
  2206.                 av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
  2207.                 avpkt->size = user_pkt.size;
  2208.                 ret = -1;
  2209.             }
  2210.             avpkt->buf      = user_pkt.buf;
  2211.             avpkt->data     = user_pkt.data;
  2212. #if FF_API_DESTRUCT_PACKET
  2213. FF_DISABLE_DEPRECATION_WARNINGS
  2214.             avpkt->destruct = user_pkt.destruct;
  2215. FF_ENABLE_DEPRECATION_WARNINGS
  2216. #endif
  2217.         } else {
  2218.             if (av_dup_packet(avpkt) < 0) {
  2219.                 ret = AVERROR(ENOMEM);
  2220.             }
  2221.         }
  2222.     }
  2223.  
  2224.     if (!ret) {
  2225.         if (!*got_packet_ptr)
  2226.             avpkt->size = 0;
  2227.         else if (!(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
  2228.             avpkt->pts = avpkt->dts = frame->pts;
  2229.  
  2230.         if (needs_realloc && avpkt->data) {
  2231.             ret = av_buffer_realloc(&avpkt->buf, avpkt->size + AV_INPUT_BUFFER_PADDING_SIZE);
  2232.             if (ret >= 0)
  2233.                 avpkt->data = avpkt->buf->data;
  2234.         }
  2235.  
  2236.         avctx->frame_number++;
  2237.     }
  2238.  
  2239.     if (ret < 0 || !*got_packet_ptr)
  2240.         av_free_packet(avpkt);
  2241.  
  2242.     emms_c();
  2243.     return ret;
  2244. }
  2245.  
  2246. int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  2247.                             const AVSubtitle *sub)
  2248. {
  2249.     int ret;
  2250.     if (sub->start_display_time) {
  2251.         av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
  2252.         return -1;
  2253.     }
  2254.  
  2255.     ret = avctx->codec->encode_sub(avctx, buf, buf_size, sub);
  2256.     avctx->frame_number++;
  2257.     return ret;
  2258. }
  2259.  
  2260. /**
  2261.  * Attempt to guess proper monotonic timestamps for decoded video frames
  2262.  * which might have incorrect times. Input timestamps may wrap around, in
  2263.  * which case the output will as well.
  2264.  *
  2265.  * @param pts the pts field of the decoded AVPacket, as passed through
  2266.  * AVFrame.pkt_pts
  2267.  * @param dts the dts field of the decoded AVPacket
  2268.  * @return one of the input values, may be AV_NOPTS_VALUE
  2269.  */
  2270. static int64_t guess_correct_pts(AVCodecContext *ctx,
  2271.                                  int64_t reordered_pts, int64_t dts)
  2272. {
  2273.     int64_t pts = AV_NOPTS_VALUE;
  2274.  
  2275.     if (dts != AV_NOPTS_VALUE) {
  2276.         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
  2277.         ctx->pts_correction_last_dts = dts;
  2278.     } else if (reordered_pts != AV_NOPTS_VALUE)
  2279.         ctx->pts_correction_last_dts = reordered_pts;
  2280.  
  2281.     if (reordered_pts != AV_NOPTS_VALUE) {
  2282.         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
  2283.         ctx->pts_correction_last_pts = reordered_pts;
  2284.     } else if(dts != AV_NOPTS_VALUE)
  2285.         ctx->pts_correction_last_pts = dts;
  2286.  
  2287.     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
  2288.        && reordered_pts != AV_NOPTS_VALUE)
  2289.         pts = reordered_pts;
  2290.     else
  2291.         pts = dts;
  2292.  
  2293.     return pts;
  2294. }
  2295.  
  2296. static int apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
  2297. {
  2298.     int size = 0, ret;
  2299.     const uint8_t *data;
  2300.     uint32_t flags;
  2301.     int64_t val;
  2302.  
  2303.     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
  2304.     if (!data)
  2305.         return 0;
  2306.  
  2307.     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
  2308.         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
  2309.                "changes, but PARAM_CHANGE side data was sent to it.\n");
  2310.         return AVERROR(EINVAL);
  2311.     }
  2312.  
  2313.     if (size < 4)
  2314.         goto fail;
  2315.  
  2316.     flags = bytestream_get_le32(&data);
  2317.     size -= 4;
  2318.  
  2319.     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
  2320.         if (size < 4)
  2321.             goto fail;
  2322.         val = bytestream_get_le32(&data);
  2323.         if (val <= 0 || val > INT_MAX) {
  2324.             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
  2325.             return AVERROR_INVALIDDATA;
  2326.         }
  2327.         avctx->channels = val;
  2328.         size -= 4;
  2329.     }
  2330.     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
  2331.         if (size < 8)
  2332.             goto fail;
  2333.         avctx->channel_layout = bytestream_get_le64(&data);
  2334.         size -= 8;
  2335.     }
  2336.     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
  2337.         if (size < 4)
  2338.             goto fail;
  2339.         val = bytestream_get_le32(&data);
  2340.         if (val <= 0 || val > INT_MAX) {
  2341.             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
  2342.             return AVERROR_INVALIDDATA;
  2343.         }
  2344.         avctx->sample_rate = val;
  2345.         size -= 4;
  2346.     }
  2347.     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
  2348.         if (size < 8)
  2349.             goto fail;
  2350.         avctx->width  = bytestream_get_le32(&data);
  2351.         avctx->height = bytestream_get_le32(&data);
  2352.         size -= 8;
  2353.         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
  2354.         if (ret < 0)
  2355.             return ret;
  2356.     }
  2357.  
  2358.     return 0;
  2359. fail:
  2360.     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
  2361.     return AVERROR_INVALIDDATA;
  2362. }
  2363.  
  2364. static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
  2365. {
  2366.     int ret;
  2367.  
  2368.     /* move the original frame to our backup */
  2369.     av_frame_unref(avci->to_free);
  2370.     av_frame_move_ref(avci->to_free, frame);
  2371.  
  2372.     /* now copy everything except the AVBufferRefs back
  2373.      * note that we make a COPY of the side data, so calling av_frame_free() on
  2374.      * the caller's frame will work properly */
  2375.     ret = av_frame_copy_props(frame, avci->to_free);
  2376.     if (ret < 0)
  2377.         return ret;
  2378.  
  2379.     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
  2380.     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
  2381.     if (avci->to_free->extended_data != avci->to_free->data) {
  2382.         int planes = av_frame_get_channels(avci->to_free);
  2383.         int size   = planes * sizeof(*frame->extended_data);
  2384.  
  2385.         if (!size) {
  2386.             av_frame_unref(frame);
  2387.             return AVERROR_BUG;
  2388.         }
  2389.  
  2390.         frame->extended_data = av_malloc(size);
  2391.         if (!frame->extended_data) {
  2392.             av_frame_unref(frame);
  2393.             return AVERROR(ENOMEM);
  2394.         }
  2395.         memcpy(frame->extended_data, avci->to_free->extended_data,
  2396.                size);
  2397.     } else
  2398.         frame->extended_data = frame->data;
  2399.  
  2400.     frame->format         = avci->to_free->format;
  2401.     frame->width          = avci->to_free->width;
  2402.     frame->height         = avci->to_free->height;
  2403.     frame->channel_layout = avci->to_free->channel_layout;
  2404.     frame->nb_samples     = avci->to_free->nb_samples;
  2405.     av_frame_set_channels(frame, av_frame_get_channels(avci->to_free));
  2406.  
  2407.     return 0;
  2408. }
  2409.  
  2410. int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
  2411.                                               int *got_picture_ptr,
  2412.                                               const AVPacket *avpkt)
  2413. {
  2414.     AVCodecInternal *avci = avctx->internal;
  2415.     int ret;
  2416.     // copy to ensure we do not change avpkt
  2417.     AVPacket tmp = *avpkt;
  2418.  
  2419.     if (!avctx->codec)
  2420.         return AVERROR(EINVAL);
  2421.     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
  2422.         av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");
  2423.         return AVERROR(EINVAL);
  2424.     }
  2425.  
  2426.     *got_picture_ptr = 0;
  2427.     if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
  2428.         return AVERROR(EINVAL);
  2429.  
  2430.     av_frame_unref(picture);
  2431.  
  2432.     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size ||
  2433.         (avctx->active_thread_type & FF_THREAD_FRAME)) {
  2434.         int did_split = av_packet_split_side_data(&tmp);
  2435.         ret = apply_param_change(avctx, &tmp);
  2436.         if (ret < 0) {
  2437.             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
  2438.             if (avctx->err_recognition & AV_EF_EXPLODE)
  2439.                 goto fail;
  2440.         }
  2441.  
  2442.         avctx->internal->pkt = &tmp;
  2443.         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
  2444.             ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
  2445.                                          &tmp);
  2446.         else {
  2447.             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
  2448.                                        &tmp);
  2449.             picture->pkt_dts = avpkt->dts;
  2450.  
  2451.             if(!avctx->has_b_frames){
  2452.                 av_frame_set_pkt_pos(picture, avpkt->pos);
  2453.             }
  2454.             //FIXME these should be under if(!avctx->has_b_frames)
  2455.             /* get_buffer is supposed to set frame parameters */
  2456.             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
  2457.                 if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
  2458.                 if (!picture->width)                      picture->width               = avctx->width;
  2459.                 if (!picture->height)                     picture->height              = avctx->height;
  2460.                 if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;
  2461.             }
  2462.         }
  2463.  
  2464. fail:
  2465.         emms_c(); //needed to avoid an emms_c() call before every return;
  2466.  
  2467.         avctx->internal->pkt = NULL;
  2468.         if (did_split) {
  2469.             av_packet_free_side_data(&tmp);
  2470.             if(ret == tmp.size)
  2471.                 ret = avpkt->size;
  2472.         }
  2473.  
  2474.         if (*got_picture_ptr) {
  2475.             if (!avctx->refcounted_frames) {
  2476.                 int err = unrefcount_frame(avci, picture);
  2477.                 if (err < 0)
  2478.                     return err;
  2479.             }
  2480.  
  2481.             avctx->frame_number++;
  2482.             av_frame_set_best_effort_timestamp(picture,
  2483.                                                guess_correct_pts(avctx,
  2484.                                                                  picture->pkt_pts,
  2485.                                                                  picture->pkt_dts));
  2486.         } else
  2487.             av_frame_unref(picture);
  2488.     } else
  2489.         ret = 0;
  2490.  
  2491.     /* many decoders assign whole AVFrames, thus overwriting extended_data;
  2492.      * make sure it's set correctly */
  2493.     av_assert0(!picture->extended_data || picture->extended_data == picture->data);
  2494.  
  2495. #if FF_API_AVCTX_TIMEBASE
  2496.     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
  2497.         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
  2498. #endif
  2499.  
  2500.     return ret;
  2501. }
  2502.  
  2503. #if FF_API_OLD_DECODE_AUDIO
  2504. int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
  2505.                                               int *frame_size_ptr,
  2506.                                               AVPacket *avpkt)
  2507. {
  2508.     AVFrame *frame = av_frame_alloc();
  2509.     int ret, got_frame = 0;
  2510.  
  2511.     if (!frame)
  2512.         return AVERROR(ENOMEM);
  2513. #if FF_API_GET_BUFFER
  2514. FF_DISABLE_DEPRECATION_WARNINGS
  2515.     if (avctx->get_buffer != avcodec_default_get_buffer) {
  2516.         av_log(avctx, AV_LOG_ERROR, "Custom get_buffer() for use with"
  2517.                                     "avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer\n");
  2518.         av_log(avctx, AV_LOG_ERROR, "Please port your application to "
  2519.                                     "avcodec_decode_audio4()\n");
  2520.         avctx->get_buffer = avcodec_default_get_buffer;
  2521.         avctx->release_buffer = avcodec_default_release_buffer;
  2522.     }
  2523. FF_ENABLE_DEPRECATION_WARNINGS
  2524. #endif
  2525.  
  2526.     ret = avcodec_decode_audio4(avctx, frame, &got_frame, avpkt);
  2527.  
  2528.     if (ret >= 0 && got_frame) {
  2529.         int ch, plane_size;
  2530.         int planar    = av_sample_fmt_is_planar(avctx->sample_fmt);
  2531.         int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
  2532.                                                    frame->nb_samples,
  2533.                                                    avctx->sample_fmt, 1);
  2534.         if (*frame_size_ptr < data_size) {
  2535.             av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
  2536.                                         "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
  2537.             av_frame_free(&frame);
  2538.             return AVERROR(EINVAL);
  2539.         }
  2540.  
  2541.         memcpy(samples, frame->extended_data[0], plane_size);
  2542.  
  2543.         if (planar && avctx->channels > 1) {
  2544.             uint8_t *out = ((uint8_t *)samples) + plane_size;
  2545.             for (ch = 1; ch < avctx->channels; ch++) {
  2546.                 memcpy(out, frame->extended_data[ch], plane_size);
  2547.                 out += plane_size;
  2548.             }
  2549.         }
  2550.         *frame_size_ptr = data_size;
  2551.     } else {
  2552.         *frame_size_ptr = 0;
  2553.     }
  2554.     av_frame_free(&frame);
  2555.     return ret;
  2556. }
  2557.  
  2558. #endif
  2559.  
  2560. int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
  2561.                                               AVFrame *frame,
  2562.                                               int *got_frame_ptr,
  2563.                                               const AVPacket *avpkt)
  2564. {
  2565.     AVCodecInternal *avci = avctx->internal;
  2566.     int ret = 0;
  2567.  
  2568.     *got_frame_ptr = 0;
  2569.  
  2570.     if (!avpkt->data && avpkt->size) {
  2571.         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
  2572.         return AVERROR(EINVAL);
  2573.     }
  2574.     if (!avctx->codec)
  2575.         return AVERROR(EINVAL);
  2576.     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
  2577.         av_log(avctx, AV_LOG_ERROR, "Invalid media type for audio\n");
  2578.         return AVERROR(EINVAL);
  2579.     }
  2580.  
  2581.     av_frame_unref(frame);
  2582.  
  2583.     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {
  2584.         uint8_t *side;
  2585.         int side_size;
  2586.         uint32_t discard_padding = 0;
  2587.         uint8_t skip_reason = 0;
  2588.         uint8_t discard_reason = 0;
  2589.         // copy to ensure we do not change avpkt
  2590.         AVPacket tmp = *avpkt;
  2591.         int did_split = av_packet_split_side_data(&tmp);
  2592.         ret = apply_param_change(avctx, &tmp);
  2593.         if (ret < 0) {
  2594.             av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
  2595.             if (avctx->err_recognition & AV_EF_EXPLODE)
  2596.                 goto fail;
  2597.         }
  2598.  
  2599.         avctx->internal->pkt = &tmp;
  2600.         if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
  2601.             ret = ff_thread_decode_frame(avctx, frame, got_frame_ptr, &tmp);
  2602.         else {
  2603.             ret = avctx->codec->decode(avctx, frame, got_frame_ptr, &tmp);
  2604.             av_assert0(ret <= tmp.size);
  2605.             frame->pkt_dts = avpkt->dts;
  2606.         }
  2607.         if (ret >= 0 && *got_frame_ptr) {
  2608.             avctx->frame_number++;
  2609.             av_frame_set_best_effort_timestamp(frame,
  2610.                                                guess_correct_pts(avctx,
  2611.                                                                  frame->pkt_pts,
  2612.                                                                  frame->pkt_dts));
  2613.             if (frame->format == AV_SAMPLE_FMT_NONE)
  2614.                 frame->format = avctx->sample_fmt;
  2615.             if (!frame->channel_layout)
  2616.                 frame->channel_layout = avctx->channel_layout;
  2617.             if (!av_frame_get_channels(frame))
  2618.                 av_frame_set_channels(frame, avctx->channels);
  2619.             if (!frame->sample_rate)
  2620.                 frame->sample_rate = avctx->sample_rate;
  2621.         }
  2622.  
  2623.         side= av_packet_get_side_data(avctx->internal->pkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
  2624.         if(side && side_size>=10) {
  2625.             avctx->internal->skip_samples = AV_RL32(side);
  2626.             discard_padding = AV_RL32(side + 4);
  2627.             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
  2628.                    avctx->internal->skip_samples, (int)discard_padding);
  2629.             skip_reason = AV_RL8(side + 8);
  2630.             discard_reason = AV_RL8(side + 9);
  2631.         }
  2632.         if (avctx->internal->skip_samples && *got_frame_ptr &&
  2633.             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
  2634.             if(frame->nb_samples <= avctx->internal->skip_samples){
  2635.                 *got_frame_ptr = 0;
  2636.                 avctx->internal->skip_samples -= frame->nb_samples;
  2637.                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
  2638.                        avctx->internal->skip_samples);
  2639.             } else {
  2640.                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avctx->internal->skip_samples,
  2641.                                 frame->nb_samples - avctx->internal->skip_samples, avctx->channels, frame->format);
  2642.                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
  2643.                     int64_t diff_ts = av_rescale_q(avctx->internal->skip_samples,
  2644.                                                    (AVRational){1, avctx->sample_rate},
  2645.                                                    avctx->pkt_timebase);
  2646.                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
  2647.                         frame->pkt_pts += diff_ts;
  2648.                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
  2649.                         frame->pkt_dts += diff_ts;
  2650.                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
  2651.                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
  2652.                 } else {
  2653.                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
  2654.                 }
  2655.                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
  2656.                        avctx->internal->skip_samples, frame->nb_samples);
  2657.                 frame->nb_samples -= avctx->internal->skip_samples;
  2658.                 avctx->internal->skip_samples = 0;
  2659.             }
  2660.         }
  2661.  
  2662.         if (discard_padding > 0 && discard_padding <= frame->nb_samples && *got_frame_ptr &&
  2663.             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
  2664.             if (discard_padding == frame->nb_samples) {
  2665.                 *got_frame_ptr = 0;
  2666.             } else {
  2667.                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
  2668.                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
  2669.                                                    (AVRational){1, avctx->sample_rate},
  2670.                                                    avctx->pkt_timebase);
  2671.                     if (av_frame_get_pkt_duration(frame) >= diff_ts)
  2672.                         av_frame_set_pkt_duration(frame, av_frame_get_pkt_duration(frame) - diff_ts);
  2673.                 } else {
  2674.                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
  2675.                 }
  2676.                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
  2677.                        (int)discard_padding, frame->nb_samples);
  2678.                 frame->nb_samples -= discard_padding;
  2679.             }
  2680.         }
  2681.  
  2682.         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && *got_frame_ptr) {
  2683.             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
  2684.             if (fside) {
  2685.                 AV_WL32(fside->data, avctx->internal->skip_samples);
  2686.                 AV_WL32(fside->data + 4, discard_padding);
  2687.                 AV_WL8(fside->data + 8, skip_reason);
  2688.                 AV_WL8(fside->data + 9, discard_reason);
  2689.                 avctx->internal->skip_samples = 0;
  2690.             }
  2691.         }
  2692. fail:
  2693.         avctx->internal->pkt = NULL;
  2694.         if (did_split) {
  2695.             av_packet_free_side_data(&tmp);
  2696.             if(ret == tmp.size)
  2697.                 ret = avpkt->size;
  2698.         }
  2699.  
  2700.         if (ret >= 0 && *got_frame_ptr) {
  2701.             if (!avctx->refcounted_frames) {
  2702.                 int err = unrefcount_frame(avci, frame);
  2703.                 if (err < 0)
  2704.                     return err;
  2705.             }
  2706.         } else
  2707.             av_frame_unref(frame);
  2708.     }
  2709.  
  2710.     return ret;
  2711. }
  2712.  
  2713. #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
  2714. static int recode_subtitle(AVCodecContext *avctx,
  2715.                            AVPacket *outpkt, const AVPacket *inpkt)
  2716. {
  2717. #if CONFIG_ICONV
  2718.     iconv_t cd = (iconv_t)-1;
  2719.     int ret = 0;
  2720.     char *inb, *outb;
  2721.     size_t inl, outl;
  2722.     AVPacket tmp;
  2723. #endif
  2724.  
  2725.     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
  2726.         return 0;
  2727.  
  2728. #if CONFIG_ICONV
  2729.     cd = iconv_open("UTF-8", avctx->sub_charenc);
  2730.     av_assert0(cd != (iconv_t)-1);
  2731.  
  2732.     inb = inpkt->data;
  2733.     inl = inpkt->size;
  2734.  
  2735.     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
  2736.         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
  2737.         ret = AVERROR(ENOMEM);
  2738.         goto end;
  2739.     }
  2740.  
  2741.     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
  2742.     if (ret < 0)
  2743.         goto end;
  2744.     outpkt->buf  = tmp.buf;
  2745.     outpkt->data = tmp.data;
  2746.     outpkt->size = tmp.size;
  2747.     outb = outpkt->data;
  2748.     outl = outpkt->size;
  2749.  
  2750.     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
  2751.         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
  2752.         outl >= outpkt->size || inl != 0) {
  2753.         ret = FFMIN(AVERROR(errno), -1);
  2754.         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
  2755.                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
  2756.         av_free_packet(&tmp);
  2757.         goto end;
  2758.     }
  2759.     outpkt->size -= outl;
  2760.     memset(outpkt->data + outpkt->size, 0, outl);
  2761.  
  2762. end:
  2763.     if (cd != (iconv_t)-1)
  2764.         iconv_close(cd);
  2765.     return ret;
  2766. #else
  2767.     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
  2768.     return AVERROR(EINVAL);
  2769. #endif
  2770. }
  2771.  
  2772. static int utf8_check(const uint8_t *str)
  2773. {
  2774.     const uint8_t *byte;
  2775.     uint32_t codepoint, min;
  2776.  
  2777.     while (*str) {
  2778.         byte = str;
  2779.         GET_UTF8(codepoint, *(byte++), return 0;);
  2780.         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
  2781.               1 << (5 * (byte - str) - 4);
  2782.         if (codepoint < min || codepoint >= 0x110000 ||
  2783.             codepoint == 0xFFFE /* BOM */ ||
  2784.             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
  2785.             return 0;
  2786.         str = byte;
  2787.     }
  2788.     return 1;
  2789. }
  2790.  
  2791. int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
  2792.                              int *got_sub_ptr,
  2793.                              AVPacket *avpkt)
  2794. {
  2795.     int i, ret = 0;
  2796.  
  2797.     if (!avpkt->data && avpkt->size) {
  2798.         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
  2799.         return AVERROR(EINVAL);
  2800.     }
  2801.     if (!avctx->codec)
  2802.         return AVERROR(EINVAL);
  2803.     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
  2804.         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
  2805.         return AVERROR(EINVAL);
  2806.     }
  2807.  
  2808.     *got_sub_ptr = 0;
  2809.     get_subtitle_defaults(sub);
  2810.  
  2811.     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
  2812.         AVPacket pkt_recoded;
  2813.         AVPacket tmp = *avpkt;
  2814.         int did_split = av_packet_split_side_data(&tmp);
  2815.         //apply_param_change(avctx, &tmp);
  2816.  
  2817.         if (did_split) {
  2818.             /* FFMIN() prevents overflow in case the packet wasn't allocated with
  2819.              * proper padding.
  2820.              * If the side data is smaller than the buffer padding size, the
  2821.              * remaining bytes should have already been filled with zeros by the
  2822.              * original packet allocation anyway. */
  2823.             memset(tmp.data + tmp.size, 0,
  2824.                    FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
  2825.         }
  2826.  
  2827.         pkt_recoded = tmp;
  2828.         ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
  2829.         if (ret < 0) {
  2830.             *got_sub_ptr = 0;
  2831.         } else {
  2832.             avctx->internal->pkt = &pkt_recoded;
  2833.  
  2834.             if (avctx->pkt_timebase.den && avpkt->pts != AV_NOPTS_VALUE)
  2835.                 sub->pts = av_rescale_q(avpkt->pts,
  2836.                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
  2837.             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
  2838.             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
  2839.                        !!*got_sub_ptr >= !!sub->num_rects);
  2840.  
  2841.             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
  2842.                 avctx->pkt_timebase.num) {
  2843.                 AVRational ms = { 1, 1000 };
  2844.                 sub->end_display_time = av_rescale_q(avpkt->duration,
  2845.                                                      avctx->pkt_timebase, ms);
  2846.             }
  2847.  
  2848.             for (i = 0; i < sub->num_rects; i++) {
  2849.                 if (sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
  2850.                     av_log(avctx, AV_LOG_ERROR,
  2851.                            "Invalid UTF-8 in decoded subtitles text; "
  2852.                            "maybe missing -sub_charenc option\n");
  2853.                     avsubtitle_free(sub);
  2854.                     return AVERROR_INVALIDDATA;
  2855.                 }
  2856.             }
  2857.  
  2858.             if (tmp.data != pkt_recoded.data) { // did we recode?
  2859.                 /* prevent from destroying side data from original packet */
  2860.                 pkt_recoded.side_data = NULL;
  2861.                 pkt_recoded.side_data_elems = 0;
  2862.  
  2863.                 av_free_packet(&pkt_recoded);
  2864.             }
  2865.             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
  2866.                 sub->format = 0;
  2867.             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
  2868.                 sub->format = 1;
  2869.             avctx->internal->pkt = NULL;
  2870.         }
  2871.  
  2872.         if (did_split) {
  2873.             av_packet_free_side_data(&tmp);
  2874.             if(ret == tmp.size)
  2875.                 ret = avpkt->size;
  2876.         }
  2877.  
  2878.         if (*got_sub_ptr)
  2879.             avctx->frame_number++;
  2880.     }
  2881.  
  2882.     return ret;
  2883. }
  2884.  
  2885. void avsubtitle_free(AVSubtitle *sub)
  2886. {
  2887.     int i;
  2888.  
  2889.     for (i = 0; i < sub->num_rects; i++) {
  2890.         av_freep(&sub->rects[i]->pict.data[0]);
  2891.         av_freep(&sub->rects[i]->pict.data[1]);
  2892.         av_freep(&sub->rects[i]->pict.data[2]);
  2893.         av_freep(&sub->rects[i]->pict.data[3]);
  2894.         av_freep(&sub->rects[i]->text);
  2895.         av_freep(&sub->rects[i]->ass);
  2896.         av_freep(&sub->rects[i]);
  2897.     }
  2898.  
  2899.     av_freep(&sub->rects);
  2900.  
  2901.     memset(sub, 0, sizeof(AVSubtitle));
  2902. }
  2903.  
  2904. av_cold int avcodec_close(AVCodecContext *avctx)
  2905. {
  2906.     if (!avctx)
  2907.         return 0;
  2908.  
  2909.     if (avcodec_is_open(avctx)) {
  2910.         FramePool *pool = avctx->internal->pool;
  2911.         int i;
  2912.         if (CONFIG_FRAME_THREAD_ENCODER &&
  2913.             avctx->internal->frame_thread_encoder && avctx->thread_count > 1) {
  2914.             ff_frame_thread_encoder_free(avctx);
  2915.         }
  2916.         if (HAVE_THREADS && avctx->internal->thread_ctx)
  2917.             ff_thread_free(avctx);
  2918.         if (avctx->codec && avctx->codec->close)
  2919.             avctx->codec->close(avctx);
  2920.         avctx->internal->byte_buffer_size = 0;
  2921.         av_freep(&avctx->internal->byte_buffer);
  2922.         av_frame_free(&avctx->internal->to_free);
  2923.         for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
  2924.             av_buffer_pool_uninit(&pool->pools[i]);
  2925.         av_freep(&avctx->internal->pool);
  2926.  
  2927.         if (avctx->hwaccel && avctx->hwaccel->uninit)
  2928.             avctx->hwaccel->uninit(avctx);
  2929.         av_freep(&avctx->internal->hwaccel_priv_data);
  2930.  
  2931.         av_freep(&avctx->internal);
  2932.     }
  2933.  
  2934.     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
  2935.         av_opt_free(avctx->priv_data);
  2936.     av_opt_free(avctx);
  2937.     av_freep(&avctx->priv_data);
  2938.     if (av_codec_is_encoder(avctx->codec)) {
  2939.         av_freep(&avctx->extradata);
  2940. #if FF_API_CODED_FRAME
  2941. FF_DISABLE_DEPRECATION_WARNINGS
  2942.         av_frame_free(&avctx->coded_frame);
  2943. FF_ENABLE_DEPRECATION_WARNINGS
  2944. #endif
  2945.     }
  2946.     avctx->codec = NULL;
  2947.     avctx->active_thread_type = 0;
  2948.  
  2949.     return 0;
  2950. }
  2951.  
  2952. static enum AVCodecID remap_deprecated_codec_id(enum AVCodecID id)
  2953. {
  2954.     switch(id){
  2955.         //This is for future deprecatec codec ids, its empty since
  2956.         //last major bump but will fill up again over time, please don't remove it
  2957. //         case AV_CODEC_ID_UTVIDEO_DEPRECATED: return AV_CODEC_ID_UTVIDEO;
  2958.         case AV_CODEC_ID_BRENDER_PIX_DEPRECATED         : return AV_CODEC_ID_BRENDER_PIX;
  2959.         case AV_CODEC_ID_OPUS_DEPRECATED                : return AV_CODEC_ID_OPUS;
  2960.         case AV_CODEC_ID_TAK_DEPRECATED                 : return AV_CODEC_ID_TAK;
  2961.         case AV_CODEC_ID_PAF_AUDIO_DEPRECATED           : return AV_CODEC_ID_PAF_AUDIO;
  2962.         case AV_CODEC_ID_PCM_S16BE_PLANAR_DEPRECATED    : return AV_CODEC_ID_PCM_S16BE_PLANAR;
  2963.         case AV_CODEC_ID_PCM_S24LE_PLANAR_DEPRECATED    : return AV_CODEC_ID_PCM_S24LE_PLANAR;
  2964.         case AV_CODEC_ID_PCM_S32LE_PLANAR_DEPRECATED    : return AV_CODEC_ID_PCM_S32LE_PLANAR;
  2965.         case AV_CODEC_ID_ADPCM_VIMA_DEPRECATED          : return AV_CODEC_ID_ADPCM_VIMA;
  2966.         case AV_CODEC_ID_ESCAPE130_DEPRECATED           : return AV_CODEC_ID_ESCAPE130;
  2967.         case AV_CODEC_ID_EXR_DEPRECATED                 : return AV_CODEC_ID_EXR;
  2968.         case AV_CODEC_ID_G2M_DEPRECATED                 : return AV_CODEC_ID_G2M;
  2969.         case AV_CODEC_ID_PAF_VIDEO_DEPRECATED           : return AV_CODEC_ID_PAF_VIDEO;
  2970.         case AV_CODEC_ID_WEBP_DEPRECATED                : return AV_CODEC_ID_WEBP;
  2971.         case AV_CODEC_ID_HEVC_DEPRECATED                : return AV_CODEC_ID_HEVC;
  2972.         case AV_CODEC_ID_MVC1_DEPRECATED                : return AV_CODEC_ID_MVC1;
  2973.         case AV_CODEC_ID_MVC2_DEPRECATED                : return AV_CODEC_ID_MVC2;
  2974.         case AV_CODEC_ID_SANM_DEPRECATED                : return AV_CODEC_ID_SANM;
  2975.         case AV_CODEC_ID_SGIRLE_DEPRECATED              : return AV_CODEC_ID_SGIRLE;
  2976.         case AV_CODEC_ID_VP7_DEPRECATED                 : return AV_CODEC_ID_VP7;
  2977.         default                                         : return id;
  2978.     }
  2979. }
  2980.  
  2981. static AVCodec *find_encdec(enum AVCodecID id, int encoder)
  2982. {
  2983.     AVCodec *p, *experimental = NULL;
  2984.     p = first_avcodec;
  2985.     id= remap_deprecated_codec_id(id);
  2986.     while (p) {
  2987.         if ((encoder ? av_codec_is_encoder(p) : av_codec_is_decoder(p)) &&
  2988.             p->id == id) {
  2989.             if (p->capabilities & AV_CODEC_CAP_EXPERIMENTAL && !experimental) {
  2990.                 experimental = p;
  2991.             } else
  2992.                 return p;
  2993.         }
  2994.         p = p->next;
  2995.     }
  2996.     return experimental;
  2997. }
  2998.  
  2999. AVCodec *avcodec_find_encoder(enum AVCodecID id)
  3000. {
  3001.     return find_encdec(id, 1);
  3002. }
  3003.  
  3004. AVCodec *avcodec_find_encoder_by_name(const char *name)
  3005. {
  3006.     AVCodec *p;
  3007.     if (!name)
  3008.         return NULL;
  3009.     p = first_avcodec;
  3010.     while (p) {
  3011.         if (av_codec_is_encoder(p) && strcmp(name, p->name) == 0)
  3012.             return p;
  3013.         p = p->next;
  3014.     }
  3015.     return NULL;
  3016. }
  3017.  
  3018. AVCodec *avcodec_find_decoder(enum AVCodecID id)
  3019. {
  3020.     return find_encdec(id, 0);
  3021. }
  3022.  
  3023. AVCodec *avcodec_find_decoder_by_name(const char *name)
  3024. {
  3025.     AVCodec *p;
  3026.     if (!name)
  3027.         return NULL;
  3028.     p = first_avcodec;
  3029.     while (p) {
  3030.         if (av_codec_is_decoder(p) && strcmp(name, p->name) == 0)
  3031.             return p;
  3032.         p = p->next;
  3033.     }
  3034.     return NULL;
  3035. }
  3036.  
  3037. const char *avcodec_get_name(enum AVCodecID id)
  3038. {
  3039.     const AVCodecDescriptor *cd;
  3040.     AVCodec *codec;
  3041.  
  3042.     if (id == AV_CODEC_ID_NONE)
  3043.         return "none";
  3044.     cd = avcodec_descriptor_get(id);
  3045.     if (cd)
  3046.         return cd->name;
  3047.     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
  3048.     codec = avcodec_find_decoder(id);
  3049.     if (codec)
  3050.         return codec->name;
  3051.     codec = avcodec_find_encoder(id);
  3052.     if (codec)
  3053.         return codec->name;
  3054.     return "unknown_codec";
  3055. }
  3056.  
  3057. size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
  3058. {
  3059.     int i, len, ret = 0;
  3060.  
  3061. #define TAG_PRINT(x)                                              \
  3062.     (((x) >= '0' && (x) <= '9') ||                                \
  3063.      ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') ||  \
  3064.      ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
  3065.  
  3066.     for (i = 0; i < 4; i++) {
  3067.         len = snprintf(buf, buf_size,
  3068.                        TAG_PRINT(codec_tag & 0xFF) ? "%c" : "[%d]", codec_tag & 0xFF);
  3069.         buf        += len;
  3070.         buf_size    = buf_size > len ? buf_size - len : 0;
  3071.         ret        += len;
  3072.         codec_tag >>= 8;
  3073.     }
  3074.     return ret;
  3075. }
  3076.  
  3077. void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
  3078. {
  3079.     const char *codec_type;
  3080.     const char *codec_name;
  3081.     const char *profile = NULL;
  3082.     const AVCodec *p;
  3083.     int bitrate;
  3084.     int new_line = 0;
  3085.     AVRational display_aspect_ratio;
  3086.     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
  3087.  
  3088.     if (!buf || buf_size <= 0)
  3089.         return;
  3090.     codec_type = av_get_media_type_string(enc->codec_type);
  3091.     codec_name = avcodec_get_name(enc->codec_id);
  3092.     if (enc->profile != FF_PROFILE_UNKNOWN) {
  3093.         if (enc->codec)
  3094.             p = enc->codec;
  3095.         else
  3096.             p = encode ? avcodec_find_encoder(enc->codec_id) :
  3097.                         avcodec_find_decoder(enc->codec_id);
  3098.         if (p)
  3099.             profile = av_get_profile_name(p, enc->profile);
  3100.     }
  3101.  
  3102.     snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
  3103.              codec_name);
  3104.     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
  3105.  
  3106.     if (enc->codec && strcmp(enc->codec->name, codec_name))
  3107.         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", enc->codec->name);
  3108.  
  3109.     if (profile)
  3110.         snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
  3111.     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
  3112.         && av_log_get_level() >= AV_LOG_VERBOSE
  3113.         && enc->refs)
  3114.         snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3115.                  ", %d reference frame%s",
  3116.                  enc->refs, enc->refs > 1 ? "s" : "");
  3117.  
  3118.     if (enc->codec_tag) {
  3119.         char tag_buf[32];
  3120.         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
  3121.         snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3122.                  " (%s / 0x%04X)", tag_buf, enc->codec_tag);
  3123.     }
  3124.  
  3125.     switch (enc->codec_type) {
  3126.     case AVMEDIA_TYPE_VIDEO:
  3127.         {
  3128.             char detail[256] = "(";
  3129.  
  3130.             av_strlcat(buf, separator, buf_size);
  3131.  
  3132.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3133.                  "%s", enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
  3134.                      av_get_pix_fmt_name(enc->pix_fmt));
  3135.             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
  3136.                 enc->bits_per_raw_sample <= av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth_minus1)
  3137.                 av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
  3138.             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
  3139.                 av_strlcatf(detail, sizeof(detail), "%s, ",
  3140.                             av_color_range_name(enc->color_range));
  3141.  
  3142.             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
  3143.                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
  3144.                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
  3145.                 if (enc->colorspace != (int)enc->color_primaries ||
  3146.                     enc->colorspace != (int)enc->color_trc) {
  3147.                     new_line = 1;
  3148.                     av_strlcatf(detail, sizeof(detail), "%s/%s/%s, ",
  3149.                                 av_color_space_name(enc->colorspace),
  3150.                                 av_color_primaries_name(enc->color_primaries),
  3151.                                 av_color_transfer_name(enc->color_trc));
  3152.                 } else
  3153.                     av_strlcatf(detail, sizeof(detail), "%s, ",
  3154.                                 av_get_colorspace_name(enc->colorspace));
  3155.             }
  3156.  
  3157.             if (av_log_get_level() >= AV_LOG_DEBUG &&
  3158.                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
  3159.                 av_strlcatf(detail, sizeof(detail), "%s, ",
  3160.                             av_chroma_location_name(enc->chroma_sample_location));
  3161.  
  3162.             if (strlen(detail) > 1) {
  3163.                 detail[strlen(detail) - 2] = 0;
  3164.                 av_strlcatf(buf, buf_size, "%s)", detail);
  3165.             }
  3166.         }
  3167.  
  3168.         if (enc->width) {
  3169.             av_strlcat(buf, new_line ? separator : ", ", buf_size);
  3170.  
  3171.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3172.                      "%dx%d",
  3173.                      enc->width, enc->height);
  3174.  
  3175.             if (av_log_get_level() >= AV_LOG_VERBOSE &&
  3176.                 (enc->width != enc->coded_width ||
  3177.                  enc->height != enc->coded_height))
  3178.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3179.                          " (%dx%d)", enc->coded_width, enc->coded_height);
  3180.  
  3181.             if (enc->sample_aspect_ratio.num) {
  3182.                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
  3183.                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
  3184.                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
  3185.                           1024 * 1024);
  3186.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3187.                          " [SAR %d:%d DAR %d:%d]",
  3188.                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
  3189.                          display_aspect_ratio.num, display_aspect_ratio.den);
  3190.             }
  3191.             if (av_log_get_level() >= AV_LOG_DEBUG) {
  3192.                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
  3193.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3194.                          ", %d/%d",
  3195.                          enc->time_base.num / g, enc->time_base.den / g);
  3196.             }
  3197.         }
  3198.         if (encode) {
  3199.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3200.                      ", q=%d-%d", enc->qmin, enc->qmax);
  3201.         } else {
  3202.             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
  3203.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3204.                          ", Closed Captions");
  3205.             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
  3206.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3207.                          ", lossless");
  3208.         }
  3209.         break;
  3210.     case AVMEDIA_TYPE_AUDIO:
  3211.         av_strlcat(buf, separator, buf_size);
  3212.  
  3213.         if (enc->sample_rate) {
  3214.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3215.                      "%d Hz, ", enc->sample_rate);
  3216.         }
  3217.         av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
  3218.         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
  3219.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3220.                      ", %s", av_get_sample_fmt_name(enc->sample_fmt));
  3221.         }
  3222.         if (   enc->bits_per_raw_sample > 0
  3223.             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
  3224.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3225.                      " (%d bit)", enc->bits_per_raw_sample);
  3226.         break;
  3227.     case AVMEDIA_TYPE_DATA:
  3228.         if (av_log_get_level() >= AV_LOG_DEBUG) {
  3229.             int g = av_gcd(enc->time_base.num, enc->time_base.den);
  3230.             if (g)
  3231.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3232.                          ", %d/%d",
  3233.                          enc->time_base.num / g, enc->time_base.den / g);
  3234.         }
  3235.         break;
  3236.     case AVMEDIA_TYPE_SUBTITLE:
  3237.         if (enc->width)
  3238.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3239.                      ", %dx%d", enc->width, enc->height);
  3240.         break;
  3241.     default:
  3242.         return;
  3243.     }
  3244.     if (encode) {
  3245.         if (enc->flags & AV_CODEC_FLAG_PASS1)
  3246.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3247.                      ", pass 1");
  3248.         if (enc->flags & AV_CODEC_FLAG_PASS2)
  3249.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3250.                      ", pass 2");
  3251.     }
  3252.     bitrate = get_bit_rate(enc);
  3253.     if (bitrate != 0) {
  3254.         snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3255.                  ", %d kb/s", bitrate / 1000);
  3256.     } else if (enc->rc_max_rate > 0) {
  3257.         snprintf(buf + strlen(buf), buf_size - strlen(buf),
  3258.                  ", max. %d kb/s", enc->rc_max_rate / 1000);
  3259.     }
  3260. }
  3261.  
  3262. const char *av_get_profile_name(const AVCodec *codec, int profile)
  3263. {
  3264.     const AVProfile *p;
  3265.     if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
  3266.         return NULL;
  3267.  
  3268.     for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
  3269.         if (p->profile == profile)
  3270.             return p->name;
  3271.  
  3272.     return NULL;
  3273. }
  3274.  
  3275. unsigned avcodec_version(void)
  3276. {
  3277. //    av_assert0(AV_CODEC_ID_V410==164);
  3278.     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
  3279.     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
  3280. //     av_assert0(AV_CODEC_ID_BMV_AUDIO==86071);
  3281.     av_assert0(AV_CODEC_ID_SRT==94216);
  3282.     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
  3283.  
  3284. #if FF_API_CODEC_ID
  3285.     av_assert0(CODEC_ID_CLLC == AV_CODEC_ID_CLLC);
  3286.     av_assert0(CODEC_ID_PCM_S8_PLANAR == AV_CODEC_ID_PCM_S8_PLANAR);
  3287.     av_assert0(CODEC_ID_ADPCM_IMA_APC == AV_CODEC_ID_ADPCM_IMA_APC);
  3288.     av_assert0(CODEC_ID_ILBC == AV_CODEC_ID_ILBC);
  3289.     av_assert0(CODEC_ID_SRT == AV_CODEC_ID_SRT);
  3290. #endif
  3291.     return LIBAVCODEC_VERSION_INT;
  3292. }
  3293.  
  3294. const char *avcodec_configuration(void)
  3295. {
  3296.     return FFMPEG_CONFIGURATION;
  3297. }
  3298.  
  3299. const char *avcodec_license(void)
  3300. {
  3301. #define LICENSE_PREFIX "libavcodec license: "
  3302.     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  3303. }
  3304.  
  3305. void avcodec_flush_buffers(AVCodecContext *avctx)
  3306. {
  3307.     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
  3308.         ff_thread_flush(avctx);
  3309.     else if (avctx->codec->flush)
  3310.         avctx->codec->flush(avctx);
  3311.  
  3312.     avctx->pts_correction_last_pts =
  3313.     avctx->pts_correction_last_dts = INT64_MIN;
  3314.  
  3315.     if (!avctx->refcounted_frames)
  3316.         av_frame_unref(avctx->internal->to_free);
  3317. }
  3318.  
  3319. int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
  3320. {
  3321.     switch (codec_id) {
  3322.     case AV_CODEC_ID_8SVX_EXP:
  3323.     case AV_CODEC_ID_8SVX_FIB:
  3324.     case AV_CODEC_ID_ADPCM_CT:
  3325.     case AV_CODEC_ID_ADPCM_IMA_APC:
  3326.     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
  3327.     case AV_CODEC_ID_ADPCM_IMA_OKI:
  3328.     case AV_CODEC_ID_ADPCM_IMA_WS:
  3329.     case AV_CODEC_ID_ADPCM_G722:
  3330.     case AV_CODEC_ID_ADPCM_YAMAHA:
  3331.         return 4;
  3332.     case AV_CODEC_ID_DSD_LSBF:
  3333.     case AV_CODEC_ID_DSD_MSBF:
  3334.     case AV_CODEC_ID_DSD_LSBF_PLANAR:
  3335.     case AV_CODEC_ID_DSD_MSBF_PLANAR:
  3336.     case AV_CODEC_ID_PCM_ALAW:
  3337.     case AV_CODEC_ID_PCM_MULAW:
  3338.     case AV_CODEC_ID_PCM_S8:
  3339.     case AV_CODEC_ID_PCM_S8_PLANAR:
  3340.     case AV_CODEC_ID_PCM_U8:
  3341.     case AV_CODEC_ID_PCM_ZORK:
  3342.         return 8;
  3343.     case AV_CODEC_ID_PCM_S16BE:
  3344.     case AV_CODEC_ID_PCM_S16BE_PLANAR:
  3345.     case AV_CODEC_ID_PCM_S16LE:
  3346.     case AV_CODEC_ID_PCM_S16LE_PLANAR:
  3347.     case AV_CODEC_ID_PCM_U16BE:
  3348.     case AV_CODEC_ID_PCM_U16LE:
  3349.         return 16;
  3350.     case AV_CODEC_ID_PCM_S24DAUD:
  3351.     case AV_CODEC_ID_PCM_S24BE:
  3352.     case AV_CODEC_ID_PCM_S24LE:
  3353.     case AV_CODEC_ID_PCM_S24LE_PLANAR:
  3354.     case AV_CODEC_ID_PCM_U24BE:
  3355.     case AV_CODEC_ID_PCM_U24LE:
  3356.         return 24;
  3357.     case AV_CODEC_ID_PCM_S32BE:
  3358.     case AV_CODEC_ID_PCM_S32LE:
  3359.     case AV_CODEC_ID_PCM_S32LE_PLANAR:
  3360.     case AV_CODEC_ID_PCM_U32BE:
  3361.     case AV_CODEC_ID_PCM_U32LE:
  3362.     case AV_CODEC_ID_PCM_F32BE:
  3363.     case AV_CODEC_ID_PCM_F32LE:
  3364.         return 32;
  3365.     case AV_CODEC_ID_PCM_F64BE:
  3366.     case AV_CODEC_ID_PCM_F64LE:
  3367.         return 64;
  3368.     default:
  3369.         return 0;
  3370.     }
  3371. }
  3372.  
  3373. enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
  3374. {
  3375.     static const enum AVCodecID map[AV_SAMPLE_FMT_NB][2] = {
  3376.         [AV_SAMPLE_FMT_U8  ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
  3377.         [AV_SAMPLE_FMT_S16 ] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
  3378.         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
  3379.         [AV_SAMPLE_FMT_FLT ] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
  3380.         [AV_SAMPLE_FMT_DBL ] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
  3381.         [AV_SAMPLE_FMT_U8P ] = { AV_CODEC_ID_PCM_U8,    AV_CODEC_ID_PCM_U8    },
  3382.         [AV_SAMPLE_FMT_S16P] = { AV_CODEC_ID_PCM_S16LE, AV_CODEC_ID_PCM_S16BE },
  3383.         [AV_SAMPLE_FMT_S32P] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
  3384.         [AV_SAMPLE_FMT_FLTP] = { AV_CODEC_ID_PCM_F32LE, AV_CODEC_ID_PCM_F32BE },
  3385.         [AV_SAMPLE_FMT_DBLP] = { AV_CODEC_ID_PCM_F64LE, AV_CODEC_ID_PCM_F64BE },
  3386.     };
  3387.     if (fmt < 0 || fmt >= AV_SAMPLE_FMT_NB)
  3388.         return AV_CODEC_ID_NONE;
  3389.     if (be < 0 || be > 1)
  3390.         be = AV_NE(1, 0);
  3391.     return map[fmt][be];
  3392. }
  3393.  
  3394. int av_get_bits_per_sample(enum AVCodecID codec_id)
  3395. {
  3396.     switch (codec_id) {
  3397.     case AV_CODEC_ID_ADPCM_SBPRO_2:
  3398.         return 2;
  3399.     case AV_CODEC_ID_ADPCM_SBPRO_3:
  3400.         return 3;
  3401.     case AV_CODEC_ID_ADPCM_SBPRO_4:
  3402.     case AV_CODEC_ID_ADPCM_IMA_WAV:
  3403.     case AV_CODEC_ID_ADPCM_IMA_QT:
  3404.     case AV_CODEC_ID_ADPCM_SWF:
  3405.     case AV_CODEC_ID_ADPCM_MS:
  3406.         return 4;
  3407.     default:
  3408.         return av_get_exact_bits_per_sample(codec_id);
  3409.     }
  3410. }
  3411.  
  3412. int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
  3413. {
  3414.     int id, sr, ch, ba, tag, bps;
  3415.  
  3416.     id  = avctx->codec_id;
  3417.     sr  = avctx->sample_rate;
  3418.     ch  = avctx->channels;
  3419.     ba  = avctx->block_align;
  3420.     tag = avctx->codec_tag;
  3421.     bps = av_get_exact_bits_per_sample(avctx->codec_id);
  3422.  
  3423.     /* codecs with an exact constant bits per sample */
  3424.     if (bps > 0 && ch > 0 && frame_bytes > 0 && ch < 32768 && bps < 32768)
  3425.         return (frame_bytes * 8LL) / (bps * ch);
  3426.     bps = avctx->bits_per_coded_sample;
  3427.  
  3428.     /* codecs with a fixed packet duration */
  3429.     switch (id) {
  3430.     case AV_CODEC_ID_ADPCM_ADX:    return   32;
  3431.     case AV_CODEC_ID_ADPCM_IMA_QT: return   64;
  3432.     case AV_CODEC_ID_ADPCM_EA_XAS: return  128;
  3433.     case AV_CODEC_ID_AMR_NB:
  3434.     case AV_CODEC_ID_EVRC:
  3435.     case AV_CODEC_ID_GSM:
  3436.     case AV_CODEC_ID_QCELP:
  3437.     case AV_CODEC_ID_RA_288:       return  160;
  3438.     case AV_CODEC_ID_AMR_WB:
  3439.     case AV_CODEC_ID_GSM_MS:       return  320;
  3440.     case AV_CODEC_ID_MP1:          return  384;
  3441.     case AV_CODEC_ID_ATRAC1:       return  512;
  3442.     case AV_CODEC_ID_ATRAC3:       return 1024;
  3443.     case AV_CODEC_ID_ATRAC3P:      return 2048;
  3444.     case AV_CODEC_ID_MP2:
  3445.     case AV_CODEC_ID_MUSEPACK7:    return 1152;
  3446.     case AV_CODEC_ID_AC3:          return 1536;
  3447.     }
  3448.  
  3449.     if (sr > 0) {
  3450.         /* calc from sample rate */
  3451.         if (id == AV_CODEC_ID_TTA)
  3452.             return 256 * sr / 245;
  3453.  
  3454.         if (ch > 0) {
  3455.             /* calc from sample rate and channels */
  3456.             if (id == AV_CODEC_ID_BINKAUDIO_DCT)
  3457.                 return (480 << (sr / 22050)) / ch;
  3458.         }
  3459.     }
  3460.  
  3461.     if (ba > 0) {
  3462.         /* calc from block_align */
  3463.         if (id == AV_CODEC_ID_SIPR) {
  3464.             switch (ba) {
  3465.             case 20: return 160;
  3466.             case 19: return 144;
  3467.             case 29: return 288;
  3468.             case 37: return 480;
  3469.             }
  3470.         } else if (id == AV_CODEC_ID_ILBC) {
  3471.             switch (ba) {
  3472.             case 38: return 160;
  3473.             case 50: return 240;
  3474.             }
  3475.         }
  3476.     }
  3477.  
  3478.     if (frame_bytes > 0) {
  3479.         /* calc from frame_bytes only */
  3480.         if (id == AV_CODEC_ID_TRUESPEECH)
  3481.             return 240 * (frame_bytes / 32);
  3482.         if (id == AV_CODEC_ID_NELLYMOSER)
  3483.             return 256 * (frame_bytes / 64);
  3484.         if (id == AV_CODEC_ID_RA_144)
  3485.             return 160 * (frame_bytes / 20);
  3486.         if (id == AV_CODEC_ID_G723_1)
  3487.             return 240 * (frame_bytes / 24);
  3488.  
  3489.         if (bps > 0) {
  3490.             /* calc from frame_bytes and bits_per_coded_sample */
  3491.             if (id == AV_CODEC_ID_ADPCM_G726)
  3492.                 return frame_bytes * 8 / bps;
  3493.         }
  3494.  
  3495.         if (ch > 0 && ch < INT_MAX/16) {
  3496.             /* calc from frame_bytes and channels */
  3497.             switch (id) {
  3498.             case AV_CODEC_ID_ADPCM_AFC:
  3499.                 return frame_bytes / (9 * ch) * 16;
  3500.             case AV_CODEC_ID_ADPCM_DTK:
  3501.                 return frame_bytes / (16 * ch) * 28;
  3502.             case AV_CODEC_ID_ADPCM_4XM:
  3503.             case AV_CODEC_ID_ADPCM_IMA_ISS:
  3504.                 return (frame_bytes - 4 * ch) * 2 / ch;
  3505.             case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
  3506.                 return (frame_bytes - 4) * 2 / ch;
  3507.             case AV_CODEC_ID_ADPCM_IMA_AMV:
  3508.                 return (frame_bytes - 8) * 2 / ch;
  3509.             case AV_CODEC_ID_ADPCM_THP:
  3510.             case AV_CODEC_ID_ADPCM_THP_LE:
  3511.                 if (avctx->extradata)
  3512.                     return frame_bytes * 14 / (8 * ch);
  3513.                 break;
  3514.             case AV_CODEC_ID_ADPCM_XA:
  3515.                 return (frame_bytes / 128) * 224 / ch;
  3516.             case AV_CODEC_ID_INTERPLAY_DPCM:
  3517.                 return (frame_bytes - 6 - ch) / ch;
  3518.             case AV_CODEC_ID_ROQ_DPCM:
  3519.                 return (frame_bytes - 8) / ch;
  3520.             case AV_CODEC_ID_XAN_DPCM:
  3521.                 return (frame_bytes - 2 * ch) / ch;
  3522.             case AV_CODEC_ID_MACE3:
  3523.                 return 3 * frame_bytes / ch;
  3524.             case AV_CODEC_ID_MACE6:
  3525.                 return 6 * frame_bytes / ch;
  3526.             case AV_CODEC_ID_PCM_LXF:
  3527.                 return 2 * (frame_bytes / (5 * ch));
  3528.             case AV_CODEC_ID_IAC:
  3529.             case AV_CODEC_ID_IMC:
  3530.                 return 4 * frame_bytes / ch;
  3531.             }
  3532.  
  3533.             if (tag) {
  3534.                 /* calc from frame_bytes, channels, and codec_tag */
  3535.                 if (id == AV_CODEC_ID_SOL_DPCM) {
  3536.                     if (tag == 3)
  3537.                         return frame_bytes / ch;
  3538.                     else
  3539.                         return frame_bytes * 2 / ch;
  3540.                 }
  3541.             }
  3542.  
  3543.             if (ba > 0) {
  3544.                 /* calc from frame_bytes, channels, and block_align */
  3545.                 int blocks = frame_bytes / ba;
  3546.                 switch (avctx->codec_id) {
  3547.                 case AV_CODEC_ID_ADPCM_IMA_WAV:
  3548.                     if (bps < 2 || bps > 5)
  3549.                         return 0;
  3550.                     return blocks * (1 + (ba - 4 * ch) / (bps * ch) * 8);
  3551.                 case AV_CODEC_ID_ADPCM_IMA_DK3:
  3552.                     return blocks * (((ba - 16) * 2 / 3 * 4) / ch);
  3553.                 case AV_CODEC_ID_ADPCM_IMA_DK4:
  3554.                     return blocks * (1 + (ba - 4 * ch) * 2 / ch);
  3555.                 case AV_CODEC_ID_ADPCM_IMA_RAD:
  3556.                     return blocks * ((ba - 4 * ch) * 2 / ch);
  3557.                 case AV_CODEC_ID_ADPCM_MS:
  3558.                     return blocks * (2 + (ba - 7 * ch) * 2 / ch);
  3559.                 }
  3560.             }
  3561.  
  3562.             if (bps > 0) {
  3563.                 /* calc from frame_bytes, channels, and bits_per_coded_sample */
  3564.                 switch (avctx->codec_id) {
  3565.                 case AV_CODEC_ID_PCM_DVD:
  3566.                     if(bps<4)
  3567.                         return 0;
  3568.                     return 2 * (frame_bytes / ((bps * 2 / 8) * ch));
  3569.                 case AV_CODEC_ID_PCM_BLURAY:
  3570.                     if(bps<4)
  3571.                         return 0;
  3572.                     return frame_bytes / ((FFALIGN(ch, 2) * bps) / 8);
  3573.                 case AV_CODEC_ID_S302M:
  3574.                     return 2 * (frame_bytes / ((bps + 4) / 4)) / ch;
  3575.                 }
  3576.             }
  3577.         }
  3578.     }
  3579.  
  3580.     /* Fall back on using frame_size */
  3581.     if (avctx->frame_size > 1 && frame_bytes)
  3582.         return avctx->frame_size;
  3583.  
  3584.     //For WMA we currently have no other means to calculate duration thus we
  3585.     //do it here by assuming CBR, which is true for all known cases.
  3586.     if (avctx->bit_rate>0 && frame_bytes>0 && avctx->sample_rate>0 && avctx->block_align>1) {
  3587.         if (avctx->codec_id == AV_CODEC_ID_WMAV1 || avctx->codec_id == AV_CODEC_ID_WMAV2)
  3588.             return  (frame_bytes * 8LL * avctx->sample_rate) / avctx->bit_rate;
  3589.     }
  3590.  
  3591.     return 0;
  3592. }
  3593.  
  3594. #if !HAVE_THREADS
  3595. int ff_thread_init(AVCodecContext *s)
  3596. {
  3597.     return -1;
  3598. }
  3599.  
  3600. #endif
  3601.  
  3602. unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
  3603. {
  3604.     unsigned int n = 0;
  3605.  
  3606.     while (v >= 0xff) {
  3607.         *s++ = 0xff;
  3608.         v -= 0xff;
  3609.         n++;
  3610.     }
  3611.     *s = v;
  3612.     n++;
  3613.     return n;
  3614. }
  3615.  
  3616. int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
  3617. {
  3618.     int i;
  3619.     for (i = 0; i < size && !(tab[i][0] == a && tab[i][1] == b); i++) ;
  3620.     return i;
  3621. }
  3622.  
  3623. #if FF_API_MISSING_SAMPLE
  3624. FF_DISABLE_DEPRECATION_WARNINGS
  3625. void av_log_missing_feature(void *avc, const char *feature, int want_sample)
  3626. {
  3627.     av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your FFmpeg "
  3628.             "version to the newest one from Git. If the problem still "
  3629.             "occurs, it means that your file has a feature which has not "
  3630.             "been implemented.\n", feature);
  3631.     if(want_sample)
  3632.         av_log_ask_for_sample(avc, NULL);
  3633. }
  3634.  
  3635. void av_log_ask_for_sample(void *avc, const char *msg, ...)
  3636. {
  3637.     va_list argument_list;
  3638.  
  3639.     va_start(argument_list, msg);
  3640.  
  3641.     if (msg)
  3642.         av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
  3643.     av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
  3644.             "of this file to ftp://upload.ffmpeg.org/incoming/ "
  3645.             "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n");
  3646.  
  3647.     va_end(argument_list);
  3648. }
  3649. FF_ENABLE_DEPRECATION_WARNINGS
  3650. #endif /* FF_API_MISSING_SAMPLE */
  3651.  
  3652. static AVHWAccel *first_hwaccel = NULL;
  3653. static AVHWAccel **last_hwaccel = &first_hwaccel;
  3654.  
  3655. void av_register_hwaccel(AVHWAccel *hwaccel)
  3656. {
  3657.     AVHWAccel **p = last_hwaccel;
  3658.     hwaccel->next = NULL;
  3659.     while(*p || avpriv_atomic_ptr_cas((void * volatile *)p, NULL, hwaccel))
  3660.         p = &(*p)->next;
  3661.     last_hwaccel = &hwaccel->next;
  3662. }
  3663.  
  3664. AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
  3665. {
  3666.     return hwaccel ? hwaccel->next : first_hwaccel;
  3667. }
  3668.  
  3669. int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
  3670. {
  3671.     if (lockmgr_cb) {
  3672.         // There is no good way to rollback a failure to destroy the
  3673.         // mutex, so we ignore failures.
  3674.         lockmgr_cb(&codec_mutex,    AV_LOCK_DESTROY);
  3675.         lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY);
  3676.         lockmgr_cb     = NULL;
  3677.         codec_mutex    = NULL;
  3678.         avformat_mutex = NULL;
  3679.     }
  3680.  
  3681.     if (cb) {
  3682.         void *new_codec_mutex    = NULL;
  3683.         void *new_avformat_mutex = NULL;
  3684.         int err;
  3685.         if (err = cb(&new_codec_mutex, AV_LOCK_CREATE)) {
  3686.             return err > 0 ? AVERROR_UNKNOWN : err;
  3687.         }
  3688.         if (err = cb(&new_avformat_mutex, AV_LOCK_CREATE)) {
  3689.             // Ignore failures to destroy the newly created mutex.
  3690.             cb(&new_codec_mutex, AV_LOCK_DESTROY);
  3691.             return err > 0 ? AVERROR_UNKNOWN : err;
  3692.         }
  3693.         lockmgr_cb     = cb;
  3694.         codec_mutex    = new_codec_mutex;
  3695.         avformat_mutex = new_avformat_mutex;
  3696.     }
  3697.  
  3698.     return 0;
  3699. }
  3700.  
  3701. int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec)
  3702. {
  3703.     if (lockmgr_cb) {
  3704.         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
  3705.             return -1;
  3706.     }
  3707.  
  3708.     if (avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, 1) != 1 &&
  3709.         !(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE)) {
  3710.         av_log(log_ctx, AV_LOG_ERROR,
  3711.                "Insufficient thread locking. At least %d threads are "
  3712.                "calling avcodec_open2() at the same time right now.\n",
  3713.                entangled_thread_counter);
  3714.         if (!lockmgr_cb)
  3715.             av_log(log_ctx, AV_LOG_ERROR, "No lock manager is set, please see av_lockmgr_register()\n");
  3716.         ff_avcodec_locked = 1;
  3717.         ff_unlock_avcodec();
  3718.         return AVERROR(EINVAL);
  3719.     }
  3720.     av_assert0(!ff_avcodec_locked);
  3721.     ff_avcodec_locked = 1;
  3722.     return 0;
  3723. }
  3724.  
  3725. int ff_unlock_avcodec(void)
  3726. {
  3727.     av_assert0(ff_avcodec_locked);
  3728.     ff_avcodec_locked = 0;
  3729.     avpriv_atomic_int_add_and_fetch(&entangled_thread_counter, -1);
  3730.     if (lockmgr_cb) {
  3731.         if ((*lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE))
  3732.             return -1;
  3733.     }
  3734.  
  3735.     return 0;
  3736. }
  3737.  
  3738. int avpriv_lock_avformat(void)
  3739. {
  3740.     if (lockmgr_cb) {
  3741.         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
  3742.             return -1;
  3743.     }
  3744.     return 0;
  3745. }
  3746.  
  3747. int avpriv_unlock_avformat(void)
  3748. {
  3749.     if (lockmgr_cb) {
  3750.         if ((*lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
  3751.             return -1;
  3752.     }
  3753.     return 0;
  3754. }
  3755.  
  3756. unsigned int avpriv_toupper4(unsigned int x)
  3757. {
  3758.     return av_toupper(x & 0xFF) +
  3759.           (av_toupper((x >>  8) & 0xFF) << 8)  +
  3760.           (av_toupper((x >> 16) & 0xFF) << 16) +
  3761. ((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
  3762. }
  3763.  
  3764. int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
  3765. {
  3766.     int ret;
  3767.  
  3768.     dst->owner = src->owner;
  3769.  
  3770.     ret = av_frame_ref(dst->f, src->f);
  3771.     if (ret < 0)
  3772.         return ret;
  3773.  
  3774.     av_assert0(!dst->progress);
  3775.  
  3776.     if (src->progress &&
  3777.         !(dst->progress = av_buffer_ref(src->progress))) {
  3778.         ff_thread_release_buffer(dst->owner, dst);
  3779.         return AVERROR(ENOMEM);
  3780.     }
  3781.  
  3782.     return 0;
  3783. }
  3784.  
  3785. #if !HAVE_THREADS
  3786.  
  3787. enum AVPixelFormat ff_thread_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
  3788. {
  3789.     return ff_get_format(avctx, fmt);
  3790. }
  3791.  
  3792. int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
  3793. {
  3794.     f->owner = avctx;
  3795.     return ff_get_buffer(avctx, f->f, flags);
  3796. }
  3797.  
  3798. void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
  3799. {
  3800.     if (f->f)
  3801.         av_frame_unref(f->f);
  3802. }
  3803.  
  3804. void ff_thread_finish_setup(AVCodecContext *avctx)
  3805. {
  3806. }
  3807.  
  3808. void ff_thread_report_progress(ThreadFrame *f, int progress, int field)
  3809. {
  3810. }
  3811.  
  3812. void ff_thread_await_progress(ThreadFrame *f, int progress, int field)
  3813. {
  3814. }
  3815.  
  3816. int ff_thread_can_start_frame(AVCodecContext *avctx)
  3817. {
  3818.     return 1;
  3819. }
  3820.  
  3821. int ff_alloc_entries(AVCodecContext *avctx, int count)
  3822. {
  3823.     return 0;
  3824. }
  3825.  
  3826. void ff_reset_entries(AVCodecContext *avctx)
  3827. {
  3828. }
  3829.  
  3830. void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift)
  3831. {
  3832. }
  3833.  
  3834. void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n)
  3835. {
  3836. }
  3837.  
  3838. #endif
  3839.  
  3840. enum AVMediaType avcodec_get_type(enum AVCodecID codec_id)
  3841. {
  3842.     AVCodec *c= avcodec_find_decoder(codec_id);
  3843.     if(!c)
  3844.         c= avcodec_find_encoder(codec_id);
  3845.     if(c)
  3846.         return c->type;
  3847.  
  3848.     if (codec_id <= AV_CODEC_ID_NONE)
  3849.         return AVMEDIA_TYPE_UNKNOWN;
  3850.     else if (codec_id < AV_CODEC_ID_FIRST_AUDIO)
  3851.         return AVMEDIA_TYPE_VIDEO;
  3852.     else if (codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
  3853.         return AVMEDIA_TYPE_AUDIO;
  3854.     else if (codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
  3855.         return AVMEDIA_TYPE_SUBTITLE;
  3856.  
  3857.     return AVMEDIA_TYPE_UNKNOWN;
  3858. }
  3859.  
  3860. int avcodec_is_open(AVCodecContext *s)
  3861. {
  3862.     return !!s->internal;
  3863. }
  3864.  
  3865. int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
  3866. {
  3867.     int ret;
  3868.     char *str;
  3869.  
  3870.     ret = av_bprint_finalize(buf, &str);
  3871.     if (ret < 0)
  3872.         return ret;
  3873.     if (!av_bprint_is_complete(buf)) {
  3874.         av_free(str);
  3875.         return AVERROR(ENOMEM);
  3876.     }
  3877.  
  3878.     avctx->extradata = str;
  3879.     /* Note: the string is NUL terminated (so extradata can be read as a
  3880.      * string), but the ending character is not accounted in the size (in
  3881.      * binary formats you are likely not supposed to mux that character). When
  3882.      * extradata is copied, it is also padded with AV_INPUT_BUFFER_PADDING_SIZE
  3883.      * zeros. */
  3884.     avctx->extradata_size = buf->len;
  3885.     return 0;
  3886. }
  3887.  
  3888. const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
  3889.                                       const uint8_t *end,
  3890.                                       uint32_t *av_restrict state)
  3891. {
  3892.     int i;
  3893.  
  3894.     av_assert0(p <= end);
  3895.     if (p >= end)
  3896.         return end;
  3897.  
  3898.     for (i = 0; i < 3; i++) {
  3899.         uint32_t tmp = *state << 8;
  3900.         *state = tmp + *(p++);
  3901.         if (tmp == 0x100 || p == end)
  3902.             return p;
  3903.     }
  3904.  
  3905.     while (p < end) {
  3906.         if      (p[-1] > 1      ) p += 3;
  3907.         else if (p[-2]          ) p += 2;
  3908.         else if (p[-3]|(p[-1]-1)) p++;
  3909.         else {
  3910.             p++;
  3911.             break;
  3912.         }
  3913.     }
  3914.  
  3915.     p = FFMIN(p, end) - 4;
  3916.     *state = AV_RB32(p);
  3917.  
  3918.     return p + 4;
  3919. }
  3920.