utils.c
上传用户:chinavct
上传日期:2022-06-20
资源大小:330k
文件大小:34k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  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.  * @file utils.c
  24.  * utils.
  25.  */
  26. /* needed for mkstemp() */
  27. #define _XOPEN_SOURCE 600
  28. //#include "libavutil/avstring.h"
  29. #include "dsputil.h"
  30. #include "internal.h"
  31. //#include "integer.h"
  32. //#include "crc.h"
  33. //#include "avcodec.h"
  34. //#include "dsputil.h"
  35. //#include "opt.h"
  36. #include "imgconvert.h"
  37. //#include "audioconvert.h"
  38. #include <stdlib.h>
  39. #include <stdarg.h>
  40. #include <limits.h>
  41. #include <float.h>
  42. #include <io.h>
  43. #if !defined(HAVE_MKSTEMP)
  44. #include <fcntl.h>
  45. #endif
  46. const uint8_t ff_reverse[256]={
  47. 0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0,
  48. 0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8,
  49. 0x04,0x84,0x44,0xC4,0x24,0xA4,0x64,0xE4,0x14,0x94,0x54,0xD4,0x34,0xB4,0x74,0xF4,
  50. 0x0C,0x8C,0x4C,0xCC,0x2C,0xAC,0x6C,0xEC,0x1C,0x9C,0x5C,0xDC,0x3C,0xBC,0x7C,0xFC,
  51. 0x02,0x82,0x42,0xC2,0x22,0xA2,0x62,0xE2,0x12,0x92,0x52,0xD2,0x32,0xB2,0x72,0xF2,
  52. 0x0A,0x8A,0x4A,0xCA,0x2A,0xAA,0x6A,0xEA,0x1A,0x9A,0x5A,0xDA,0x3A,0xBA,0x7A,0xFA,
  53. 0x06,0x86,0x46,0xC6,0x26,0xA6,0x66,0xE6,0x16,0x96,0x56,0xD6,0x36,0xB6,0x76,0xF6,
  54. 0x0E,0x8E,0x4E,0xCE,0x2E,0xAE,0x6E,0xEE,0x1E,0x9E,0x5E,0xDE,0x3E,0xBE,0x7E,0xFE,
  55. 0x01,0x81,0x41,0xC1,0x21,0xA1,0x61,0xE1,0x11,0x91,0x51,0xD1,0x31,0xB1,0x71,0xF1,
  56. 0x09,0x89,0x49,0xC9,0x29,0xA9,0x69,0xE9,0x19,0x99,0x59,0xD9,0x39,0xB9,0x79,0xF9,
  57. 0x05,0x85,0x45,0xC5,0x25,0xA5,0x65,0xE5,0x15,0x95,0x55,0xD5,0x35,0xB5,0x75,0xF5,
  58. 0x0D,0x8D,0x4D,0xCD,0x2D,0xAD,0x6D,0xED,0x1D,0x9D,0x5D,0xDD,0x3D,0xBD,0x7D,0xFD,
  59. 0x03,0x83,0x43,0xC3,0x23,0xA3,0x63,0xE3,0x13,0x93,0x53,0xD3,0x33,0xB3,0x73,0xF3,
  60. 0x0B,0x8B,0x4B,0xCB,0x2B,0xAB,0x6B,0xEB,0x1B,0x9B,0x5B,0xDB,0x3B,0xBB,0x7B,0xFB,
  61. 0x07,0x87,0x47,0xC7,0x27,0xA7,0x67,0xE7,0x17,0x97,0x57,0xD7,0x37,0xB7,0x77,0xF7,
  62. 0x0F,0x8F,0x4F,0xCF,0x2F,0xAF,0x6F,0xEF,0x1F,0x9F,0x5F,0xDF,0x3F,0xBF,0x7F,0xFF,
  63. };
  64. static int volatile entangled_thread_counter=0;
  65. void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
  66. {
  67.     if(min_size < *size)
  68.         return ptr;
  69.     *size= FFMAX(17*min_size/16 + 32, min_size);
  70.     ptr= av_realloc(ptr, *size);
  71.     if(!ptr) //we could set this to the unmodified min_size but this is safer if the user lost the ptr and uses NULL now
  72.         *size= 0;
  73.     return ptr;
  74. }
  75. /* encoder management */
  76. static AVCodec *first_avcodec = NULL;
  77. AVCodec *av_codec_next(AVCodec *c){
  78.     if(c) return c->next;
  79.     else  return first_avcodec;
  80. }
  81. void register_avcodec(AVCodec *codec)
  82. {
  83.     AVCodec **p;
  84.     avcodec_init();
  85.     p = &first_avcodec;
  86.     while (*p != NULL) p = &(*p)->next;
  87.     *p = codec;
  88.     codec->next = NULL;
  89. }
  90. void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
  91.     s->coded_width = width;
  92.     s->coded_height= height;
  93.     s->width = -((-width )>>s->lowres);
  94.     s->height= -((-height)>>s->lowres);
  95. }
  96. typedef struct InternalBuffer{
  97.     int last_pic_num;
  98.     uint8_t *base[4];
  99.     uint8_t *data[4];
  100.     int linesize[4];
  101.     int width, height;
  102.     enum PixelFormat pix_fmt;
  103. }InternalBuffer;
  104. #define INTERNAL_BUFFER_SIZE 32
  105. #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1))
  106. void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
  107.     int w_align= 1;
  108.     int h_align= 1;
  109.     switch(s->pix_fmt){
  110.     case PIX_FMT_YUV420P:
  111.     case PIX_FMT_YUYV422:
  112.     case PIX_FMT_UYVY422:
  113.     case PIX_FMT_YUV422P:
  114.     case PIX_FMT_YUV444P:
  115.     case PIX_FMT_GRAY8:
  116.     case PIX_FMT_GRAY16BE:
  117.     case PIX_FMT_GRAY16LE:
  118.     case PIX_FMT_YUVJ420P:
  119.     case PIX_FMT_YUVJ422P:
  120.     case PIX_FMT_YUVJ444P:
  121.     case PIX_FMT_YUVA420P:
  122.         w_align= 16; //FIXME check for non mpeg style codecs and use less alignment
  123.         h_align= 16;
  124.         break;
  125.     case PIX_FMT_YUV411P:
  126.     case PIX_FMT_UYYVYY411:
  127.         w_align=32;
  128.         h_align=8;
  129.         break;
  130.     case PIX_FMT_YUV410P:
  131.         if(s->codec_id == CODEC_ID_SVQ1){
  132.             w_align=64;
  133.             h_align=64;
  134.         }
  135.     case PIX_FMT_RGB555:
  136.         if(s->codec_id == CODEC_ID_RPZA){
  137.             w_align=4;
  138.             h_align=4;
  139.         }
  140.     case PIX_FMT_PAL8:
  141.         if(s->codec_id == CODEC_ID_SMC){
  142.             w_align=4;
  143.             h_align=4;
  144.         }
  145.         break;
  146.     case PIX_FMT_BGR24:
  147.         if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
  148.             w_align=4;
  149.             h_align=4;
  150.         }
  151.         break;
  152.     default:
  153.         w_align= 1;
  154.         h_align= 1;
  155.         break;
  156.     }
  157.     *width = ALIGN(*width , w_align);
  158.     *height= ALIGN(*height, h_align);
  159.     if(s->codec_id == CODEC_ID_H264)
  160.         *height+=2; // some of the optimized chroma MC reads one line too much
  161. }
  162. int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){
  163.     if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4)
  164.         return 0;
  165.     av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)n", w, h);
  166.     return -1;
  167. }
  168. int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
  169.     int i;
  170.     int w= s->width;
  171.     int h= s->height;
  172.     InternalBuffer *buf;
  173.     int *picture_number;
  174.     if(pic->data[0]!=NULL) {
  175.         av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffern");
  176.         return -1;
  177.     }
  178.     if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) {
  179.         av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)n");
  180.         return -1;
  181.     }
  182.     if(avcodec_check_dimensions(s,w,h))
  183.         return -1;
  184.     if(s->internal_buffer==NULL){
  185.         s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer));
  186.     }
  187. #if 0
  188.     s->internal_buffer= av_fast_realloc(
  189.         s->internal_buffer,
  190.         &s->internal_buffer_size,
  191.         sizeof(InternalBuffer)*FFMAX(99,  s->internal_buffer_count+1)/*FIXME*/
  192.         );
  193. #endif
  194.     buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
  195.     picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack
  196.     (*picture_number)++;
  197.     if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
  198.         for(i=0; i<4; i++){
  199.             av_freep(&buf->base[i]);
  200.             buf->data[i]= NULL;
  201.         }
  202.     }
  203.     if(buf->base[0]){
  204.         pic->age= *picture_number - buf->last_pic_num;
  205.         buf->last_pic_num= *picture_number;
  206.     }else{
  207.         int h_chroma_shift, v_chroma_shift;
  208.         int size[4] = {0};
  209.         int tmpsize;
  210.         AVPicture picture;
  211.         int stride_align[4];
  212.         avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
  213.         avcodec_align_dimensions(s, &w, &h);
  214.         if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
  215.             w+= EDGE_WIDTH*2;
  216.             h+= EDGE_WIDTH*2;
  217.         }
  218.         ff_fill_linesize(&picture, s->pix_fmt, w);
  219.         for (i=0; i<4; i++){
  220. //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
  221. //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
  222. //picture size unneccessarily in some cases. The solution here is not
  223. //pretty and better ideas are welcome!
  224. #ifdef HAVE_MMX
  225.             if(s->codec_id == CODEC_ID_SVQ1)
  226.                 stride_align[i]= 16;
  227.             else
  228. #endif
  229.             stride_align[i] = STRIDE_ALIGN;
  230.             picture.linesize[i] = ALIGN(picture.linesize[i], stride_align[i]);
  231.         }
  232.         tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
  233.         for (i=0; i<3 && picture.data[i+1]; i++)
  234.             size[i] = picture.data[i+1] - picture.data[i];
  235.         size[i] = tmpsize - (picture.data[i] - picture.data[0]);
  236.         buf->last_pic_num= -256*256*256*64;
  237.         memset(buf->base, 0, sizeof(buf->base));
  238.         memset(buf->data, 0, sizeof(buf->data));
  239.         for(i=0; i<4 && size[i]; i++){
  240.             const int h_shift= i==0 ? 0 : h_chroma_shift;
  241.             const int v_shift= i==0 ? 0 : v_chroma_shift;
  242.             buf->linesize[i]= picture.linesize[i];
  243.             buf->base[i]= av_malloc(size[i]+16); //FIXME 16
  244.             if(buf->base[i]==NULL) return -1;
  245.             memset(buf->base[i], 128, size[i]);
  246.             // no edge if EDEG EMU or not planar YUV, we check for PAL8 redundantly to protect against a exploitable bug regression ...
  247.             if((s->flags&CODEC_FLAG_EMU_EDGE) || (s->pix_fmt == PIX_FMT_PAL8) || !size[2])
  248.                 buf->data[i] = buf->base[i];
  249.             else
  250.                 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]);
  251.         }
  252.         buf->width  = s->width;
  253.         buf->height = s->height;
  254.         buf->pix_fmt= s->pix_fmt;
  255.         pic->age= 256*256*256*64;
  256.     }
  257.     pic->type= FF_BUFFER_TYPE_INTERNAL;
  258.     for(i=0; i<4; i++){
  259.         pic->base[i]= buf->base[i];
  260.         pic->data[i]= buf->data[i];
  261.         pic->linesize[i]= buf->linesize[i];
  262.     }
  263.     s->internal_buffer_count++;
  264.     pic->reordered_opaque= s->reordered_opaque;
  265.     if(s->debug&FF_DEBUG_BUFFERS)
  266.         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers usedn", pic, s->internal_buffer_count);
  267.     return 0;
  268. }
  269. void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
  270.     int i;
  271.     InternalBuffer *buf, *last;
  272.     assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
  273.     assert(s->internal_buffer_count);
  274.     buf = NULL; /* avoids warning */
  275.     for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize
  276.         buf= &((InternalBuffer*)s->internal_buffer)[i];
  277.         if(buf->data[0] == pic->data[0])
  278.             break;
  279.     }
  280.     assert(i < s->internal_buffer_count);
  281.     s->internal_buffer_count--;
  282.     last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count];
  283.     FFSWAP(InternalBuffer, *buf, *last);
  284.     for(i=0; i<4; i++){
  285.         pic->data[i]=NULL;
  286. //        pic->base[i]=NULL;
  287.     }
  288. //printf("R%Xn", pic->opaque);
  289.     if(s->debug&FF_DEBUG_BUFFERS)
  290.         av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers usedn", pic, s->internal_buffer_count);
  291. }
  292. int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
  293.     AVFrame temp_pic;
  294.     int i;
  295.     /* If no picture return a new buffer */
  296.     if(pic->data[0] == NULL) {
  297.         /* We will copy from buffer, so must be readable */
  298.         pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
  299.         return s->get_buffer(s, pic);
  300.     }
  301.     /* If internal buffer type return the same buffer */
  302.     if(pic->type == FF_BUFFER_TYPE_INTERNAL)
  303.         return 0;
  304.     /*
  305.      * Not internal type and reget_buffer not overridden, emulate cr buffer
  306.      */
  307.     temp_pic = *pic;
  308.     for(i = 0; i < 4; i++)
  309.         pic->data[i] = pic->base[i] = NULL;
  310.     pic->opaque = NULL;
  311.     /* Allocate new frame */
  312.     if (s->get_buffer(s, pic))
  313.         return -1;
  314.     /* Copy image data from old buffer to new buffer */
  315.     av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
  316.              s->height);
  317.     s->release_buffer(s, &temp_pic); // Release old frame
  318.     return 0;
  319. }
  320. int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
  321.     int i;
  322.     for(i=0; i<count; i++){
  323.         int r= func(c, (char*)arg + i*size);
  324.         if(ret) ret[i]= r;
  325.     }
  326.     return 0;
  327. }
  328. enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt){
  329.     return fmt[0];
  330. }
  331. void avcodec_get_frame_defaults(AVFrame *pic){
  332.     memset(pic, 0, sizeof(AVFrame));
  333.     pic->pts= AV_NOPTS_VALUE;
  334.     pic->key_frame= 1;
  335. }
  336. AVFrame *avcodec_alloc_frame(void){
  337.     AVFrame *pic= av_malloc(sizeof(AVFrame));
  338.     if(pic==NULL) return NULL;
  339.     avcodec_get_frame_defaults(pic);
  340.     return pic;
  341. }
  342. int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
  343. {
  344.     int ret= -1;
  345.     entangled_thread_counter++;
  346.     if(entangled_thread_counter != 1){
  347.         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()n");
  348.         goto end;
  349.     }
  350.     if(avctx->codec || !codec)
  351.         goto end;
  352.     if (codec->priv_data_size > 0) {
  353.         avctx->priv_data = av_mallocz(codec->priv_data_size);
  354.         if (!avctx->priv_data) {
  355.             ret = AVERROR(ENOMEM);
  356.             goto end;
  357.         }
  358.     } else {
  359.         avctx->priv_data = NULL;
  360.     }
  361.     if(avctx->coded_width && avctx->coded_height)
  362.         avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
  363.     else if(avctx->width && avctx->height)
  364.         avcodec_set_dimensions(avctx, avctx->width, avctx->height);
  365.     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){
  366.         av_freep(&avctx->priv_data);
  367.         ret = AVERROR(EINVAL);
  368.         goto end;
  369.     }
  370.     avctx->codec = codec;
  371.     avctx->codec_id = codec->id;
  372.     avctx->frame_number = 0;
  373.     if(avctx->codec->init){
  374.         ret = avctx->codec->init(avctx);
  375.         if (ret < 0) {
  376.             av_freep(&avctx->priv_data);
  377.             avctx->codec= NULL;
  378.             goto end;
  379.         }
  380.     }
  381.     ret=0;
  382. end:
  383.     entangled_thread_counter--;
  384.     return ret;
  385. }
  386. int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  387.                          const short *samples)
  388. {
  389.     if(buf_size < FF_MIN_BUFFER_SIZE && 0){
  390.         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum sizen");
  391.         return -1;
  392.     }
  393.     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
  394.         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples);
  395.         avctx->frame_number++;
  396.         return ret;
  397.     }else
  398.         return 0;
  399. }
  400. int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  401.                          const AVFrame *pict)
  402. {
  403.     if(buf_size < FF_MIN_BUFFER_SIZE){
  404.         av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum sizen");
  405.         return -1;
  406.     }
  407.     if(avcodec_check_dimensions(avctx,avctx->width,avctx->height))
  408.         return -1;
  409.     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
  410.         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
  411.         avctx->frame_number++;
  412.         emms_c(); //needed to avoid an emms_c() call before every return;
  413.         return ret;
  414.     }else
  415.         return 0;
  416. }
  417. int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  418.                             const AVSubtitle *sub)
  419. {
  420.     int ret;
  421.     ret = avctx->codec->encode(avctx, buf, buf_size, (void *)sub);
  422.     avctx->frame_number++;
  423.     return ret;
  424. }
  425. int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
  426.                          int *got_picture_ptr,
  427.                          const uint8_t *buf, int buf_size)
  428. {
  429.     int ret;
  430.     *got_picture_ptr= 0;
  431.     if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height))
  432.         return -1;
  433.     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
  434.         ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
  435.                                 buf, buf_size);
  436.         emms_c(); //needed to avoid an emms_c() call before every return;
  437.         if (*got_picture_ptr)
  438.             avctx->frame_number++;
  439.     }else
  440.         ret= 0;
  441.     return ret;
  442. }
  443. int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
  444.                          int *frame_size_ptr,
  445.                          const uint8_t *buf, int buf_size)
  446. {
  447.     int ret;
  448.     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){
  449.         //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough
  450.         if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){
  451.             av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZEn");
  452.             return -1;
  453.         }
  454.         if(*frame_size_ptr < FF_MIN_BUFFER_SIZE ||
  455.         *frame_size_ptr < avctx->channels * avctx->frame_size * (int)sizeof(int16_t)){
  456.             av_log(avctx, AV_LOG_ERROR, "buffer %d too smalln", *frame_size_ptr);
  457.             return -1;
  458.         }
  459.         ret = avctx->codec->decode(avctx, samples, frame_size_ptr,
  460.                                 buf, buf_size);
  461.         avctx->frame_number++;
  462.     }else{
  463.         ret= 0;
  464.         *frame_size_ptr=0;
  465.     }
  466.     return ret;
  467. }
  468. int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
  469.                             int *got_sub_ptr,
  470.                             const uint8_t *buf, int buf_size)
  471. {
  472.     int ret;
  473.     *got_sub_ptr = 0;
  474.     ret = avctx->codec->decode(avctx, sub, got_sub_ptr,
  475.                                buf, buf_size);
  476.     if (*got_sub_ptr)
  477.         avctx->frame_number++;
  478.     return ret;
  479. }
  480. int avcodec_close(AVCodecContext *avctx)
  481. {
  482.     entangled_thread_counter++;
  483.     if(entangled_thread_counter != 1){
  484.         av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()n");
  485.         entangled_thread_counter--;
  486.         return -1;
  487.     }
  488.     //if (ENABLE_THREADS && avctx->thread_opaque)
  489.     //    avcodec_thread_free(avctx);
  490.     
  491. if (avctx->codec->close)
  492.         avctx->codec->close(avctx);
  493.     
  494. avcodec_default_free_buffers(avctx);
  495.     av_freep(&avctx->priv_data);
  496.     avctx->codec = NULL;
  497.     entangled_thread_counter--;
  498.     return 0;
  499. }
  500. AVCodec *avcodec_find_encoder(enum CodecID id)
  501. {
  502.     AVCodec *p;
  503.     p = first_avcodec;
  504.     while (p) {
  505.         if (p->encode != NULL && p->id == id)
  506.             return p;
  507.         p = p->next;
  508.     }
  509.     return NULL;
  510. }
  511. AVCodec *avcodec_find_encoder_by_name(const char *name)
  512. {
  513.     AVCodec *p;
  514.     if (!name)
  515.         return NULL;
  516.     p = first_avcodec;
  517.     while (p) {
  518.         if (p->encode != NULL && strcmp(name,p->name) == 0)
  519.             return p;
  520.         p = p->next;
  521.     }
  522.     return NULL;
  523. }
  524. AVCodec *avcodec_find_decoder(enum CodecID id)
  525. {
  526.     AVCodec *p;
  527.     p = first_avcodec;
  528.     while (p) {
  529.         if (p->decode != NULL && p->id == id)
  530.             return p;
  531.         p = p->next;
  532.     }
  533.     return NULL;
  534. }
  535. AVCodec *avcodec_find_decoder_by_name(const char *name)
  536. {
  537.     AVCodec *p;
  538.     if (!name)
  539.         return NULL;
  540.     p = first_avcodec;
  541.     while (p) {
  542.         if (p->decode != NULL && strcmp(name,p->name) == 0)
  543.             return p;
  544.         p = p->next;
  545.     }
  546.     return NULL;
  547. }
  548. int64_t ff_gcd(int64_t a, int64_t b){
  549.     if(b) return ff_gcd(b, a%b);
  550.     else  return a;
  551. }
  552. void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
  553. {
  554.     const char *codec_name;
  555.     AVCodec *p;
  556.     char buf1[32];
  557.     int bitrate;
  558.     AVRational display_aspect_ratio;
  559.     if (encode)
  560.         p = avcodec_find_encoder(enc->codec_id);
  561.     else
  562.         p = avcodec_find_decoder(enc->codec_id);
  563.     if (p) {
  564.         codec_name = p->name;
  565.         if (!encode && enc->codec_id == CODEC_ID_MP3) {
  566.             if (enc->sub_id == 2)
  567.                 codec_name = "mp2";
  568.             else if (enc->sub_id == 1)
  569.                 codec_name = "mp1";
  570.         }
  571.     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
  572.         /* fake mpeg2 transport stream codec (currently not
  573.            registered) */
  574.         codec_name = "mpeg2ts";
  575.     } else if (enc->codec_name[0] != '') {
  576.         codec_name = enc->codec_name;
  577.     } else {
  578.         /* output avi tags */
  579.         if(   isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
  580.            && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
  581.             snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
  582.                      enc->codec_tag & 0xff,
  583.                      (enc->codec_tag >> 8) & 0xff,
  584.                      (enc->codec_tag >> 16) & 0xff,
  585.                      (enc->codec_tag >> 24) & 0xff,
  586.                       enc->codec_tag);
  587.         } else {
  588.             snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
  589.         }
  590.         codec_name = buf1;
  591.     }
  592.     switch(enc->codec_type) {
  593.     case CODEC_TYPE_VIDEO:
  594.         snprintf(buf, buf_size,
  595.                  "Video: %s%s",
  596.                  codec_name, enc->mb_decision ? " (hq)" : "");
  597.         if (enc->pix_fmt != PIX_FMT_NONE) {
  598.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  599.                      ", %s",
  600.                      avcodec_get_pix_fmt_name(enc->pix_fmt));
  601.         }
  602.         if (enc->width) {
  603.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  604.                      ", %dx%d",
  605.                      enc->width, enc->height);
  606.             if (enc->sample_aspect_ratio.num) {
  607.                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
  608.                           enc->width*enc->sample_aspect_ratio.num,
  609.                           enc->height*enc->sample_aspect_ratio.den,
  610.                           1024*1024);
  611.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  612.                          " [PAR %d:%d DAR %d:%d]",
  613.                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
  614.                          display_aspect_ratio.num, display_aspect_ratio.den);
  615.             }
  616.             if(av_log_get_level() >= AV_LOG_DEBUG){
  617.                 int g= (int)ff_gcd(enc->time_base.num, enc->time_base.den);
  618.                 snprintf(buf + strlen(buf), buf_size - strlen(buf),
  619.                      ", %d/%d",
  620.                      enc->time_base.num/g, enc->time_base.den/g);
  621.             }
  622.         }
  623.         if (encode) {
  624.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  625.                      ", q=%d-%d", enc->qmin, enc->qmax);
  626.         }
  627.         bitrate = enc->bit_rate;
  628.         break;
  629.     /*case CODEC_TYPE_AUDIO:
  630.         snprintf(buf, buf_size,
  631.                  "Audio: %s",
  632.                  codec_name);
  633.         if (enc->sample_rate) {
  634.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  635.                      ", %d Hz", enc->sample_rate);
  636.         }
  637.         av_strlcat(buf, ", ", buf_size);
  638.         avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
  639.         if (enc->sample_fmt != SAMPLE_FMT_NONE) {
  640.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  641.                      ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt));
  642.         }*/
  643.         /* for PCM codecs, compute bitrate directly */
  644.         switch(enc->codec_id) 
  645. {
  646.         case CODEC_ID_PCM_F64BE:
  647.         case CODEC_ID_PCM_F64LE:
  648.             bitrate = enc->sample_rate * enc->channels * 64;
  649.             break;
  650.         case CODEC_ID_PCM_S32LE:
  651.         case CODEC_ID_PCM_S32BE:
  652.         case CODEC_ID_PCM_U32LE:
  653.         case CODEC_ID_PCM_U32BE:
  654.         case CODEC_ID_PCM_F32BE:
  655.         case CODEC_ID_PCM_F32LE:
  656.             bitrate = enc->sample_rate * enc->channels * 32;
  657.             break;
  658.         case CODEC_ID_PCM_S24LE:
  659.         case CODEC_ID_PCM_S24BE:
  660.         case CODEC_ID_PCM_U24LE:
  661.         case CODEC_ID_PCM_U24BE:
  662.         case CODEC_ID_PCM_S24DAUD:
  663.             bitrate = enc->sample_rate * enc->channels * 24;
  664.             break;
  665.         case CODEC_ID_PCM_S16LE:
  666.         case CODEC_ID_PCM_S16BE:
  667.         case CODEC_ID_PCM_S16LE_PLANAR:
  668.         case CODEC_ID_PCM_U16LE:
  669.         case CODEC_ID_PCM_U16BE:
  670.             bitrate = enc->sample_rate * enc->channels * 16;
  671.             break;
  672.         case CODEC_ID_PCM_S8:
  673.         case CODEC_ID_PCM_U8:
  674.         case CODEC_ID_PCM_ALAW:
  675.         case CODEC_ID_PCM_MULAW:
  676.         case CODEC_ID_PCM_ZORK:
  677.             bitrate = enc->sample_rate * enc->channels * 8;
  678.             break;
  679.         default:
  680.             bitrate = enc->bit_rate;
  681.             break;
  682.         }
  683.         break;
  684.     case CODEC_TYPE_DATA:
  685.         snprintf(buf, buf_size, "Data: %s", codec_name);
  686.         bitrate = enc->bit_rate;
  687.         break;
  688.     case CODEC_TYPE_SUBTITLE:
  689.         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
  690.         bitrate = enc->bit_rate;
  691.         break;
  692.     case CODEC_TYPE_ATTACHMENT:
  693.         snprintf(buf, buf_size, "Attachment: %s", codec_name);
  694.         bitrate = enc->bit_rate;
  695.         break;
  696.     default:
  697.         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
  698.         return;
  699.     }
  700.     if (encode) {
  701.         if (enc->flags & CODEC_FLAG_PASS1)
  702.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  703.                      ", pass 1");
  704.         if (enc->flags & CODEC_FLAG_PASS2)
  705.             snprintf(buf + strlen(buf), buf_size - strlen(buf),
  706.                      ", pass 2");
  707.     }
  708.     if (bitrate != 0) {
  709.         snprintf(buf + strlen(buf), buf_size - strlen(buf),
  710.                  ", %d kb/s", bitrate / 1000);
  711.     }
  712. }
  713. unsigned avcodec_version( void )
  714. {
  715.   return LIBAVCODEC_VERSION_INT;
  716. }
  717. void avcodec_init(void)
  718. {
  719.     static int initialized = 0;
  720.     if (initialized != 0)
  721.         return;
  722.     initialized = 1;
  723.     dsputil_static_init();
  724. }
  725. void avcodec_flush_buffers(AVCodecContext *avctx)
  726. {
  727.     if(avctx->codec->flush)
  728.         avctx->codec->flush(avctx);
  729. }
  730. void avcodec_default_free_buffers(AVCodecContext *s){
  731.     int i, j;
  732.     if(s->internal_buffer==NULL) return;
  733.     for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
  734.         InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i];
  735.         for(j=0; j<4; j++){
  736.             av_freep(&buf->base[j]);
  737.             buf->data[j]= NULL;
  738.         }
  739.     }
  740.     av_freep(&s->internal_buffer);
  741.     s->internal_buffer_count=0;
  742. }
  743. char av_get_pict_type_char(int pict_type){
  744.     switch(pict_type){
  745.     case FF_I_TYPE: return 'I';
  746.     case FF_P_TYPE: return 'P';
  747.     case FF_B_TYPE: return 'B';
  748.     case FF_S_TYPE: return 'S';
  749.     case FF_SI_TYPE:return 'i';
  750.     case FF_SP_TYPE:return 'p';
  751.     case FF_BI_TYPE:return 'b';
  752.     default:        return '?';
  753.     }
  754. }
  755. int av_get_bits_per_sample(enum CodecID codec_id){
  756.     switch(codec_id){
  757.     case CODEC_ID_ADPCM_SBPRO_2:
  758.         return 2;
  759.     case CODEC_ID_ADPCM_SBPRO_3:
  760.         return 3;
  761.     case CODEC_ID_ADPCM_SBPRO_4:
  762.     case CODEC_ID_ADPCM_CT:
  763.         return 4;
  764.     case CODEC_ID_PCM_ALAW:
  765.     case CODEC_ID_PCM_MULAW:
  766.     case CODEC_ID_PCM_S8:
  767.     case CODEC_ID_PCM_U8:
  768.     case CODEC_ID_PCM_ZORK:
  769.         return 8;
  770.     case CODEC_ID_PCM_S16BE:
  771.     case CODEC_ID_PCM_S16LE:
  772.     case CODEC_ID_PCM_S16LE_PLANAR:
  773.     case CODEC_ID_PCM_U16BE:
  774.     case CODEC_ID_PCM_U16LE:
  775.         return 16;
  776.     case CODEC_ID_PCM_S24DAUD:
  777.     case CODEC_ID_PCM_S24BE:
  778.     case CODEC_ID_PCM_S24LE:
  779.     case CODEC_ID_PCM_U24BE:
  780.     case CODEC_ID_PCM_U24LE:
  781.         return 24;
  782.     case CODEC_ID_PCM_S32BE:
  783.     case CODEC_ID_PCM_S32LE:
  784.     case CODEC_ID_PCM_U32BE:
  785.     case CODEC_ID_PCM_U32LE:
  786.     case CODEC_ID_PCM_F32BE:
  787.     case CODEC_ID_PCM_F32LE:
  788.         return 32;
  789.     case CODEC_ID_PCM_F64BE:
  790.     case CODEC_ID_PCM_F64LE:
  791.         return 64;
  792.     default:
  793.         return 0;
  794.     }
  795. }
  796. int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) {
  797.     switch (sample_fmt) {
  798.     case SAMPLE_FMT_U8:
  799.         return 8;
  800.     case SAMPLE_FMT_S16:
  801.         return 16;
  802.     case SAMPLE_FMT_S32:
  803.     case SAMPLE_FMT_FLT:
  804.         return 32;
  805.     case SAMPLE_FMT_DBL:
  806.         return 64;
  807.     default:
  808.         return 0;
  809.     }
  810. }
  811. #if !defined(HAVE_THREADS)
  812. int avcodec_thread_init(AVCodecContext *s, int thread_count){
  813.     return -1;
  814. }
  815. #endif
  816. unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
  817. {
  818.     unsigned int n = 0;
  819.     while(v >= 0xff) {
  820.         *s++ = 0xff;
  821.         v -= 0xff;
  822.         n++;
  823.     }
  824.     *s = v;
  825.     n++;
  826.     return n;
  827. }
  828. /* Wrapper to work around the lack of mkstemp() on mingw/cygin.
  829.  * Also, tries to create file in /tmp first, if possible.
  830.  * *prefix can be a character constant; *filename will be allocated internally.
  831.  * Returns file descriptor of opened file (or -1 on error)
  832.  * and opened file name in **filename. */
  833. int av_tempfile(char *prefix, char **filename) {
  834.     int fd=-1;
  835. #if !defined(HAVE_MKSTEMP)
  836.     *filename = _tempnam(".", prefix);
  837. #else
  838.     size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX" */
  839.     *filename = av_malloc(len);
  840. #endif
  841.     /* -----common section-----*/
  842.     if (*filename == NULL) {
  843.         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file namen");
  844.         return -1;
  845.     }
  846. #if !defined(HAVE_MKSTEMP)
  847.     fd = _open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
  848. #else
  849.     snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
  850.     fd = mkstemp(*filename);
  851.     if (fd < 0) {
  852.         snprintf(*filename, len, "./%sXXXXXX", prefix);
  853.         fd = mkstemp(*filename);
  854.     }
  855. #endif
  856.     /* -----common section-----*/
  857.     if (fd < 0) {
  858.         av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %sn", *filename);
  859.         return -1;
  860.     }
  861.     return fd; /* success */
  862. }
  863. typedef struct {
  864.     const char *abbr;
  865.     int width, height;
  866. } VideoFrameSizeAbbr;
  867. typedef struct {
  868.     const char *abbr;
  869.     int rate_num, rate_den;
  870. } VideoFrameRateAbbr;
  871. static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
  872.     { "ntsc",      720, 480 },
  873.     { "pal",       720, 576 },
  874.     { "qntsc",     352, 240 }, /* VCD compliant NTSC */
  875.     { "qpal",      352, 288 }, /* VCD compliant PAL */
  876.     { "sntsc",     640, 480 }, /* square pixel NTSC */
  877.     { "spal",      768, 576 }, /* square pixel PAL */
  878.     { "film",      352, 240 },
  879.     { "ntsc-film", 352, 240 },
  880.     { "sqcif",     128,  96 },
  881.     { "qcif",      176, 144 },
  882.     { "cif",       352, 288 },
  883.     { "4cif",      704, 576 },
  884.     { "qqvga",     160, 120 },
  885.     { "qvga",      320, 240 },
  886.     { "vga",       640, 480 },
  887.     { "svga",      800, 600 },
  888.     { "xga",      1024, 768 },
  889.     { "uxga",     1600,1200 },
  890.     { "qxga",     2048,1536 },
  891.     { "sxga",     1280,1024 },
  892.     { "qsxga",    2560,2048 },
  893.     { "hsxga",    5120,4096 },
  894.     { "wvga",      852, 480 },
  895.     { "wxga",     1366, 768 },
  896.     { "wsxga",    1600,1024 },
  897.     { "wuxga",    1920,1200 },
  898.     { "woxga",    2560,1600 },
  899.     { "wqsxga",   3200,2048 },
  900.     { "wquxga",   3840,2400 },
  901.     { "whsxga",   6400,4096 },
  902.     { "whuxga",   7680,4800 },
  903.     { "cga",       320, 200 },
  904.     { "ega",       640, 350 },
  905.     { "hd480",     852, 480 },
  906.     { "hd720",    1280, 720 },
  907.     { "hd1080",   1920,1080 },
  908. };
  909. static const VideoFrameRateAbbr video_frame_rate_abbrs[]= {
  910.     { "ntsc",      30000, 1001 },
  911.     { "pal",          25,    1 },
  912.     { "qntsc",     30000, 1001 }, /* VCD compliant NTSC */
  913.     { "qpal",         25,    1 }, /* VCD compliant PAL */
  914.     { "sntsc",     30000, 1001 }, /* square pixel NTSC */
  915.     { "spal",         25,    1 }, /* square pixel PAL */
  916.     { "film",         24,    1 },
  917.     { "ntsc-film", 24000, 1001 },
  918. };
  919. int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str)
  920. {
  921.     int i;
  922.     int n = FF_ARRAY_ELEMS(video_frame_size_abbrs);
  923.     const char *p;
  924.     int frame_width = 0, frame_height = 0;
  925.     for(i=0;i<n;i++) {
  926.         if (!strcmp(video_frame_size_abbrs[i].abbr, str)) {
  927.             frame_width = video_frame_size_abbrs[i].width;
  928.             frame_height = video_frame_size_abbrs[i].height;
  929.             break;
  930.         }
  931.     }
  932.     if (i == n) {
  933.         p = str;
  934.         frame_width = strtol(p, (char **)&p, 10);
  935.         if (*p)
  936.             p++;
  937.         frame_height = strtol(p, (char **)&p, 10);
  938.     }
  939.     if (frame_width <= 0 || frame_height <= 0)
  940.         return -1;
  941.     *width_ptr = frame_width;
  942.     *height_ptr = frame_height;
  943.     return 0;
  944. }
  945. int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg)
  946. {
  947.     int i;
  948.     int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs);
  949.     char* cp;
  950.     /* First, we check our abbreviation table */
  951.     for (i = 0; i < n; ++i)
  952.          if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) {
  953.              frame_rate->num = video_frame_rate_abbrs[i].rate_num;
  954.              frame_rate->den = video_frame_rate_abbrs[i].rate_den;
  955.              return 0;
  956.          }
  957.     /* Then, we try to parse it as fraction */
  958.     cp = strchr(arg, '/');
  959.     if (!cp)
  960.         cp = strchr(arg, ':');
  961.     if (cp) {
  962.         char* cpp;
  963.         frame_rate->num = strtol(arg, &cpp, 10);
  964.         if (cpp != arg || cpp == cp)
  965.             frame_rate->den = strtol(cp+1, &cpp, 10);
  966.         else
  967.            frame_rate->num = 0;
  968.     }
  969.     else {
  970.         /* Finally we give up and parse it as double */
  971.         AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
  972.         frame_rate->den = time_base.den;
  973.         frame_rate->num = time_base.num;
  974.     }
  975.     if (!frame_rate->num || !frame_rate->den)
  976.         return -1;
  977.     else
  978.         return 0;
  979. }
  980. void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
  981. {
  982.     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
  983.             "version to the newest one from SVN. If the problem still "
  984.             "occurs, it means that your file has a feature which has not "
  985.             "been implemented.", feature);
  986.     if(want_sample)
  987.         av_log(avc, AV_LOG_WARNING, " If you want to help, upload a sample "
  988.                 "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
  989.                 "and contact the ffmpeg-devel mailing list.");
  990.     av_log(avc, AV_LOG_WARNING, "n");
  991. }