You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1754 lines
53KB

  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
  24. * utils.
  25. */
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/crc.h"
  28. #include "libavutil/mathematics.h"
  29. #include "libavutil/pixdesc.h"
  30. #include "libavutil/audioconvert.h"
  31. #include "libavutil/imgutils.h"
  32. #include "libavutil/samplefmt.h"
  33. #include "libavutil/dict.h"
  34. #include "libavutil/avassert.h"
  35. #include "avcodec.h"
  36. #include "dsputil.h"
  37. #include "libavutil/opt.h"
  38. #include "imgconvert.h"
  39. #include "thread.h"
  40. #include "audioconvert.h"
  41. #include "internal.h"
  42. #include "bytestream.h"
  43. #include <stdlib.h>
  44. #include <stdarg.h>
  45. #include <limits.h>
  46. #include <float.h>
  47. static int volatile entangled_thread_counter=0;
  48. static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op);
  49. static void *codec_mutex;
  50. static void *avformat_mutex;
  51. void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
  52. {
  53. if(min_size < *size)
  54. return ptr;
  55. min_size= FFMAX(17*min_size/16 + 32, min_size);
  56. ptr= av_realloc(ptr, min_size);
  57. 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
  58. min_size= 0;
  59. *size= min_size;
  60. return ptr;
  61. }
  62. void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
  63. {
  64. void **p = ptr;
  65. if (min_size < *size)
  66. return;
  67. min_size= FFMAX(17*min_size/16 + 32, min_size);
  68. av_free(*p);
  69. *p = av_malloc(min_size);
  70. if (!*p) min_size = 0;
  71. *size= min_size;
  72. }
  73. /* encoder management */
  74. static AVCodec *first_avcodec = NULL;
  75. AVCodec *av_codec_next(AVCodec *c){
  76. if(c) return c->next;
  77. else return first_avcodec;
  78. }
  79. #if !FF_API_AVCODEC_INIT
  80. static
  81. #endif
  82. void avcodec_init(void)
  83. {
  84. static int initialized = 0;
  85. if (initialized != 0)
  86. return;
  87. initialized = 1;
  88. dsputil_static_init();
  89. }
  90. void avcodec_register(AVCodec *codec)
  91. {
  92. AVCodec **p;
  93. avcodec_init();
  94. p = &first_avcodec;
  95. while (*p != NULL) p = &(*p)->next;
  96. *p = codec;
  97. codec->next = NULL;
  98. if (codec->init_static_data)
  99. codec->init_static_data(codec);
  100. }
  101. unsigned avcodec_get_edge_width(void)
  102. {
  103. return EDGE_WIDTH;
  104. }
  105. void avcodec_set_dimensions(AVCodecContext *s, int width, int height){
  106. s->coded_width = width;
  107. s->coded_height= height;
  108. s->width = -((-width )>>s->lowres);
  109. s->height= -((-height)>>s->lowres);
  110. }
  111. #define INTERNAL_BUFFER_SIZE (32+1)
  112. void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
  113. int linesize_align[AV_NUM_DATA_POINTERS])
  114. {
  115. int i;
  116. int w_align= 1;
  117. int h_align= 1;
  118. switch(s->pix_fmt){
  119. case PIX_FMT_YUV420P:
  120. case PIX_FMT_YUYV422:
  121. case PIX_FMT_UYVY422:
  122. case PIX_FMT_YUV422P:
  123. case PIX_FMT_YUV440P:
  124. case PIX_FMT_YUV444P:
  125. case PIX_FMT_GBRP:
  126. case PIX_FMT_GRAY8:
  127. case PIX_FMT_GRAY16BE:
  128. case PIX_FMT_GRAY16LE:
  129. case PIX_FMT_YUVJ420P:
  130. case PIX_FMT_YUVJ422P:
  131. case PIX_FMT_YUVJ440P:
  132. case PIX_FMT_YUVJ444P:
  133. case PIX_FMT_YUVA420P:
  134. case PIX_FMT_YUV420P9LE:
  135. case PIX_FMT_YUV420P9BE:
  136. case PIX_FMT_YUV420P10LE:
  137. case PIX_FMT_YUV420P10BE:
  138. case PIX_FMT_YUV422P9LE:
  139. case PIX_FMT_YUV422P9BE:
  140. case PIX_FMT_YUV422P10LE:
  141. case PIX_FMT_YUV422P10BE:
  142. case PIX_FMT_YUV444P9LE:
  143. case PIX_FMT_YUV444P9BE:
  144. case PIX_FMT_YUV444P10LE:
  145. case PIX_FMT_YUV444P10BE:
  146. case PIX_FMT_GBRP9LE:
  147. case PIX_FMT_GBRP9BE:
  148. case PIX_FMT_GBRP10LE:
  149. case PIX_FMT_GBRP10BE:
  150. w_align = 16; //FIXME assume 16 pixel per macroblock
  151. h_align = 16 * 2; // interlaced needs 2 macroblocks height
  152. break;
  153. case PIX_FMT_YUV411P:
  154. case PIX_FMT_UYYVYY411:
  155. w_align=32;
  156. h_align=8;
  157. break;
  158. case PIX_FMT_YUV410P:
  159. if(s->codec_id == CODEC_ID_SVQ1){
  160. w_align=64;
  161. h_align=64;
  162. }
  163. case PIX_FMT_RGB555:
  164. if(s->codec_id == CODEC_ID_RPZA){
  165. w_align=4;
  166. h_align=4;
  167. }
  168. case PIX_FMT_PAL8:
  169. case PIX_FMT_BGR8:
  170. case PIX_FMT_RGB8:
  171. if(s->codec_id == CODEC_ID_SMC){
  172. w_align=4;
  173. h_align=4;
  174. }
  175. break;
  176. case PIX_FMT_BGR24:
  177. if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){
  178. w_align=4;
  179. h_align=4;
  180. }
  181. break;
  182. default:
  183. w_align= 1;
  184. h_align= 1;
  185. break;
  186. }
  187. if(s->codec_id == CODEC_ID_IFF_ILBM || s->codec_id == CODEC_ID_IFF_BYTERUN1){
  188. w_align= FFMAX(w_align, 8);
  189. }
  190. *width = FFALIGN(*width , w_align);
  191. *height= FFALIGN(*height, h_align);
  192. if(s->codec_id == CODEC_ID_H264 || s->lowres)
  193. *height+=2; // some of the optimized chroma MC reads one line too much
  194. // which is also done in mpeg decoders with lowres > 0
  195. for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
  196. linesize_align[i] = STRIDE_ALIGN;
  197. //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes
  198. //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the
  199. //picture size unneccessarily in some cases. The solution here is not
  200. //pretty and better ideas are welcome!
  201. #if HAVE_MMX
  202. if(s->codec_id == CODEC_ID_SVQ1 || s->codec_id == CODEC_ID_VP5 ||
  203. s->codec_id == CODEC_ID_VP6 || s->codec_id == CODEC_ID_VP6F ||
  204. s->codec_id == CODEC_ID_VP6A || s->codec_id == CODEC_ID_DIRAC) {
  205. for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
  206. linesize_align[i] = 16;
  207. }
  208. #endif
  209. }
  210. void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
  211. int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w;
  212. int linesize_align[AV_NUM_DATA_POINTERS];
  213. int align;
  214. avcodec_align_dimensions2(s, width, height, linesize_align);
  215. align = FFMAX(linesize_align[0], linesize_align[3]);
  216. linesize_align[1] <<= chroma_shift;
  217. linesize_align[2] <<= chroma_shift;
  218. align = FFMAX3(align, linesize_align[1], linesize_align[2]);
  219. *width=FFALIGN(*width, align);
  220. }
  221. void ff_init_buffer_info(AVCodecContext *s, AVFrame *pic)
  222. {
  223. if (s->pkt) {
  224. pic->pkt_pts = s->pkt->pts;
  225. pic->pkt_pos = s->pkt->pos;
  226. } else {
  227. pic->pkt_pts = AV_NOPTS_VALUE;
  228. pic->pkt_pos = -1;
  229. }
  230. pic->reordered_opaque= s->reordered_opaque;
  231. pic->sample_aspect_ratio = s->sample_aspect_ratio;
  232. pic->width = s->width;
  233. pic->height = s->height;
  234. pic->format = s->pix_fmt;
  235. }
  236. static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
  237. {
  238. AVCodecInternal *avci = avctx->internal;
  239. InternalBuffer *buf;
  240. int buf_size, ret, i, needs_extended_data;
  241. buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
  242. frame->nb_samples, avctx->sample_fmt,
  243. 32);
  244. if (buf_size < 0)
  245. return AVERROR(EINVAL);
  246. needs_extended_data = av_sample_fmt_is_planar(avctx->sample_fmt) &&
  247. avctx->channels > AV_NUM_DATA_POINTERS;
  248. /* allocate InternalBuffer if needed */
  249. if (!avci->buffer) {
  250. avci->buffer = av_mallocz(sizeof(InternalBuffer));
  251. if (!avci->buffer)
  252. return AVERROR(ENOMEM);
  253. }
  254. buf = avci->buffer;
  255. /* if there is a previously-used internal buffer, check its size and
  256. channel count to see if we can reuse it */
  257. if (buf->extended_data) {
  258. /* if current buffer is too small, free it */
  259. if (buf->extended_data[0] && buf_size > buf->audio_data_size) {
  260. av_free(buf->extended_data[0]);
  261. if (buf->extended_data != buf->data)
  262. av_free(&buf->extended_data);
  263. buf->extended_data = NULL;
  264. buf->data[0] = NULL;
  265. }
  266. /* if number of channels has changed, reset and/or free extended data
  267. pointers but leave data buffer in buf->data[0] for reuse */
  268. if (buf->nb_channels != avctx->channels) {
  269. if (buf->extended_data != buf->data)
  270. av_free(buf->extended_data);
  271. buf->extended_data = NULL;
  272. }
  273. }
  274. /* if there is no previous buffer or the previous buffer cannot be used
  275. as-is, allocate a new buffer and/or rearrange the channel pointers */
  276. if (!buf->extended_data) {
  277. /* if the channel pointers will fit, just set extended_data to data,
  278. otherwise allocate the extended_data channel pointers */
  279. if (needs_extended_data) {
  280. buf->extended_data = av_mallocz(avctx->channels *
  281. sizeof(*buf->extended_data));
  282. if (!buf->extended_data)
  283. return AVERROR(ENOMEM);
  284. } else {
  285. buf->extended_data = buf->data;
  286. }
  287. /* if there is a previous buffer and it is large enough, reuse it and
  288. just fill-in new channel pointers and linesize, otherwise allocate
  289. a new buffer */
  290. if (buf->extended_data[0]) {
  291. ret = av_samples_fill_arrays(buf->extended_data, &buf->linesize[0],
  292. buf->extended_data[0], avctx->channels,
  293. frame->nb_samples, avctx->sample_fmt,
  294. 32);
  295. } else {
  296. ret = av_samples_alloc(buf->extended_data, &buf->linesize[0],
  297. avctx->channels, frame->nb_samples,
  298. avctx->sample_fmt, 32);
  299. }
  300. if (ret)
  301. return ret;
  302. /* if data was not used for extended_data, we need to copy as many of
  303. the extended_data channel pointers as will fit */
  304. if (needs_extended_data) {
  305. for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
  306. buf->data[i] = buf->extended_data[i];
  307. }
  308. buf->audio_data_size = buf_size;
  309. buf->nb_channels = avctx->channels;
  310. }
  311. /* copy InternalBuffer info to the AVFrame */
  312. frame->type = FF_BUFFER_TYPE_INTERNAL;
  313. frame->extended_data = buf->extended_data;
  314. frame->linesize[0] = buf->linesize[0];
  315. memcpy(frame->data, buf->data, sizeof(frame->data));
  316. if (avctx->pkt) {
  317. frame->pkt_pts = avctx->pkt->pts;
  318. frame->pkt_pos = avctx->pkt->pos;
  319. } else {
  320. frame->pkt_pts = AV_NOPTS_VALUE;
  321. frame->pkt_pos = -1;
  322. }
  323. frame->reordered_opaque = avctx->reordered_opaque;
  324. if (avctx->debug & FF_DEBUG_BUFFERS)
  325. av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p, "
  326. "internal audio buffer used\n", frame);
  327. return 0;
  328. }
  329. static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
  330. {
  331. int i;
  332. int w= s->width;
  333. int h= s->height;
  334. InternalBuffer *buf;
  335. AVCodecInternal *avci = s->internal;
  336. if(pic->data[0]!=NULL) {
  337. av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n");
  338. return -1;
  339. }
  340. if(avci->buffer_count >= INTERNAL_BUFFER_SIZE) {
  341. av_log(s, AV_LOG_ERROR, "buffer_count overflow (missing release_buffer?)\n");
  342. return -1;
  343. }
  344. if(av_image_check_size(w, h, 0, s))
  345. return -1;
  346. if (!avci->buffer) {
  347. avci->buffer = av_mallocz((INTERNAL_BUFFER_SIZE+1) *
  348. sizeof(InternalBuffer));
  349. }
  350. buf = &avci->buffer[avci->buffer_count];
  351. if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){
  352. if(s->active_thread_type&FF_THREAD_FRAME) {
  353. av_log_missing_feature(s, "Width/height changing with frame threads is", 0);
  354. return -1;
  355. }
  356. for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
  357. av_freep(&buf->base[i]);
  358. buf->data[i]= NULL;
  359. }
  360. }
  361. if (!buf->base[0]) {
  362. int h_chroma_shift, v_chroma_shift;
  363. int size[4] = {0};
  364. int tmpsize;
  365. int unaligned;
  366. AVPicture picture;
  367. int stride_align[AV_NUM_DATA_POINTERS];
  368. const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
  369. avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
  370. avcodec_align_dimensions2(s, &w, &h, stride_align);
  371. if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
  372. w+= EDGE_WIDTH*2;
  373. h+= EDGE_WIDTH*2;
  374. }
  375. do {
  376. // NOTE: do not align linesizes individually, this breaks e.g. assumptions
  377. // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
  378. av_image_fill_linesizes(picture.linesize, s->pix_fmt, w);
  379. // increase alignment of w for next try (rhs gives the lowest bit set in w)
  380. w += w & ~(w-1);
  381. unaligned = 0;
  382. for (i=0; i<4; i++){
  383. unaligned |= picture.linesize[i] % stride_align[i];
  384. }
  385. } while (unaligned);
  386. tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize);
  387. if (tmpsize < 0)
  388. return -1;
  389. for (i=0; i<3 && picture.data[i+1]; i++)
  390. size[i] = picture.data[i+1] - picture.data[i];
  391. size[i] = tmpsize - (picture.data[i] - picture.data[0]);
  392. memset(buf->base, 0, sizeof(buf->base));
  393. memset(buf->data, 0, sizeof(buf->data));
  394. for(i=0; i<4 && size[i]; i++){
  395. const int h_shift= i==0 ? 0 : h_chroma_shift;
  396. const int v_shift= i==0 ? 0 : v_chroma_shift;
  397. buf->linesize[i]= picture.linesize[i];
  398. buf->base[i]= av_malloc(size[i]+16); //FIXME 16
  399. if(buf->base[i]==NULL) return -1;
  400. memset(buf->base[i], 128, size[i]);
  401. // no edge if EDGE EMU or not planar YUV
  402. if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
  403. buf->data[i] = buf->base[i];
  404. else
  405. buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (pixel_size*EDGE_WIDTH>>h_shift), stride_align[i]);
  406. }
  407. for (; i < AV_NUM_DATA_POINTERS; i++) {
  408. buf->base[i] = buf->data[i] = NULL;
  409. buf->linesize[i] = 0;
  410. }
  411. if(size[1] && !size[2])
  412. ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt);
  413. buf->width = s->width;
  414. buf->height = s->height;
  415. buf->pix_fmt= s->pix_fmt;
  416. }
  417. pic->type= FF_BUFFER_TYPE_INTERNAL;
  418. for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
  419. pic->base[i]= buf->base[i];
  420. pic->data[i]= buf->data[i];
  421. pic->linesize[i]= buf->linesize[i];
  422. }
  423. pic->extended_data = pic->data;
  424. avci->buffer_count++;
  425. if (s->pkt) {
  426. pic->pkt_pts = s->pkt->pts;
  427. pic->pkt_pos = s->pkt->pos;
  428. } else {
  429. pic->pkt_pts = AV_NOPTS_VALUE;
  430. pic->pkt_pos = -1;
  431. }
  432. pic->reordered_opaque= s->reordered_opaque;
  433. pic->sample_aspect_ratio = s->sample_aspect_ratio;
  434. pic->width = s->width;
  435. pic->height = s->height;
  436. pic->format = s->pix_fmt;
  437. if(s->debug&FF_DEBUG_BUFFERS)
  438. av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d "
  439. "buffers used\n", pic, avci->buffer_count);
  440. return 0;
  441. }
  442. int avcodec_default_get_buffer(AVCodecContext *avctx, AVFrame *frame)
  443. {
  444. switch (avctx->codec_type) {
  445. case AVMEDIA_TYPE_VIDEO:
  446. return video_get_buffer(avctx, frame);
  447. case AVMEDIA_TYPE_AUDIO:
  448. return audio_get_buffer(avctx, frame);
  449. default:
  450. return -1;
  451. }
  452. }
  453. void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){
  454. int i;
  455. InternalBuffer *buf, *last;
  456. AVCodecInternal *avci = s->internal;
  457. assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
  458. assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
  459. assert(avci->buffer_count);
  460. if (avci->buffer) {
  461. buf = NULL; /* avoids warning */
  462. for (i = 0; i < avci->buffer_count; i++) { //just 3-5 checks so is not worth to optimize
  463. buf = &avci->buffer[i];
  464. if (buf->data[0] == pic->data[0])
  465. break;
  466. }
  467. assert(i < avci->buffer_count);
  468. avci->buffer_count--;
  469. last = &avci->buffer[avci->buffer_count];
  470. if (buf != last)
  471. FFSWAP(InternalBuffer, *buf, *last);
  472. }
  473. for (i = 0; i < AV_NUM_DATA_POINTERS; i++) {
  474. pic->data[i]=NULL;
  475. // pic->base[i]=NULL;
  476. }
  477. //printf("R%X\n", pic->opaque);
  478. if(s->debug&FF_DEBUG_BUFFERS)
  479. av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d "
  480. "buffers used\n", pic, avci->buffer_count);
  481. }
  482. int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
  483. AVFrame temp_pic;
  484. int i;
  485. assert(s->codec_type == AVMEDIA_TYPE_VIDEO);
  486. /* If no picture return a new buffer */
  487. if(pic->data[0] == NULL) {
  488. /* We will copy from buffer, so must be readable */
  489. pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
  490. return s->get_buffer(s, pic);
  491. }
  492. /* If internal buffer type return the same buffer */
  493. if(pic->type == FF_BUFFER_TYPE_INTERNAL) {
  494. if(s->pkt) pic->pkt_pts= s->pkt->pts;
  495. else pic->pkt_pts= AV_NOPTS_VALUE;
  496. pic->reordered_opaque= s->reordered_opaque;
  497. return 0;
  498. }
  499. /*
  500. * Not internal type and reget_buffer not overridden, emulate cr buffer
  501. */
  502. temp_pic = *pic;
  503. for(i = 0; i < AV_NUM_DATA_POINTERS; i++)
  504. pic->data[i] = pic->base[i] = NULL;
  505. pic->opaque = NULL;
  506. /* Allocate new frame */
  507. if (s->get_buffer(s, pic))
  508. return -1;
  509. /* Copy image data from old buffer to new buffer */
  510. av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width,
  511. s->height);
  512. s->release_buffer(s, &temp_pic); // Release old frame
  513. return 0;
  514. }
  515. int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
  516. int i;
  517. for(i=0; i<count; i++){
  518. int r= func(c, (char*)arg + i*size);
  519. if(ret) ret[i]= r;
  520. }
  521. return 0;
  522. }
  523. int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){
  524. int i;
  525. for(i=0; i<count; i++){
  526. int r= func(c, arg, i, 0);
  527. if(ret) ret[i]= r;
  528. }
  529. return 0;
  530. }
  531. enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){
  532. while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt))
  533. ++fmt;
  534. return fmt[0];
  535. }
  536. void avcodec_get_frame_defaults(AVFrame *pic){
  537. memset(pic, 0, sizeof(AVFrame));
  538. pic->pts = pic->pkt_dts = pic->pkt_pts = pic->best_effort_timestamp = AV_NOPTS_VALUE;
  539. pic->pkt_pos = -1;
  540. pic->key_frame= 1;
  541. pic->sample_aspect_ratio = (AVRational){0, 1};
  542. pic->format = -1; /* unknown */
  543. }
  544. AVFrame *avcodec_alloc_frame(void){
  545. AVFrame *pic= av_malloc(sizeof(AVFrame));
  546. if(pic==NULL) return NULL;
  547. avcodec_get_frame_defaults(pic);
  548. return pic;
  549. }
  550. static void avcodec_get_subtitle_defaults(AVSubtitle *sub)
  551. {
  552. memset(sub, 0, sizeof(*sub));
  553. sub->pts = AV_NOPTS_VALUE;
  554. }
  555. #if FF_API_AVCODEC_OPEN
  556. int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
  557. {
  558. return avcodec_open2(avctx, codec, NULL);
  559. }
  560. #endif
  561. int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVDictionary **options)
  562. {
  563. int ret = 0;
  564. AVDictionary *tmp = NULL;
  565. if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
  566. return AVERROR(EINVAL);
  567. if (options)
  568. av_dict_copy(&tmp, *options, 0);
  569. /* If there is a user-supplied mutex locking routine, call it. */
  570. if (ff_lockmgr_cb) {
  571. if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
  572. return -1;
  573. }
  574. entangled_thread_counter++;
  575. if(entangled_thread_counter != 1){
  576. av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
  577. ret = -1;
  578. goto end;
  579. }
  580. if(avctx->codec || !codec) {
  581. ret = AVERROR(EINVAL);
  582. goto end;
  583. }
  584. avctx->internal = av_mallocz(sizeof(AVCodecInternal));
  585. if (!avctx->internal) {
  586. ret = AVERROR(ENOMEM);
  587. goto end;
  588. }
  589. if (codec->priv_data_size > 0) {
  590. if(!avctx->priv_data){
  591. avctx->priv_data = av_mallocz(codec->priv_data_size);
  592. if (!avctx->priv_data) {
  593. ret = AVERROR(ENOMEM);
  594. goto end;
  595. }
  596. if (codec->priv_class) {
  597. *(AVClass**)avctx->priv_data= codec->priv_class;
  598. av_opt_set_defaults(avctx->priv_data);
  599. }
  600. }
  601. if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
  602. goto free_and_end;
  603. } else {
  604. avctx->priv_data = NULL;
  605. }
  606. if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
  607. goto free_and_end;
  608. if (codec->capabilities & CODEC_CAP_EXPERIMENTAL)
  609. if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
  610. av_log(avctx, AV_LOG_ERROR, "Codec is experimental but experimental codecs are not enabled, see -strict -2\n");
  611. ret = -1;
  612. goto free_and_end;
  613. }
  614. //We only call avcodec_set_dimensions() for non h264 codecs so as not to overwrite previously setup dimensions
  615. if(!( avctx->coded_width && avctx->coded_height && avctx->width && avctx->height && avctx->codec_id == CODEC_ID_H264)){
  616. if(avctx->coded_width && avctx->coded_height)
  617. avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
  618. else if(avctx->width && avctx->height)
  619. avcodec_set_dimensions(avctx, avctx->width, avctx->height);
  620. }
  621. if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
  622. && ( av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0
  623. || av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0)) {
  624. av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n");
  625. avcodec_set_dimensions(avctx, 0, 0);
  626. }
  627. /* if the decoder init function was already called previously,
  628. free the already allocated subtitle_header before overwriting it */
  629. if (codec->decode)
  630. av_freep(&avctx->subtitle_header);
  631. #define SANE_NB_CHANNELS 128U
  632. if (avctx->channels > SANE_NB_CHANNELS) {
  633. ret = AVERROR(EINVAL);
  634. goto free_and_end;
  635. }
  636. avctx->codec = codec;
  637. if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
  638. avctx->codec_id == CODEC_ID_NONE) {
  639. avctx->codec_type = codec->type;
  640. avctx->codec_id = codec->id;
  641. }
  642. if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
  643. && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
  644. av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
  645. ret = AVERROR(EINVAL);
  646. goto free_and_end;
  647. }
  648. avctx->frame_number = 0;
  649. #if FF_API_ER
  650. av_log(avctx, AV_LOG_DEBUG, "err{or,}_recognition separate: %d; %X\n",
  651. avctx->error_recognition, avctx->err_recognition);
  652. switch(avctx->error_recognition){
  653. case FF_ER_EXPLODE : avctx->err_recognition |= AV_EF_EXPLODE | AV_EF_COMPLIANT | AV_EF_CAREFUL;
  654. break;
  655. case FF_ER_VERY_AGGRESSIVE:
  656. case FF_ER_AGGRESSIVE : avctx->err_recognition |= AV_EF_AGGRESSIVE;
  657. case FF_ER_COMPLIANT : avctx->err_recognition |= AV_EF_COMPLIANT;
  658. case FF_ER_CAREFUL : avctx->err_recognition |= AV_EF_CAREFUL;
  659. }
  660. av_log(avctx, AV_LOG_DEBUG, "err{or,}_recognition combined: %d; %X\n",
  661. avctx->error_recognition, avctx->err_recognition);
  662. #endif
  663. if (!HAVE_THREADS)
  664. av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
  665. if (HAVE_THREADS && !avctx->thread_opaque) {
  666. ret = ff_thread_init(avctx);
  667. if (ret < 0) {
  668. goto free_and_end;
  669. }
  670. }
  671. if (!HAVE_THREADS && !(codec->capabilities & CODEC_CAP_AUTO_THREADS))
  672. avctx->thread_count = 1;
  673. if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
  674. av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
  675. avctx->codec->max_lowres);
  676. ret = AVERROR(EINVAL);
  677. goto free_and_end;
  678. }
  679. if (avctx->codec->encode) {
  680. int i;
  681. if (avctx->codec->sample_fmts) {
  682. for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++)
  683. if (avctx->sample_fmt == avctx->codec->sample_fmts[i])
  684. break;
  685. if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) {
  686. av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n");
  687. ret = AVERROR(EINVAL);
  688. goto free_and_end;
  689. }
  690. }
  691. if (avctx->codec->supported_samplerates) {
  692. for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++)
  693. if (avctx->sample_rate == avctx->codec->supported_samplerates[i])
  694. break;
  695. if (avctx->codec->supported_samplerates[i] == 0) {
  696. av_log(avctx, AV_LOG_ERROR, "Specified sample_rate is not supported\n");
  697. ret = AVERROR(EINVAL);
  698. goto free_and_end;
  699. }
  700. }
  701. if (avctx->codec->channel_layouts) {
  702. if (!avctx->channel_layout) {
  703. av_log(avctx, AV_LOG_WARNING, "channel_layout not specified\n");
  704. } else {
  705. for (i = 0; avctx->codec->channel_layouts[i] != 0; i++)
  706. if (avctx->channel_layout == avctx->codec->channel_layouts[i])
  707. break;
  708. if (avctx->codec->channel_layouts[i] == 0) {
  709. av_log(avctx, AV_LOG_ERROR, "Specified channel_layout is not supported\n");
  710. ret = AVERROR(EINVAL);
  711. goto free_and_end;
  712. }
  713. }
  714. }
  715. if (avctx->channel_layout && avctx->channels) {
  716. if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels) {
  717. av_log(avctx, AV_LOG_ERROR, "channel layout does not match number of channels\n");
  718. ret = AVERROR(EINVAL);
  719. goto free_and_end;
  720. }
  721. } else if (avctx->channel_layout) {
  722. avctx->channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
  723. }
  724. }
  725. avctx->pts_correction_num_faulty_pts =
  726. avctx->pts_correction_num_faulty_dts = 0;
  727. avctx->pts_correction_last_pts =
  728. avctx->pts_correction_last_dts = INT64_MIN;
  729. if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){
  730. ret = avctx->codec->init(avctx);
  731. if (ret < 0) {
  732. goto free_and_end;
  733. }
  734. }
  735. ret=0;
  736. end:
  737. entangled_thread_counter--;
  738. /* Release any user-supplied mutex. */
  739. if (ff_lockmgr_cb) {
  740. (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
  741. }
  742. if (options) {
  743. av_dict_free(options);
  744. *options = tmp;
  745. }
  746. return ret;
  747. free_and_end:
  748. av_dict_free(&tmp);
  749. av_freep(&avctx->priv_data);
  750. av_freep(&avctx->internal);
  751. avctx->codec= NULL;
  752. goto end;
  753. }
  754. int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  755. const short *samples)
  756. {
  757. if(buf_size < FF_MIN_BUFFER_SIZE && 0){
  758. av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
  759. return -1;
  760. }
  761. if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){
  762. int ret = avctx->codec->encode(avctx, buf, buf_size, samples);
  763. avctx->frame_number++;
  764. return ret;
  765. }else
  766. return 0;
  767. }
  768. int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  769. const AVFrame *pict)
  770. {
  771. if(buf_size < FF_MIN_BUFFER_SIZE){
  772. av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n");
  773. return -1;
  774. }
  775. if(av_image_check_size(avctx->width, avctx->height, 0, avctx))
  776. return -1;
  777. if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
  778. int ret = avctx->codec->encode(avctx, buf, buf_size, pict);
  779. avctx->frame_number++;
  780. emms_c(); //needed to avoid an emms_c() call before every return;
  781. return ret;
  782. }else
  783. return 0;
  784. }
  785. int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  786. const AVSubtitle *sub)
  787. {
  788. int ret;
  789. if(sub->start_display_time) {
  790. av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n");
  791. return -1;
  792. }
  793. ret = avctx->codec->encode(avctx, buf, buf_size, sub);
  794. avctx->frame_number++;
  795. return ret;
  796. }
  797. /**
  798. * Attempt to guess proper monotonic timestamps for decoded video frames
  799. * which might have incorrect times. Input timestamps may wrap around, in
  800. * which case the output will as well.
  801. *
  802. * @param pts the pts field of the decoded AVPacket, as passed through
  803. * AVFrame.pkt_pts
  804. * @param dts the dts field of the decoded AVPacket
  805. * @return one of the input values, may be AV_NOPTS_VALUE
  806. */
  807. static int64_t guess_correct_pts(AVCodecContext *ctx,
  808. int64_t reordered_pts, int64_t dts)
  809. {
  810. int64_t pts = AV_NOPTS_VALUE;
  811. if (dts != AV_NOPTS_VALUE) {
  812. ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
  813. ctx->pts_correction_last_dts = dts;
  814. }
  815. if (reordered_pts != AV_NOPTS_VALUE) {
  816. ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
  817. ctx->pts_correction_last_pts = reordered_pts;
  818. }
  819. if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
  820. && reordered_pts != AV_NOPTS_VALUE)
  821. pts = reordered_pts;
  822. else
  823. pts = dts;
  824. return pts;
  825. }
  826. static void apply_param_change(AVCodecContext *avctx, AVPacket *avpkt)
  827. {
  828. int size = 0;
  829. const uint8_t *data;
  830. uint32_t flags;
  831. if (!(avctx->codec->capabilities & CODEC_CAP_PARAM_CHANGE))
  832. return;
  833. data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
  834. if (!data || size < 4)
  835. return;
  836. flags = bytestream_get_le32(&data);
  837. size -= 4;
  838. if (size < 4) /* Required for any of the changes */
  839. return;
  840. if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
  841. avctx->channels = bytestream_get_le32(&data);
  842. size -= 4;
  843. }
  844. if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
  845. if (size < 8)
  846. return;
  847. avctx->channel_layout = bytestream_get_le64(&data);
  848. size -= 8;
  849. }
  850. if (size < 4)
  851. return;
  852. if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
  853. avctx->sample_rate = bytestream_get_le32(&data);
  854. size -= 4;
  855. }
  856. if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
  857. if (size < 8)
  858. return;
  859. avctx->width = bytestream_get_le32(&data);
  860. avctx->height = bytestream_get_le32(&data);
  861. avcodec_set_dimensions(avctx, avctx->width, avctx->height);
  862. size -= 8;
  863. }
  864. }
  865. int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
  866. int *got_picture_ptr,
  867. AVPacket *avpkt)
  868. {
  869. int ret;
  870. *got_picture_ptr= 0;
  871. if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))
  872. return -1;
  873. if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){
  874. av_packet_split_side_data(avpkt);
  875. apply_param_change(avctx, avpkt);
  876. avctx->pkt = avpkt;
  877. if (HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
  878. ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,
  879. avpkt);
  880. else {
  881. ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
  882. avpkt);
  883. picture->pkt_dts= avpkt->dts;
  884. if(!avctx->has_b_frames){
  885. picture->pkt_pos= avpkt->pos;
  886. }
  887. //FIXME these should be under if(!avctx->has_b_frames)
  888. if (!picture->sample_aspect_ratio.num)
  889. picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
  890. if (!picture->width)
  891. picture->width = avctx->width;
  892. if (!picture->height)
  893. picture->height = avctx->height;
  894. if (picture->format == PIX_FMT_NONE)
  895. picture->format = avctx->pix_fmt;
  896. }
  897. emms_c(); //needed to avoid an emms_c() call before every return;
  898. if (*got_picture_ptr){
  899. avctx->frame_number++;
  900. picture->best_effort_timestamp = guess_correct_pts(avctx,
  901. picture->pkt_pts,
  902. picture->pkt_dts);
  903. }
  904. }else
  905. ret= 0;
  906. return ret;
  907. }
  908. #if FF_API_OLD_DECODE_AUDIO
  909. int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
  910. int *frame_size_ptr,
  911. AVPacket *avpkt)
  912. {
  913. AVFrame frame;
  914. int ret, got_frame = 0;
  915. if (avctx->get_buffer != avcodec_default_get_buffer) {
  916. av_log(avctx, AV_LOG_ERROR, "Overriding custom get_buffer() for "
  917. "avcodec_decode_audio3()\n");
  918. avctx->get_buffer = avcodec_default_get_buffer;
  919. avctx->release_buffer = avcodec_default_release_buffer;
  920. }
  921. ret = avcodec_decode_audio4(avctx, &frame, &got_frame, avpkt);
  922. if (ret >= 0 && got_frame) {
  923. int ch, plane_size;
  924. int planar = av_sample_fmt_is_planar(avctx->sample_fmt);
  925. int data_size = av_samples_get_buffer_size(&plane_size, avctx->channels,
  926. frame.nb_samples,
  927. avctx->sample_fmt, 1);
  928. if (*frame_size_ptr < data_size) {
  929. av_log(avctx, AV_LOG_ERROR, "output buffer size is too small for "
  930. "the current frame (%d < %d)\n", *frame_size_ptr, data_size);
  931. return AVERROR(EINVAL);
  932. }
  933. memcpy(samples, frame.extended_data[0], plane_size);
  934. if (planar && avctx->channels > 1) {
  935. uint8_t *out = ((uint8_t *)samples) + plane_size;
  936. for (ch = 1; ch < avctx->channels; ch++) {
  937. memcpy(out, frame.extended_data[ch], plane_size);
  938. out += plane_size;
  939. }
  940. }
  941. *frame_size_ptr = data_size;
  942. } else {
  943. *frame_size_ptr = 0;
  944. }
  945. return ret;
  946. }
  947. #endif
  948. int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
  949. AVFrame *frame,
  950. int *got_frame_ptr,
  951. AVPacket *avpkt)
  952. {
  953. int ret = 0;
  954. *got_frame_ptr = 0;
  955. if (!avpkt->data && avpkt->size) {
  956. av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
  957. return AVERROR(EINVAL);
  958. }
  959. if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
  960. av_packet_split_side_data(avpkt);
  961. apply_param_change(avctx, avpkt);
  962. avctx->pkt = avpkt;
  963. ret = avctx->codec->decode(avctx, frame, got_frame_ptr, avpkt);
  964. if (ret >= 0 && *got_frame_ptr) {
  965. avctx->frame_number++;
  966. frame->pkt_dts = avpkt->dts;
  967. if (frame->format == AV_SAMPLE_FMT_NONE)
  968. frame->format = avctx->sample_fmt;
  969. }
  970. }
  971. return ret;
  972. }
  973. int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
  974. int *got_sub_ptr,
  975. AVPacket *avpkt)
  976. {
  977. int ret;
  978. avctx->pkt = avpkt;
  979. *got_sub_ptr = 0;
  980. avcodec_get_subtitle_defaults(sub);
  981. ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt);
  982. if (*got_sub_ptr)
  983. avctx->frame_number++;
  984. return ret;
  985. }
  986. void avsubtitle_free(AVSubtitle *sub)
  987. {
  988. int i;
  989. for (i = 0; i < sub->num_rects; i++)
  990. {
  991. av_freep(&sub->rects[i]->pict.data[0]);
  992. av_freep(&sub->rects[i]->pict.data[1]);
  993. av_freep(&sub->rects[i]->pict.data[2]);
  994. av_freep(&sub->rects[i]->pict.data[3]);
  995. av_freep(&sub->rects[i]->text);
  996. av_freep(&sub->rects[i]->ass);
  997. av_freep(&sub->rects[i]);
  998. }
  999. av_freep(&sub->rects);
  1000. memset(sub, 0, sizeof(AVSubtitle));
  1001. }
  1002. av_cold int avcodec_close(AVCodecContext *avctx)
  1003. {
  1004. /* If there is a user-supplied mutex locking routine, call it. */
  1005. if (ff_lockmgr_cb) {
  1006. if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN))
  1007. return -1;
  1008. }
  1009. entangled_thread_counter++;
  1010. if(entangled_thread_counter != 1){
  1011. av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n");
  1012. entangled_thread_counter--;
  1013. return -1;
  1014. }
  1015. if (HAVE_THREADS && avctx->thread_opaque)
  1016. ff_thread_free(avctx);
  1017. if (avctx->codec && avctx->codec->close)
  1018. avctx->codec->close(avctx);
  1019. avcodec_default_free_buffers(avctx);
  1020. avctx->coded_frame = NULL;
  1021. av_freep(&avctx->internal);
  1022. if (avctx->codec && avctx->codec->priv_class)
  1023. av_opt_free(avctx->priv_data);
  1024. av_opt_free(avctx);
  1025. av_freep(&avctx->priv_data);
  1026. if(avctx->codec && avctx->codec->encode)
  1027. av_freep(&avctx->extradata);
  1028. avctx->codec = NULL;
  1029. avctx->active_thread_type = 0;
  1030. entangled_thread_counter--;
  1031. /* Release any user-supplied mutex. */
  1032. if (ff_lockmgr_cb) {
  1033. (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE);
  1034. }
  1035. return 0;
  1036. }
  1037. static enum CodecID remap_deprecated_codec_id(enum CodecID id)
  1038. {
  1039. switch(id){
  1040. case CODEC_ID_G723_1_DEPRECATED : return CODEC_ID_G723_1;
  1041. case CODEC_ID_G729_DEPRECATED : return CODEC_ID_G729;
  1042. case CODEC_ID_UTVIDEO_DEPRECATED: return CODEC_ID_UTVIDEO;
  1043. default : return id;
  1044. }
  1045. }
  1046. AVCodec *avcodec_find_encoder(enum CodecID id)
  1047. {
  1048. AVCodec *p, *experimental=NULL;
  1049. p = first_avcodec;
  1050. id= remap_deprecated_codec_id(id);
  1051. while (p) {
  1052. if (p->encode != NULL && p->id == id) {
  1053. if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
  1054. experimental = p;
  1055. } else
  1056. return p;
  1057. }
  1058. p = p->next;
  1059. }
  1060. return experimental;
  1061. }
  1062. AVCodec *avcodec_find_encoder_by_name(const char *name)
  1063. {
  1064. AVCodec *p;
  1065. if (!name)
  1066. return NULL;
  1067. p = first_avcodec;
  1068. while (p) {
  1069. if (p->encode != NULL && strcmp(name,p->name) == 0)
  1070. return p;
  1071. p = p->next;
  1072. }
  1073. return NULL;
  1074. }
  1075. AVCodec *avcodec_find_decoder(enum CodecID id)
  1076. {
  1077. AVCodec *p, *experimental=NULL;
  1078. p = first_avcodec;
  1079. id= remap_deprecated_codec_id(id);
  1080. while (p) {
  1081. if (p->decode != NULL && p->id == id) {
  1082. if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) {
  1083. experimental = p;
  1084. } else
  1085. return p;
  1086. }
  1087. p = p->next;
  1088. }
  1089. return experimental;
  1090. }
  1091. AVCodec *avcodec_find_decoder_by_name(const char *name)
  1092. {
  1093. AVCodec *p;
  1094. if (!name)
  1095. return NULL;
  1096. p = first_avcodec;
  1097. while (p) {
  1098. if (p->decode != NULL && strcmp(name,p->name) == 0)
  1099. return p;
  1100. p = p->next;
  1101. }
  1102. return NULL;
  1103. }
  1104. static int get_bit_rate(AVCodecContext *ctx)
  1105. {
  1106. int bit_rate;
  1107. int bits_per_sample;
  1108. switch(ctx->codec_type) {
  1109. case AVMEDIA_TYPE_VIDEO:
  1110. case AVMEDIA_TYPE_DATA:
  1111. case AVMEDIA_TYPE_SUBTITLE:
  1112. case AVMEDIA_TYPE_ATTACHMENT:
  1113. bit_rate = ctx->bit_rate;
  1114. break;
  1115. case AVMEDIA_TYPE_AUDIO:
  1116. bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
  1117. bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate;
  1118. break;
  1119. default:
  1120. bit_rate = 0;
  1121. break;
  1122. }
  1123. return bit_rate;
  1124. }
  1125. const char *avcodec_get_name(enum CodecID id)
  1126. {
  1127. AVCodec *codec;
  1128. #if !CONFIG_SMALL
  1129. switch (id) {
  1130. #include "libavcodec/codec_names.h"
  1131. }
  1132. av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
  1133. #endif
  1134. codec = avcodec_find_decoder(id);
  1135. if (codec)
  1136. return codec->name;
  1137. codec = avcodec_find_encoder(id);
  1138. if (codec)
  1139. return codec->name;
  1140. return "unknown_codec";
  1141. }
  1142. size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
  1143. {
  1144. int i, len, ret = 0;
  1145. for (i = 0; i < 4; i++) {
  1146. len = snprintf(buf, buf_size,
  1147. isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF);
  1148. buf += len;
  1149. buf_size = buf_size > len ? buf_size - len : 0;
  1150. ret += len;
  1151. codec_tag>>=8;
  1152. }
  1153. return ret;
  1154. }
  1155. void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
  1156. {
  1157. const char *codec_type;
  1158. const char *codec_name;
  1159. const char *profile = NULL;
  1160. AVCodec *p;
  1161. int bitrate;
  1162. AVRational display_aspect_ratio;
  1163. if (!buf || buf_size <= 0)
  1164. return;
  1165. codec_type = av_get_media_type_string(enc->codec_type);
  1166. codec_name = avcodec_get_name(enc->codec_id);
  1167. if (enc->profile != FF_PROFILE_UNKNOWN) {
  1168. p = encode ? avcodec_find_encoder(enc->codec_id) :
  1169. avcodec_find_decoder(enc->codec_id);
  1170. if (p)
  1171. profile = av_get_profile_name(p, enc->profile);
  1172. }
  1173. snprintf(buf, buf_size, "%s: %s%s", codec_type ? codec_type : "unknown",
  1174. codec_name, enc->mb_decision ? " (hq)" : "");
  1175. buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
  1176. if (profile)
  1177. snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
  1178. if (enc->codec_tag) {
  1179. char tag_buf[32];
  1180. av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag);
  1181. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1182. " (%s / 0x%04X)", tag_buf, enc->codec_tag);
  1183. }
  1184. switch(enc->codec_type) {
  1185. case AVMEDIA_TYPE_VIDEO:
  1186. if (enc->pix_fmt != PIX_FMT_NONE) {
  1187. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1188. ", %s",
  1189. av_get_pix_fmt_name(enc->pix_fmt));
  1190. }
  1191. if (enc->width) {
  1192. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1193. ", %dx%d",
  1194. enc->width, enc->height);
  1195. if (enc->sample_aspect_ratio.num) {
  1196. av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
  1197. enc->width*enc->sample_aspect_ratio.num,
  1198. enc->height*enc->sample_aspect_ratio.den,
  1199. 1024*1024);
  1200. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1201. " [SAR %d:%d DAR %d:%d]",
  1202. enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
  1203. display_aspect_ratio.num, display_aspect_ratio.den);
  1204. }
  1205. if(av_log_get_level() >= AV_LOG_DEBUG){
  1206. int g= av_gcd(enc->time_base.num, enc->time_base.den);
  1207. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1208. ", %d/%d",
  1209. enc->time_base.num/g, enc->time_base.den/g);
  1210. }
  1211. }
  1212. if (encode) {
  1213. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1214. ", q=%d-%d", enc->qmin, enc->qmax);
  1215. }
  1216. break;
  1217. case AVMEDIA_TYPE_AUDIO:
  1218. if (enc->sample_rate) {
  1219. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1220. ", %d Hz", enc->sample_rate);
  1221. }
  1222. av_strlcat(buf, ", ", buf_size);
  1223. av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout);
  1224. if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) {
  1225. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1226. ", %s", av_get_sample_fmt_name(enc->sample_fmt));
  1227. }
  1228. break;
  1229. default:
  1230. return;
  1231. }
  1232. if (encode) {
  1233. if (enc->flags & CODEC_FLAG_PASS1)
  1234. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1235. ", pass 1");
  1236. if (enc->flags & CODEC_FLAG_PASS2)
  1237. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1238. ", pass 2");
  1239. }
  1240. bitrate = get_bit_rate(enc);
  1241. if (bitrate != 0) {
  1242. snprintf(buf + strlen(buf), buf_size - strlen(buf),
  1243. ", %d kb/s", bitrate / 1000);
  1244. }
  1245. }
  1246. const char *av_get_profile_name(const AVCodec *codec, int profile)
  1247. {
  1248. const AVProfile *p;
  1249. if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
  1250. return NULL;
  1251. for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
  1252. if (p->profile == profile)
  1253. return p->name;
  1254. return NULL;
  1255. }
  1256. unsigned avcodec_version( void )
  1257. {
  1258. av_assert0(CODEC_ID_V410==164);
  1259. av_assert0(CODEC_ID_PCM_S8_PLANAR==65563);
  1260. av_assert0(CODEC_ID_ADPCM_G722==69660);
  1261. av_assert0(CODEC_ID_BMV_AUDIO==86071);
  1262. av_assert0(CODEC_ID_SRT==94216);
  1263. av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
  1264. return LIBAVCODEC_VERSION_INT;
  1265. }
  1266. const char *avcodec_configuration(void)
  1267. {
  1268. return FFMPEG_CONFIGURATION;
  1269. }
  1270. const char *avcodec_license(void)
  1271. {
  1272. #define LICENSE_PREFIX "libavcodec license: "
  1273. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  1274. }
  1275. void avcodec_flush_buffers(AVCodecContext *avctx)
  1276. {
  1277. if(HAVE_THREADS && avctx->active_thread_type&FF_THREAD_FRAME)
  1278. ff_thread_flush(avctx);
  1279. else if(avctx->codec->flush)
  1280. avctx->codec->flush(avctx);
  1281. }
  1282. static void video_free_buffers(AVCodecContext *s)
  1283. {
  1284. AVCodecInternal *avci = s->internal;
  1285. int i, j;
  1286. if (!avci->buffer)
  1287. return;
  1288. if (avci->buffer_count)
  1289. av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n",
  1290. avci->buffer_count);
  1291. for(i=0; i<INTERNAL_BUFFER_SIZE; i++){
  1292. InternalBuffer *buf = &avci->buffer[i];
  1293. for(j=0; j<4; j++){
  1294. av_freep(&buf->base[j]);
  1295. buf->data[j]= NULL;
  1296. }
  1297. }
  1298. av_freep(&avci->buffer);
  1299. avci->buffer_count=0;
  1300. }
  1301. static void audio_free_buffers(AVCodecContext *avctx)
  1302. {
  1303. AVCodecInternal *avci = avctx->internal;
  1304. InternalBuffer *buf;
  1305. if (!avci->buffer)
  1306. return;
  1307. buf = avci->buffer;
  1308. if (buf->extended_data) {
  1309. av_free(buf->extended_data[0]);
  1310. if (buf->extended_data != buf->data)
  1311. av_free(buf->extended_data);
  1312. }
  1313. av_freep(&avci->buffer);
  1314. }
  1315. void avcodec_default_free_buffers(AVCodecContext *avctx)
  1316. {
  1317. switch (avctx->codec_type) {
  1318. case AVMEDIA_TYPE_VIDEO:
  1319. video_free_buffers(avctx);
  1320. break;
  1321. case AVMEDIA_TYPE_AUDIO:
  1322. audio_free_buffers(avctx);
  1323. break;
  1324. default:
  1325. break;
  1326. }
  1327. }
  1328. #if FF_API_OLD_FF_PICT_TYPES
  1329. char av_get_pict_type_char(int pict_type){
  1330. return av_get_picture_type_char(pict_type);
  1331. }
  1332. #endif
  1333. int av_get_bits_per_sample(enum CodecID codec_id){
  1334. switch(codec_id){
  1335. case CODEC_ID_ADPCM_SBPRO_2:
  1336. return 2;
  1337. case CODEC_ID_ADPCM_SBPRO_3:
  1338. return 3;
  1339. case CODEC_ID_ADPCM_SBPRO_4:
  1340. case CODEC_ID_ADPCM_CT:
  1341. case CODEC_ID_ADPCM_IMA_WAV:
  1342. case CODEC_ID_ADPCM_IMA_QT:
  1343. case CODEC_ID_ADPCM_SWF:
  1344. case CODEC_ID_ADPCM_MS:
  1345. case CODEC_ID_ADPCM_YAMAHA:
  1346. case CODEC_ID_ADPCM_G722:
  1347. return 4;
  1348. case CODEC_ID_PCM_ALAW:
  1349. case CODEC_ID_PCM_MULAW:
  1350. case CODEC_ID_PCM_S8:
  1351. case CODEC_ID_PCM_U8:
  1352. case CODEC_ID_PCM_ZORK:
  1353. return 8;
  1354. case CODEC_ID_PCM_S16BE:
  1355. case CODEC_ID_PCM_S16LE:
  1356. case CODEC_ID_PCM_S16LE_PLANAR:
  1357. case CODEC_ID_PCM_U16BE:
  1358. case CODEC_ID_PCM_U16LE:
  1359. return 16;
  1360. case CODEC_ID_PCM_S24DAUD:
  1361. case CODEC_ID_PCM_S24BE:
  1362. case CODEC_ID_PCM_S24LE:
  1363. case CODEC_ID_PCM_U24BE:
  1364. case CODEC_ID_PCM_U24LE:
  1365. return 24;
  1366. case CODEC_ID_PCM_S32BE:
  1367. case CODEC_ID_PCM_S32LE:
  1368. case CODEC_ID_PCM_U32BE:
  1369. case CODEC_ID_PCM_U32LE:
  1370. case CODEC_ID_PCM_F32BE:
  1371. case CODEC_ID_PCM_F32LE:
  1372. return 32;
  1373. case CODEC_ID_PCM_F64BE:
  1374. case CODEC_ID_PCM_F64LE:
  1375. return 64;
  1376. default:
  1377. return 0;
  1378. }
  1379. }
  1380. #if FF_API_OLD_SAMPLE_FMT
  1381. int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) {
  1382. return av_get_bytes_per_sample(sample_fmt) << 3;
  1383. }
  1384. #endif
  1385. #if !HAVE_THREADS
  1386. int ff_thread_init(AVCodecContext *s){
  1387. return -1;
  1388. }
  1389. #endif
  1390. unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
  1391. {
  1392. unsigned int n = 0;
  1393. while(v >= 0xff) {
  1394. *s++ = 0xff;
  1395. v -= 0xff;
  1396. n++;
  1397. }
  1398. *s = v;
  1399. n++;
  1400. return n;
  1401. }
  1402. int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){
  1403. int i;
  1404. for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++);
  1405. return i;
  1406. }
  1407. void av_log_missing_feature(void *avc, const char *feature, int want_sample)
  1408. {
  1409. av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
  1410. "version to the newest one from Git. If the problem still "
  1411. "occurs, it means that your file has a feature which has not "
  1412. "been implemented.\n", feature);
  1413. if(want_sample)
  1414. av_log_ask_for_sample(avc, NULL);
  1415. }
  1416. void av_log_ask_for_sample(void *avc, const char *msg, ...)
  1417. {
  1418. va_list argument_list;
  1419. va_start(argument_list, msg);
  1420. if (msg)
  1421. av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
  1422. av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
  1423. "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
  1424. "and contact the ffmpeg-devel mailing list.\n");
  1425. va_end(argument_list);
  1426. }
  1427. static AVHWAccel *first_hwaccel = NULL;
  1428. void av_register_hwaccel(AVHWAccel *hwaccel)
  1429. {
  1430. AVHWAccel **p = &first_hwaccel;
  1431. while (*p)
  1432. p = &(*p)->next;
  1433. *p = hwaccel;
  1434. hwaccel->next = NULL;
  1435. }
  1436. AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
  1437. {
  1438. return hwaccel ? hwaccel->next : first_hwaccel;
  1439. }
  1440. AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt)
  1441. {
  1442. AVHWAccel *hwaccel=NULL;
  1443. while((hwaccel= av_hwaccel_next(hwaccel))){
  1444. if ( hwaccel->id == codec_id
  1445. && hwaccel->pix_fmt == pix_fmt)
  1446. return hwaccel;
  1447. }
  1448. return NULL;
  1449. }
  1450. int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op))
  1451. {
  1452. if (ff_lockmgr_cb) {
  1453. if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY))
  1454. return -1;
  1455. if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_DESTROY))
  1456. return -1;
  1457. }
  1458. ff_lockmgr_cb = cb;
  1459. if (ff_lockmgr_cb) {
  1460. if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE))
  1461. return -1;
  1462. if (ff_lockmgr_cb(&avformat_mutex, AV_LOCK_CREATE))
  1463. return -1;
  1464. }
  1465. return 0;
  1466. }
  1467. int avpriv_lock_avformat(void)
  1468. {
  1469. if (ff_lockmgr_cb) {
  1470. if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_OBTAIN))
  1471. return -1;
  1472. }
  1473. return 0;
  1474. }
  1475. int avpriv_unlock_avformat(void)
  1476. {
  1477. if (ff_lockmgr_cb) {
  1478. if ((*ff_lockmgr_cb)(&avformat_mutex, AV_LOCK_RELEASE))
  1479. return -1;
  1480. }
  1481. return 0;
  1482. }
  1483. unsigned int avpriv_toupper4(unsigned int x)
  1484. {
  1485. return toupper( x &0xFF)
  1486. + (toupper((x>>8 )&0xFF)<<8 )
  1487. + (toupper((x>>16)&0xFF)<<16)
  1488. + (toupper((x>>24)&0xFF)<<24);
  1489. }
  1490. #if !HAVE_THREADS
  1491. int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
  1492. {
  1493. f->owner = avctx;
  1494. ff_init_buffer_info(avctx, f);
  1495. return avctx->get_buffer(avctx, f);
  1496. }
  1497. void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
  1498. {
  1499. f->owner->release_buffer(f->owner, f);
  1500. }
  1501. void ff_thread_finish_setup(AVCodecContext *avctx)
  1502. {
  1503. }
  1504. void ff_thread_report_progress(AVFrame *f, int progress, int field)
  1505. {
  1506. }
  1507. void ff_thread_await_progress(AVFrame *f, int progress, int field)
  1508. {
  1509. }
  1510. #endif
  1511. #if FF_API_THREAD_INIT
  1512. int avcodec_thread_init(AVCodecContext *s, int thread_count)
  1513. {
  1514. s->thread_count = thread_count;
  1515. return ff_thread_init(s);
  1516. }
  1517. #endif
  1518. enum AVMediaType avcodec_get_type(enum CodecID codec_id)
  1519. {
  1520. AVCodec *c= avcodec_find_decoder(codec_id);
  1521. if(!c)
  1522. c= avcodec_find_encoder(codec_id);
  1523. if(c)
  1524. return c->type;
  1525. if (codec_id <= CODEC_ID_NONE)
  1526. return AVMEDIA_TYPE_UNKNOWN;
  1527. else if (codec_id < CODEC_ID_FIRST_AUDIO)
  1528. return AVMEDIA_TYPE_VIDEO;
  1529. else if (codec_id < CODEC_ID_FIRST_SUBTITLE)
  1530. return AVMEDIA_TYPE_AUDIO;
  1531. else if (codec_id < CODEC_ID_FIRST_UNKNOWN)
  1532. return AVMEDIA_TYPE_SUBTITLE;
  1533. return AVMEDIA_TYPE_UNKNOWN;
  1534. }