Commit | Line | Data |
---|---|---|
de6d9b64 FB |
1 | /* |
2 | * utils for libavcodec | |
406792e7 | 3 | * Copyright (c) 2001 Fabrice Bellard |
8f2ab833 | 4 | * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> |
de6d9b64 | 5 | * |
b78e7197 DB |
6 | * This file is part of FFmpeg. |
7 | * | |
8 | * FFmpeg is free software; you can redistribute it and/or | |
ff4ec49e FB |
9 | * modify it under the terms of the GNU Lesser General Public |
10 | * License as published by the Free Software Foundation; either | |
b78e7197 | 11 | * version 2.1 of the License, or (at your option) any later version. |
de6d9b64 | 12 | * |
b78e7197 | 13 | * FFmpeg is distributed in the hope that it will be useful, |
de6d9b64 | 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
ff4ec49e FB |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 | * Lesser General Public License for more details. | |
de6d9b64 | 17 | * |
ff4ec49e | 18 | * You should have received a copy of the GNU Lesser General Public |
b78e7197 | 19 | * License along with FFmpeg; if not, write to the Free Software |
5509bffa | 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
de6d9b64 | 21 | */ |
115329f1 | 22 | |
983e3246 | 23 | /** |
ba87f080 | 24 | * @file |
983e3246 MN |
25 | * utils. |
26 | */ | |
115329f1 | 27 | |
7fb94406 | 28 | #include "libavutil/avstring.h" |
245976da DB |
29 | #include "libavutil/integer.h" |
30 | #include "libavutil/crc.h" | |
eb285cfe | 31 | #include "libavutil/pixdesc.h" |
737eb597 RT |
32 | #include "libavutil/audioconvert.h" |
33 | #include "libavutil/imgutils.h" | |
34 | #include "libavutil/samplefmt.h" | |
de6d9b64 | 35 | #include "avcodec.h" |
3123dd79 | 36 | #include "dsputil.h" |
6ed04040 | 37 | #include "libavutil/opt.h" |
db7ae7d1 | 38 | #include "imgconvert.h" |
37b00b47 | 39 | #include "thread.h" |
9e82a113 | 40 | #include "audioconvert.h" |
0ba39dd1 | 41 | #include "internal.h" |
7246177d | 42 | #include <stdlib.h> |
9b879566 | 43 | #include <stdarg.h> |
4c263142 | 44 | #include <limits.h> |
860a40c8 | 45 | #include <float.h> |
de6d9b64 | 46 | |
ddebfb15 | 47 | static int volatile entangled_thread_counter=0; |
bb875b75 | 48 | static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op); |
f988ce6c | 49 | static void *codec_mutex; |
ddebfb15 | 50 | |
372c3f82 | 51 | void *av_fast_realloc(void *ptr, unsigned int *size, FF_INTERNALC_MEM_TYPE min_size) |
8e1e6f31 | 52 | { |
115329f1 | 53 | if(min_size < *size) |
8e1e6f31 | 54 | return ptr; |
115329f1 | 55 | |
372c3f82 | 56 | min_size= FFMAX(17*min_size/16 + 32, min_size); |
8e1e6f31 | 57 | |
372c3f82 | 58 | ptr= av_realloc(ptr, min_size); |
978805b2 | 59 | 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 |
372c3f82 MN |
60 | min_size= 0; |
61 | ||
62 | *size= min_size; | |
978805b2 MN |
63 | |
64 | return ptr; | |
8e1e6f31 FB |
65 | } |
66 | ||
372c3f82 | 67 | void av_fast_malloc(void *ptr, unsigned int *size, FF_INTERNALC_MEM_TYPE min_size) |
238ef6da RD |
68 | { |
69 | void **p = ptr; | |
70 | if (min_size < *size) | |
71 | return; | |
372c3f82 | 72 | min_size= FFMAX(17*min_size/16 + 32, min_size); |
238ef6da | 73 | av_free(*p); |
372c3f82 MN |
74 | *p = av_malloc(min_size); |
75 | if (!*p) min_size = 0; | |
76 | *size= min_size; | |
238ef6da RD |
77 | } |
78 | ||
de6d9b64 | 79 | /* encoder management */ |
e6df765e | 80 | static AVCodec *first_avcodec = NULL; |
de6d9b64 | 81 | |
55b9e69a MN |
82 | AVCodec *av_codec_next(AVCodec *c){ |
83 | if(c) return c->next; | |
84 | else return first_avcodec; | |
85 | } | |
86 | ||
85662f49 | 87 | void avcodec_register(AVCodec *codec) |
de6d9b64 FB |
88 | { |
89 | AVCodec **p; | |
7a961a46 | 90 | avcodec_init(); |
de6d9b64 FB |
91 | p = &first_avcodec; |
92 | while (*p != NULL) p = &(*p)->next; | |
335a761a SS |
93 | *p = codec; |
94 | codec->next = NULL; | |
de6d9b64 FB |
95 | } |
96 | ||
9d385cfe | 97 | #if LIBAVCODEC_VERSION_MAJOR < 53 |
85662f49 SS |
98 | void register_avcodec(AVCodec *codec) |
99 | { | |
100 | avcodec_register(codec); | |
101 | } | |
9d385cfe | 102 | #endif |
85662f49 | 103 | |
0fb49b59 BB |
104 | unsigned avcodec_get_edge_width(void) |
105 | { | |
106 | return EDGE_WIDTH; | |
107 | } | |
108 | ||
21adafec MN |
109 | void avcodec_set_dimensions(AVCodecContext *s, int width, int height){ |
110 | s->coded_width = width; | |
111 | s->coded_height= height; | |
112 | s->width = -((-width )>>s->lowres); | |
113 | s->height= -((-height)>>s->lowres); | |
114 | } | |
115 | ||
d90cf87b | 116 | typedef struct InternalBuffer{ |
1e491e29 | 117 | int last_pic_num; |
d90cf87b | 118 | uint8_t *base[4]; |
1e491e29 | 119 | uint8_t *data[4]; |
237e4938 | 120 | int linesize[4]; |
0701006e MN |
121 | int width, height; |
122 | enum PixelFormat pix_fmt; | |
d90cf87b MN |
123 | }InternalBuffer; |
124 | ||
125 | #define INTERNAL_BUFFER_SIZE 32 | |
1e491e29 | 126 | |
eb285cfe | 127 | void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, int linesize_align[4]){ |
115329f1 DB |
128 | int w_align= 1; |
129 | int h_align= 1; | |
130 | ||
f0bbfc4a MN |
131 | switch(s->pix_fmt){ |
132 | case PIX_FMT_YUV420P: | |
71e445fc | 133 | case PIX_FMT_YUYV422: |
ebb177dd | 134 | case PIX_FMT_UYVY422: |
f0bbfc4a | 135 | case PIX_FMT_YUV422P: |
98c82d69 | 136 | case PIX_FMT_YUV440P: |
f0bbfc4a MN |
137 | case PIX_FMT_YUV444P: |
138 | case PIX_FMT_GRAY8: | |
34380af0 KS |
139 | case PIX_FMT_GRAY16BE: |
140 | case PIX_FMT_GRAY16LE: | |
f0bbfc4a MN |
141 | case PIX_FMT_YUVJ420P: |
142 | case PIX_FMT_YUVJ422P: | |
98c82d69 | 143 | case PIX_FMT_YUVJ440P: |
f0bbfc4a | 144 | case PIX_FMT_YUVJ444P: |
b70335a2 | 145 | case PIX_FMT_YUVA420P: |
f0bbfc4a MN |
146 | w_align= 16; //FIXME check for non mpeg style codecs and use less alignment |
147 | h_align= 16; | |
00d1e96b | 148 | if(s->codec_id == CODEC_ID_MPEG2VIDEO || s->codec_id == CODEC_ID_MJPEG || s->codec_id == CODEC_ID_AMV || s->codec_id == CODEC_ID_THP || s->codec_id == CODEC_ID_H264) |
c81185a1 | 149 | h_align= 32; // interlaced is rounded up to 2 MBs |
f0bbfc4a MN |
150 | break; |
151 | case PIX_FMT_YUV411P: | |
71e445fc | 152 | case PIX_FMT_UYYVYY411: |
f0bbfc4a MN |
153 | w_align=32; |
154 | h_align=8; | |
155 | break; | |
156 | case PIX_FMT_YUV410P: | |
157 | if(s->codec_id == CODEC_ID_SVQ1){ | |
158 | w_align=64; | |
159 | h_align=64; | |
160 | } | |
d99fbbf4 RT |
161 | case PIX_FMT_RGB555: |
162 | if(s->codec_id == CODEC_ID_RPZA){ | |
163 | w_align=4; | |
164 | h_align=4; | |
165 | } | |
166 | case PIX_FMT_PAL8: | |
6337178b MN |
167 | case PIX_FMT_BGR8: |
168 | case PIX_FMT_RGB8: | |
d99fbbf4 RT |
169 | if(s->codec_id == CODEC_ID_SMC){ |
170 | w_align=4; | |
171 | h_align=4; | |
172 | } | |
f0bbfc4a | 173 | break; |
c31b8121 RT |
174 | case PIX_FMT_BGR24: |
175 | if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){ | |
176 | w_align=4; | |
177 | h_align=4; | |
178 | } | |
179 | break; | |
f0bbfc4a MN |
180 | default: |
181 | w_align= 1; | |
182 | h_align= 1; | |
183 | break; | |
184 | } | |
185 | ||
ef516f73 DC |
186 | *width = FFALIGN(*width , w_align); |
187 | *height= FFALIGN(*height, h_align); | |
ba68d9d3 | 188 | if(s->codec_id == CODEC_ID_H264 || s->lowres) |
ae4ffe9f | 189 | *height+=2; // some of the optimized chroma MC reads one line too much |
ba68d9d3 | 190 | // which is also done in mpeg decoders with lowres > 0 |
eb285cfe RD |
191 | |
192 | linesize_align[0] = | |
193 | linesize_align[1] = | |
194 | linesize_align[2] = | |
195 | linesize_align[3] = STRIDE_ALIGN; | |
196 | //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes | |
197 | //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the | |
198 | //picture size unneccessarily in some cases. The solution here is not | |
199 | //pretty and better ideas are welcome! | |
200 | #if HAVE_MMX | |
201 | if(s->codec_id == CODEC_ID_SVQ1 || s->codec_id == CODEC_ID_VP5 || | |
202 | s->codec_id == CODEC_ID_VP6 || s->codec_id == CODEC_ID_VP6F || | |
203 | s->codec_id == CODEC_ID_VP6A) { | |
204 | linesize_align[0] = | |
205 | linesize_align[1] = | |
206 | linesize_align[2] = 16; | |
207 | } | |
208 | #endif | |
209 | } | |
210 | ||
211 | void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ | |
212 | int chroma_shift = av_pix_fmt_descriptors[s->pix_fmt].log2_chroma_w; | |
213 | int linesize_align[4]; | |
214 | int align; | |
215 | avcodec_align_dimensions2(s, width, height, linesize_align); | |
216 | align = FFMAX(linesize_align[0], linesize_align[3]); | |
217 | linesize_align[1] <<= chroma_shift; | |
218 | linesize_align[2] <<= chroma_shift; | |
219 | align = FFMAX3(align, linesize_align[1], linesize_align[2]); | |
220 | *width=FFALIGN(*width, align); | |
f0bbfc4a MN |
221 | } |
222 | ||
bf176f58 | 223 | #if LIBAVCODEC_VERSION_MAJOR < 53 |
0ecca7a4 | 224 | int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){ |
e16f217c | 225 | return av_image_check_size(w, h, 0, av_log_ctx); |
0ecca7a4 | 226 | } |
bf176f58 | 227 | #endif |
0ecca7a4 | 228 | |
492cd3a9 | 229 | int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
1e491e29 | 230 | int i; |
f0bbfc4a MN |
231 | int w= s->width; |
232 | int h= s->height; | |
d90cf87b | 233 | InternalBuffer *buf; |
237e4938 | 234 | int *picture_number; |
0ecca7a4 | 235 | |
65d999d6 MB |
236 | if(pic->data[0]!=NULL) { |
237 | av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n"); | |
238 | return -1; | |
239 | } | |
240 | if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) { | |
241 | av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n"); | |
242 | return -1; | |
243 | } | |
1e491e29 | 244 | |
e16f217c | 245 | if(av_image_check_size(w, h, 0, s)) |
0ecca7a4 MN |
246 | return -1; |
247 | ||
d90cf87b | 248 | if(s->internal_buffer==NULL){ |
6ebc89ac | 249 | s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer)); |
d90cf87b MN |
250 | } |
251 | #if 0 | |
252 | s->internal_buffer= av_fast_realloc( | |
115329f1 DB |
253 | s->internal_buffer, |
254 | &s->internal_buffer_size, | |
d90cf87b MN |
255 | sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ |
256 | ); | |
257 | #endif | |
115329f1 | 258 | |
d90cf87b | 259 | buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; |
6ebc89ac | 260 | picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack |
237e4938 | 261 | (*picture_number)++; |
115329f1 | 262 | |
0701006e | 263 | if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){ |
37b00b47 AS |
264 | if(s->active_thread_type&FF_THREAD_FRAME) { |
265 | av_log_missing_feature(s, "Width/height changing with frame threads is", 0); | |
266 | return -1; | |
267 | } | |
268 | ||
0701006e MN |
269 | for(i=0; i<4; i++){ |
270 | av_freep(&buf->base[i]); | |
271 | buf->data[i]= NULL; | |
272 | } | |
273 | } | |
274 | ||
d90cf87b | 275 | if(buf->base[0]){ |
237e4938 MN |
276 | pic->age= *picture_number - buf->last_pic_num; |
277 | buf->last_pic_num= *picture_number; | |
1e491e29 | 278 | }else{ |
f0bbfc4a | 279 | int h_chroma_shift, v_chroma_shift; |
db7ae7d1 VS |
280 | int size[4] = {0}; |
281 | int tmpsize; | |
c9d6e847 | 282 | int unaligned; |
c7622f9a | 283 | AVPicture picture; |
503bc402 | 284 | int stride_align[4]; |
c7622f9a | 285 | |
1e491e29 | 286 | avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); |
f0bbfc4a | 287 | |
eb285cfe | 288 | avcodec_align_dimensions2(s, &w, &h, stride_align); |
115329f1 | 289 | |
1e491e29 MN |
290 | if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
291 | w+= EDGE_WIDTH*2; | |
292 | h+= EDGE_WIDTH*2; | |
293 | } | |
5b67307a | 294 | |
c9d6e847 RD |
295 | do { |
296 | // NOTE: do not align linesizes individually, this breaks e.g. assumptions | |
297 | // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2 | |
9d2e0ad8 | 298 | av_image_fill_linesizes(picture.linesize, s->pix_fmt, w); |
c9d6e847 RD |
299 | // increase alignment of w for next try (rhs gives the lowest bit set in w) |
300 | w += w & ~(w-1); | |
db7ae7d1 | 301 | |
c9d6e847 | 302 | unaligned = 0; |
45bae968 | 303 | for (i=0; i<4; i++){ |
c9d6e847 | 304 | unaligned |= picture.linesize[i] % stride_align[i]; |
45bae968 | 305 | } |
c9d6e847 | 306 | } while (unaligned); |
db7ae7d1 | 307 | |
9d2e0ad8 | 308 | tmpsize = av_image_fill_pointers(picture.data, s->pix_fmt, h, NULL, picture.linesize); |
f8c96d01 RD |
309 | if (tmpsize < 0) |
310 | return -1; | |
db7ae7d1 VS |
311 | |
312 | for (i=0; i<3 && picture.data[i+1]; i++) | |
313 | size[i] = picture.data[i+1] - picture.data[i]; | |
cf73e32a | 314 | size[i] = tmpsize - (picture.data[i] - picture.data[0]); |
c7622f9a | 315 | |
d90cf87b | 316 | buf->last_pic_num= -256*256*256*64; |
c7622f9a MN |
317 | memset(buf->base, 0, sizeof(buf->base)); |
318 | memset(buf->data, 0, sizeof(buf->data)); | |
1e491e29 | 319 | |
b70335a2 | 320 | for(i=0; i<4 && size[i]; i++){ |
2c19981a MN |
321 | const int h_shift= i==0 ? 0 : h_chroma_shift; |
322 | const int v_shift= i==0 ? 0 : v_chroma_shift; | |
1e491e29 | 323 | |
c7622f9a | 324 | buf->linesize[i]= picture.linesize[i]; |
1e491e29 | 325 | |
c7622f9a | 326 | buf->base[i]= av_malloc(size[i]+16); //FIXME 16 |
d90cf87b | 327 | if(buf->base[i]==NULL) return -1; |
c7622f9a MN |
328 | memset(buf->base[i], 128, size[i]); |
329 | ||
3491a9b2 | 330 | // no edge if EDGE EMU or not planar YUV |
6337178b | 331 | if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2]) |
d90cf87b | 332 | buf->data[i] = buf->base[i]; |
1e491e29 | 333 | else |
ef516f73 | 334 | buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]); |
1e491e29 | 335 | } |
6337178b | 336 | if(size[1] && !size[2]) |
ed5d30d9 | 337 | ff_set_systematic_pal2((uint32_t*)buf->data[1], s->pix_fmt); |
0701006e MN |
338 | buf->width = s->width; |
339 | buf->height = s->height; | |
340 | buf->pix_fmt= s->pix_fmt; | |
1e491e29 MN |
341 | pic->age= 256*256*256*64; |
342 | } | |
237e4938 | 343 | pic->type= FF_BUFFER_TYPE_INTERNAL; |
1e491e29 | 344 | |
d90cf87b MN |
345 | for(i=0; i<4; i++){ |
346 | pic->base[i]= buf->base[i]; | |
347 | pic->data[i]= buf->data[i]; | |
237e4938 | 348 | pic->linesize[i]= buf->linesize[i]; |
d90cf87b MN |
349 | } |
350 | s->internal_buffer_count++; | |
351 | ||
393cbb96 MN |
352 | if(s->pkt) pic->pkt_pts= s->pkt->pts; |
353 | else pic->pkt_pts= AV_NOPTS_VALUE; | |
79de84f2 MN |
354 | pic->reordered_opaque= s->reordered_opaque; |
355 | ||
385c820b AS |
356 | if(s->debug&FF_DEBUG_BUFFERS) |
357 | av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count); | |
358 | ||
1e491e29 MN |
359 | return 0; |
360 | } | |
361 | ||
492cd3a9 | 362 | void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
1e491e29 | 363 | int i; |
6829ac8d | 364 | InternalBuffer *buf, *last; |
d90cf87b | 365 | |
4e00e76b | 366 | assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
59c673d5 | 367 | assert(s->internal_buffer_count); |
d90cf87b | 368 | |
b1609412 | 369 | buf = NULL; /* avoids warning */ |
d90cf87b MN |
370 | for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
371 | buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
372 | if(buf->data[0] == pic->data[0]) | |
373 | break; | |
374 | } | |
375 | assert(i < s->internal_buffer_count); | |
376 | s->internal_buffer_count--; | |
377 | last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
378 | ||
6829ac8d | 379 | FFSWAP(InternalBuffer, *buf, *last); |
d90cf87b | 380 | |
b70335a2 | 381 | for(i=0; i<4; i++){ |
1e491e29 | 382 | pic->data[i]=NULL; |
d90cf87b MN |
383 | // pic->base[i]=NULL; |
384 | } | |
1e491e29 | 385 | //printf("R%X\n", pic->opaque); |
385c820b AS |
386 | |
387 | if(s->debug&FF_DEBUG_BUFFERS) | |
388 | av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count); | |
1e491e29 MN |
389 | } |
390 | ||
e1c2a5a0 RT |
391 | int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ |
392 | AVFrame temp_pic; | |
393 | int i; | |
394 | ||
395 | /* If no picture return a new buffer */ | |
396 | if(pic->data[0] == NULL) { | |
397 | /* We will copy from buffer, so must be readable */ | |
398 | pic->buffer_hints |= FF_BUFFER_HINTS_READABLE; | |
399 | return s->get_buffer(s, pic); | |
400 | } | |
401 | ||
402 | /* If internal buffer type return the same buffer */ | |
b8af4fe9 | 403 | if(pic->type == FF_BUFFER_TYPE_INTERNAL) { |
62ecd363 NG |
404 | if(s->pkt) pic->pkt_pts= s->pkt->pts; |
405 | else pic->pkt_pts= AV_NOPTS_VALUE; | |
b8af4fe9 | 406 | pic->reordered_opaque= s->reordered_opaque; |
e1c2a5a0 | 407 | return 0; |
b8af4fe9 | 408 | } |
e1c2a5a0 RT |
409 | |
410 | /* | |
411 | * Not internal type and reget_buffer not overridden, emulate cr buffer | |
412 | */ | |
413 | temp_pic = *pic; | |
414 | for(i = 0; i < 4; i++) | |
415 | pic->data[i] = pic->base[i] = NULL; | |
416 | pic->opaque = NULL; | |
417 | /* Allocate new frame */ | |
418 | if (s->get_buffer(s, pic)) | |
419 | return -1; | |
420 | /* Copy image data from old buffer to new buffer */ | |
636d6a4a | 421 | av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width, |
e1c2a5a0 RT |
422 | s->height); |
423 | s->release_buffer(s, &temp_pic); // Release old frame | |
424 | return 0; | |
425 | } | |
426 | ||
3a84713a | 427 | int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){ |
9c3d33d6 MN |
428 | int i; |
429 | ||
430 | for(i=0; i<count; i++){ | |
3a84713a | 431 | int r= func(c, (char*)arg + i*size); |
9c3d33d6 MN |
432 | if(ret) ret[i]= r; |
433 | } | |
434 | return 0; | |
435 | } | |
436 | ||
8d23a86f RD |
437 | int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){ |
438 | int i; | |
439 | ||
440 | for(i=0; i<count; i++){ | |
441 | int r= func(c, arg, i, 0); | |
442 | if(ret) ret[i]= r; | |
443 | } | |
444 | return 0; | |
445 | } | |
446 | ||
c269cf68 MN |
447 | enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){ |
448 | while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt)) | |
449 | ++fmt; | |
a33c7159 MN |
450 | return fmt[0]; |
451 | } | |
452 | ||
9740beff MN |
453 | void avcodec_get_frame_defaults(AVFrame *pic){ |
454 | memset(pic, 0, sizeof(AVFrame)); | |
455 | ||
456 | pic->pts= AV_NOPTS_VALUE; | |
c342499d | 457 | pic->key_frame= 1; |
9740beff MN |
458 | } |
459 | ||
492cd3a9 | 460 | AVFrame *avcodec_alloc_frame(void){ |
9740beff | 461 | AVFrame *pic= av_malloc(sizeof(AVFrame)); |
115329f1 | 462 | |
9740beff | 463 | if(pic==NULL) return NULL; |
115329f1 | 464 | |
9740beff | 465 | avcodec_get_frame_defaults(pic); |
115329f1 | 466 | |
1e491e29 MN |
467 | return pic; |
468 | } | |
469 | ||
5e4c7ca2 | 470 | int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
de6d9b64 | 471 | { |
ddebfb15 | 472 | int ret= -1; |
115329f1 | 473 | |
f988ce6c AÖ |
474 | /* If there is a user-supplied mutex locking routine, call it. */ |
475 | if (ff_lockmgr_cb) { | |
476 | if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN)) | |
477 | return -1; | |
478 | } | |
479 | ||
ddebfb15 MN |
480 | entangled_thread_counter++; |
481 | if(entangled_thread_counter != 1){ | |
482 | av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
483 | goto end; | |
484 | } | |
de6d9b64 | 485 | |
9c87b8f7 | 486 | if(avctx->codec || !codec) |
ddebfb15 | 487 | goto end; |
09770af8 | 488 | |
0edf8a7a | 489 | if (codec->priv_data_size > 0) { |
dc51a72b | 490 | if(!avctx->priv_data){ |
0edf8a7a | 491 | avctx->priv_data = av_mallocz(codec->priv_data_size); |
90f06cea PI |
492 | if (!avctx->priv_data) { |
493 | ret = AVERROR(ENOMEM); | |
ddebfb15 | 494 | goto end; |
90f06cea | 495 | } |
dc51a72b MN |
496 | if(codec->priv_class){ //this can be droped once all user apps use avcodec_get_context_defaults3() |
497 | *(AVClass**)avctx->priv_data= codec->priv_class; | |
498 | av_opt_set_defaults(avctx->priv_data); | |
499 | } | |
500 | } | |
0edf8a7a PG |
501 | } else { |
502 | avctx->priv_data = NULL; | |
503 | } | |
21adafec MN |
504 | |
505 | if(avctx->coded_width && avctx->coded_height) | |
506 | avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height); | |
507 | else if(avctx->width && avctx->height) | |
508 | avcodec_set_dimensions(avctx, avctx->width, avctx->height); | |
509 | ||
82eac2f3 RD |
510 | if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height) |
511 | && ( av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx) < 0 | |
512 | || av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0)) { | |
513 | av_log(avctx, AV_LOG_WARNING, "ignoring invalid width/height values\n"); | |
514 | avcodec_set_dimensions(avctx, 0, 0); | |
515 | } | |
516 | ||
f19c58b4 AJ |
517 | /* if the decoder init function was already called previously, |
518 | free the already allocated subtitle_header before overwriting it */ | |
519 | if (codec->decode) | |
520 | av_freep(&avctx->subtitle_header); | |
521 | ||
fa77dd63 | 522 | #define SANE_NB_CHANNELS 128U |
82eac2f3 | 523 | if (avctx->channels > SANE_NB_CHANNELS) { |
7868349a | 524 | ret = AVERROR(EINVAL); |
2a9b5c9b | 525 | goto free_and_end; |
0ecca7a4 MN |
526 | } |
527 | ||
b5c85991 | 528 | avctx->codec = codec; |
72415b2a | 529 | if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) && |
681c180d RD |
530 | avctx->codec_id == CODEC_ID_NONE) { |
531 | avctx->codec_type = codec->type; | |
532 | avctx->codec_id = codec->id; | |
533 | } | |
e83c716e AJ |
534 | if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type |
535 | && avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) { | |
4c0dda2b | 536 | av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n"); |
2a9b5c9b | 537 | goto free_and_end; |
4c0dda2b | 538 | } |
b5c85991 | 539 | avctx->frame_number = 0; |
37b00b47 AS |
540 | |
541 | if (HAVE_THREADS && !avctx->thread_opaque) { | |
c0b102ca | 542 | ret = ff_thread_init(avctx, avctx->thread_count); |
37b00b47 AS |
543 | if (ret < 0) { |
544 | goto free_and_end; | |
545 | } | |
546 | } | |
547 | ||
527c91e3 CEH |
548 | if (avctx->codec->max_lowres < avctx->lowres) { |
549 | av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n", | |
550 | avctx->codec->max_lowres); | |
551 | goto free_and_end; | |
552 | } | |
2cfa2d92 RD |
553 | if (avctx->codec->sample_fmts && avctx->codec->encode) { |
554 | int i; | |
555 | for (i = 0; avctx->codec->sample_fmts[i] != AV_SAMPLE_FMT_NONE; i++) | |
556 | if (avctx->sample_fmt == avctx->codec->sample_fmts[i]) | |
557 | break; | |
558 | if (avctx->codec->sample_fmts[i] == AV_SAMPLE_FMT_NONE) { | |
559 | av_log(avctx, AV_LOG_ERROR, "Specified sample_fmt is not supported.\n"); | |
560 | goto free_and_end; | |
561 | } | |
562 | } | |
0fd0ef79 | 563 | |
37b00b47 | 564 | if(avctx->codec->init && !(avctx->active_thread_type&FF_THREAD_FRAME)){ |
2de4f9eb MN |
565 | ret = avctx->codec->init(avctx); |
566 | if (ret < 0) { | |
2a9b5c9b | 567 | goto free_and_end; |
2de4f9eb | 568 | } |
6e546aaa | 569 | } |
ddebfb15 MN |
570 | ret=0; |
571 | end: | |
572 | entangled_thread_counter--; | |
f988ce6c AÖ |
573 | |
574 | /* Release any user-supplied mutex. */ | |
575 | if (ff_lockmgr_cb) { | |
576 | (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE); | |
577 | } | |
ddebfb15 | 578 | return ret; |
2a9b5c9b MN |
579 | free_and_end: |
580 | av_freep(&avctx->priv_data); | |
581 | avctx->codec= NULL; | |
582 | goto end; | |
de6d9b64 FB |
583 | } |
584 | ||
5e4c7ca2 | 585 | int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
de6d9b64 FB |
586 | const short *samples) |
587 | { | |
0ecca7a4 | 588 | if(buf_size < FF_MIN_BUFFER_SIZE && 0){ |
5286d11f | 589 | av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n"); |
0ecca7a4 MN |
590 | return -1; |
591 | } | |
6f824977 | 592 | if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){ |
8eb027c8 | 593 | int ret = avctx->codec->encode(avctx, buf, buf_size, samples); |
6f824977 MN |
594 | avctx->frame_number++; |
595 | return ret; | |
596 | }else | |
597 | return 0; | |
de6d9b64 FB |
598 | } |
599 | ||
5e4c7ca2 | 600 | int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
492cd3a9 | 601 | const AVFrame *pict) |
de6d9b64 | 602 | { |
0ecca7a4 | 603 | if(buf_size < FF_MIN_BUFFER_SIZE){ |
5286d11f | 604 | av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n"); |
0ecca7a4 MN |
605 | return -1; |
606 | } | |
e16f217c | 607 | if(av_image_check_size(avctx->width, avctx->height, 0, avctx)) |
0ecca7a4 | 608 | return -1; |
6f824977 | 609 | if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){ |
8eb027c8 | 610 | int ret = avctx->codec->encode(avctx, buf, buf_size, pict); |
6f824977 | 611 | avctx->frame_number++; |
bb628dae | 612 | emms_c(); //needed to avoid an emms_c() call before every return; |
115329f1 | 613 | |
6f824977 MN |
614 | return ret; |
615 | }else | |
616 | return 0; | |
de6d9b64 FB |
617 | } |
618 | ||
115329f1 | 619 | int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
240c1657 FB |
620 | const AVSubtitle *sub) |
621 | { | |
622 | int ret; | |
9413db9e BA |
623 | if(sub->start_display_time) { |
624 | av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n"); | |
625 | return -1; | |
626 | } | |
505aa6c9 BA |
627 | if(sub->num_rects == 0 || !sub->rects) |
628 | return -1; | |
8eb027c8 | 629 | ret = avctx->codec->encode(avctx, buf, buf_size, sub); |
240c1657 FB |
630 | avctx->frame_number++; |
631 | return ret; | |
632 | } | |
633 | ||
164bc38c | 634 | #if FF_API_VIDEO_OLD |
5e4c7ca2 | 635 | int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
de6d9b64 | 636 | int *got_picture_ptr, |
2efa7fd1 | 637 | const uint8_t *buf, int buf_size) |
de6d9b64 | 638 | { |
7a00bbad TB |
639 | AVPacket avpkt; |
640 | av_init_packet(&avpkt); | |
641 | avpkt.data = buf; | |
642 | avpkt.size = buf_size; | |
10f9ff9b RD |
643 | // HACK for CorePNG to decode as normal PNG by default |
644 | avpkt.flags = AV_PKT_FLAG_KEY; | |
7a00bbad TB |
645 | |
646 | return avcodec_decode_video2(avctx, picture, got_picture_ptr, &avpkt); | |
647 | } | |
648 | #endif | |
649 | ||
650 | int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, | |
651 | int *got_picture_ptr, | |
652 | AVPacket *avpkt) | |
653 | { | |
de6d9b64 | 654 | int ret; |
115329f1 | 655 | |
53db1cae | 656 | *got_picture_ptr= 0; |
e16f217c | 657 | if((avctx->coded_width||avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx)) |
0ecca7a4 | 658 | return -1; |
393cbb96 MN |
659 | |
660 | avctx->pkt = avpkt; | |
661 | ||
37b00b47 AS |
662 | if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type&FF_THREAD_FRAME)){ |
663 | if (HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME) | |
664 | ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr, | |
665 | avpkt); | |
666 | else { | |
667 | ret = avctx->codec->decode(avctx, picture, got_picture_ptr, | |
668 | avpkt); | |
669 | picture->pkt_dts= avpkt->dts; | |
670 | } | |
6bb925f4 | 671 | |
bb628dae | 672 | emms_c(); //needed to avoid an emms_c() call before every return; |
115329f1 DB |
673 | |
674 | if (*got_picture_ptr) | |
934982c4 MN |
675 | avctx->frame_number++; |
676 | }else | |
677 | ret= 0; | |
678 | ||
de6d9b64 FB |
679 | return ret; |
680 | } | |
681 | ||
a377cfa6 | 682 | #if FF_API_AUDIO_OLD |
5e4c7ca2 | 683 | int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples, |
de6d9b64 | 684 | int *frame_size_ptr, |
2efa7fd1 | 685 | const uint8_t *buf, int buf_size) |
de6d9b64 | 686 | { |
7a00bbad TB |
687 | AVPacket avpkt; |
688 | av_init_packet(&avpkt); | |
689 | avpkt.data = buf; | |
690 | avpkt.size = buf_size; | |
691 | ||
692 | return avcodec_decode_audio3(avctx, samples, frame_size_ptr, &avpkt); | |
693 | } | |
694 | #endif | |
695 | ||
696 | int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples, | |
697 | int *frame_size_ptr, | |
698 | AVPacket *avpkt) | |
699 | { | |
de6d9b64 FB |
700 | int ret; |
701 | ||
393cbb96 MN |
702 | avctx->pkt = avpkt; |
703 | ||
7a00bbad | 704 | if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){ |
9c856d62 MN |
705 | //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough |
706 | if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){ | |
707 | av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n"); | |
708 | return -1; | |
709 | } | |
710 | if(*frame_size_ptr < FF_MIN_BUFFER_SIZE || | |
81fc2f37 | 711 | *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){ |
9c856d62 MN |
712 | av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr); |
713 | return -1; | |
714 | } | |
715 | ||
7a00bbad | 716 | ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt); |
fec9ccb7 | 717 | avctx->frame_number++; |
ac66834c | 718 | }else{ |
fec9ccb7 | 719 | ret= 0; |
ac66834c MN |
720 | *frame_size_ptr=0; |
721 | } | |
de6d9b64 FB |
722 | return ret; |
723 | } | |
724 | ||
448ce925 | 725 | #if FF_API_SUBTITLE_OLD |
240c1657 FB |
726 | int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub, |
727 | int *got_sub_ptr, | |
728 | const uint8_t *buf, int buf_size) | |
729 | { | |
7a00bbad TB |
730 | AVPacket avpkt; |
731 | av_init_packet(&avpkt); | |
732 | avpkt.data = buf; | |
733 | avpkt.size = buf_size; | |
734 | ||
735 | return avcodec_decode_subtitle2(avctx, sub, got_sub_ptr, &avpkt); | |
736 | } | |
737 | #endif | |
738 | ||
739 | int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, | |
740 | int *got_sub_ptr, | |
741 | AVPacket *avpkt) | |
742 | { | |
240c1657 FB |
743 | int ret; |
744 | ||
393cbb96 | 745 | avctx->pkt = avpkt; |
240c1657 | 746 | *got_sub_ptr = 0; |
7a00bbad | 747 | ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt); |
240c1657 FB |
748 | if (*got_sub_ptr) |
749 | avctx->frame_number++; | |
750 | return ret; | |
751 | } | |
752 | ||
e1d7c883 RD |
753 | void avsubtitle_free(AVSubtitle *sub) |
754 | { | |
755 | int i; | |
756 | ||
757 | for (i = 0; i < sub->num_rects; i++) | |
758 | { | |
8b834ac5 RD |
759 | av_freep(&sub->rects[i]->pict.data[0]); |
760 | av_freep(&sub->rects[i]->pict.data[1]); | |
761 | av_freep(&sub->rects[i]->pict.data[2]); | |
762 | av_freep(&sub->rects[i]->pict.data[3]); | |
763 | av_freep(&sub->rects[i]->text); | |
764 | av_freep(&sub->rects[i]->ass); | |
765 | av_freep(&sub->rects[i]); | |
e1d7c883 RD |
766 | } |
767 | ||
8b834ac5 | 768 | av_freep(&sub->rects); |
e1d7c883 RD |
769 | |
770 | memset(sub, 0, sizeof(AVSubtitle)); | |
771 | } | |
772 | ||
0752cd39 | 773 | av_cold int avcodec_close(AVCodecContext *avctx) |
de6d9b64 | 774 | { |
f988ce6c AÖ |
775 | /* If there is a user-supplied mutex locking routine, call it. */ |
776 | if (ff_lockmgr_cb) { | |
777 | if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN)) | |
778 | return -1; | |
779 | } | |
780 | ||
ddebfb15 MN |
781 | entangled_thread_counter++; |
782 | if(entangled_thread_counter != 1){ | |
783 | av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
784 | entangled_thread_counter--; | |
785 | return -1; | |
786 | } | |
787 | ||
49fb20cb | 788 | if (HAVE_THREADS && avctx->thread_opaque) |
c0b102ca | 789 | ff_thread_free(avctx); |
dccda293 | 790 | if (avctx->codec && avctx->codec->close) |
de6d9b64 | 791 | avctx->codec->close(avctx); |
eea8c08f | 792 | avcodec_default_free_buffers(avctx); |
b3ab3199 | 793 | avctx->coded_frame = NULL; |
3123dd79 | 794 | av_freep(&avctx->priv_data); |
77a670e7 | 795 | if(avctx->codec && avctx->codec->encode) |
c4f267ab | 796 | av_freep(&avctx->extradata); |
de6d9b64 | 797 | avctx->codec = NULL; |
37b00b47 | 798 | avctx->active_thread_type = 0; |
ddebfb15 | 799 | entangled_thread_counter--; |
f988ce6c AÖ |
800 | |
801 | /* Release any user-supplied mutex. */ | |
802 | if (ff_lockmgr_cb) { | |
803 | (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE); | |
804 | } | |
de6d9b64 FB |
805 | return 0; |
806 | } | |
807 | ||
808 | AVCodec *avcodec_find_encoder(enum CodecID id) | |
809 | { | |
93ebfeea | 810 | AVCodec *p, *experimental=NULL; |
de6d9b64 FB |
811 | p = first_avcodec; |
812 | while (p) { | |
93ebfeea JG |
813 | if (p->encode != NULL && p->id == id) { |
814 | if (p->capabilities & CODEC_CAP_EXPERIMENTAL && !experimental) { | |
815 | experimental = p; | |
816 | } else | |
817 | return p; | |
818 | } | |
de6d9b64 FB |
819 | p = p->next; |
820 | } | |
93ebfeea | 821 | return experimental; |
de6d9b64 FB |
822 | } |
823 | ||
98f3b098 A |
824 | AVCodec *avcodec_find_encoder_by_name(const char *name) |
825 | { | |
826 | AVCodec *p; | |
fc228c90 AJ |
827 | if (!name) |
828 | return NULL; | |
98f3b098 A |
829 | p = first_avcodec; |
830 | while (p) { | |
831 | if (p->encode != NULL && strcmp(name,p->name) == 0) | |
832 | return p; | |
833 | p = p->next; | |
834 | } | |
835 | return NULL; | |
836 | } | |
837 | ||
de6d9b64 FB |
838 | AVCodec *avcodec_find_decoder(enum CodecID id) |
839 | { | |
840 | AVCodec *p; | |
841 | p = first_avcodec; | |
842 | while (p) { | |
843 | if (p->decode != NULL && p->id == id) | |
844 | return p; | |
845 | p = p->next; | |
846 | } | |
847 | return NULL; | |
848 | } | |
849 | ||
850 | AVCodec *avcodec_find_decoder_by_name(const char *name) | |
851 | { | |
852 | AVCodec *p; | |
fc228c90 AJ |
853 | if (!name) |
854 | return NULL; | |
de6d9b64 FB |
855 | p = first_avcodec; |
856 | while (p) { | |
857 | if (p->decode != NULL && strcmp(name,p->name) == 0) | |
858 | return p; | |
859 | p = p->next; | |
860 | } | |
861 | return NULL; | |
862 | } | |
863 | ||
406aa93f | 864 | static int get_bit_rate(AVCodecContext *ctx) |
ce34ff6b RK |
865 | { |
866 | int bit_rate; | |
867 | int bits_per_sample; | |
868 | ||
869 | switch(ctx->codec_type) { | |
72415b2a | 870 | case AVMEDIA_TYPE_VIDEO: |
4563cf24 SS |
871 | case AVMEDIA_TYPE_DATA: |
872 | case AVMEDIA_TYPE_SUBTITLE: | |
873 | case AVMEDIA_TYPE_ATTACHMENT: | |
ce34ff6b RK |
874 | bit_rate = ctx->bit_rate; |
875 | break; | |
72415b2a | 876 | case AVMEDIA_TYPE_AUDIO: |
ce34ff6b RK |
877 | bits_per_sample = av_get_bits_per_sample(ctx->codec_id); |
878 | bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate; | |
879 | break; | |
ce34ff6b RK |
880 | default: |
881 | bit_rate = 0; | |
882 | break; | |
883 | } | |
884 | return bit_rate; | |
885 | } | |
886 | ||
7e566bbe SS |
887 | size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag) |
888 | { | |
889 | int i, len, ret = 0; | |
890 | ||
891 | for (i = 0; i < 4; i++) { | |
892 | len = snprintf(buf, buf_size, | |
893 | isprint(codec_tag&0xFF) ? "%c" : "[%d]", codec_tag&0xFF); | |
894 | buf += len; | |
895 | buf_size = buf_size > len ? buf_size - len : 0; | |
896 | ret += len; | |
897 | codec_tag>>=8; | |
898 | } | |
899 | return ret; | |
900 | } | |
901 | ||
de6d9b64 FB |
902 | void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) |
903 | { | |
904 | const char *codec_name; | |
2a81f4bd | 905 | const char *profile = NULL; |
de6d9b64 FB |
906 | AVCodec *p; |
907 | char buf1[32]; | |
a96b68b7 | 908 | int bitrate; |
59771f71 | 909 | AVRational display_aspect_ratio; |
de6d9b64 FB |
910 | |
911 | if (encode) | |
912 | p = avcodec_find_encoder(enc->codec_id); | |
913 | else | |
914 | p = avcodec_find_decoder(enc->codec_id); | |
915 | ||
916 | if (p) { | |
917 | codec_name = p->name; | |
2a81f4bd | 918 | profile = av_get_profile_name(p, enc->profile); |
985180a1 FB |
919 | } else if (enc->codec_id == CODEC_ID_MPEG2TS) { |
920 | /* fake mpeg2 transport stream codec (currently not | |
921 | registered) */ | |
922 | codec_name = "mpeg2ts"; | |
de6d9b64 FB |
923 | } else if (enc->codec_name[0] != '\0') { |
924 | codec_name = enc->codec_name; | |
925 | } else { | |
926 | /* output avi tags */ | |
ab0b5378 SS |
927 | char tag_buf[32]; |
928 | av_get_codec_tag_string(tag_buf, sizeof(tag_buf), enc->codec_tag); | |
929 | snprintf(buf1, sizeof(buf1), "%s / 0x%04X", tag_buf, enc->codec_tag); | |
de6d9b64 FB |
930 | codec_name = buf1; |
931 | } | |
932 | ||
933 | switch(enc->codec_type) { | |
72415b2a | 934 | case AVMEDIA_TYPE_VIDEO: |
de6d9b64 FB |
935 | snprintf(buf, buf_size, |
936 | "Video: %s%s", | |
7d1c3fc1 | 937 | codec_name, enc->mb_decision ? " (hq)" : ""); |
2a81f4bd AH |
938 | if (profile) |
939 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
940 | " (%s)", profile); | |
82c0c4ba | 941 | if (enc->pix_fmt != PIX_FMT_NONE) { |
cf087595 FB |
942 | snprintf(buf + strlen(buf), buf_size - strlen(buf), |
943 | ", %s", | |
9bbffbb1 | 944 | avcodec_get_pix_fmt_name(enc->pix_fmt)); |
cf087595 | 945 | } |
de6d9b64 FB |
946 | if (enc->width) { |
947 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
21189011 MN |
948 | ", %dx%d", |
949 | enc->width, enc->height); | |
7ee4dd02 | 950 | if (enc->sample_aspect_ratio.num) { |
cbaf50f8 BC |
951 | av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den, |
952 | enc->width*enc->sample_aspect_ratio.num, | |
953 | enc->height*enc->sample_aspect_ratio.den, | |
954 | 1024*1024); | |
955 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
956 | " [PAR %d:%d DAR %d:%d]", | |
957 | enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den, | |
958 | display_aspect_ratio.num, display_aspect_ratio.den); | |
7ee4dd02 | 959 | } |
a309073b | 960 | if(av_log_get_level() >= AV_LOG_DEBUG){ |
9ce6c138 | 961 | int g= av_gcd(enc->time_base.num, enc->time_base.den); |
21189011 MN |
962 | snprintf(buf + strlen(buf), buf_size - strlen(buf), |
963 | ", %d/%d", | |
964 | enc->time_base.num/g, enc->time_base.den/g); | |
965 | } | |
de6d9b64 | 966 | } |
4bfad535 FB |
967 | if (encode) { |
968 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
969 | ", q=%d-%d", enc->qmin, enc->qmax); | |
970 | } | |
de6d9b64 | 971 | break; |
72415b2a | 972 | case AVMEDIA_TYPE_AUDIO: |
de6d9b64 FB |
973 | snprintf(buf, buf_size, |
974 | "Audio: %s", | |
975 | codec_name); | |
2a81f4bd AH |
976 | if (profile) |
977 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
978 | " (%s)", profile); | |
de6d9b64 FB |
979 | if (enc->sample_rate) { |
980 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
0d72e7d0 | 981 | ", %d Hz", enc->sample_rate); |
de6d9b64 | 982 | } |
0d72e7d0 | 983 | av_strlcat(buf, ", ", buf_size); |
63e8d976 | 984 | av_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout); |
5d6e4c16 | 985 | if (enc->sample_fmt != AV_SAMPLE_FMT_NONE) { |
9e82a113 | 986 | snprintf(buf + strlen(buf), buf_size - strlen(buf), |
ba7d6e79 | 987 | ", %s", av_get_sample_fmt_name(enc->sample_fmt)); |
9e82a113 | 988 | } |
de6d9b64 | 989 | break; |
72415b2a | 990 | case AVMEDIA_TYPE_DATA: |
985180a1 | 991 | snprintf(buf, buf_size, "Data: %s", codec_name); |
240c1657 | 992 | break; |
72415b2a | 993 | case AVMEDIA_TYPE_SUBTITLE: |
240c1657 | 994 | snprintf(buf, buf_size, "Subtitle: %s", codec_name); |
985180a1 | 995 | break; |
72415b2a | 996 | case AVMEDIA_TYPE_ATTACHMENT: |
f8d7c9d3 | 997 | snprintf(buf, buf_size, "Attachment: %s", codec_name); |
f8d7c9d3 | 998 | break; |
de6d9b64 | 999 | default: |
9fe5a7b8 MN |
1000 | snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type); |
1001 | return; | |
de6d9b64 | 1002 | } |
4bfad535 FB |
1003 | if (encode) { |
1004 | if (enc->flags & CODEC_FLAG_PASS1) | |
1005 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
1006 | ", pass 1"); | |
1007 | if (enc->flags & CODEC_FLAG_PASS2) | |
1008 | snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
1009 | ", pass 2"); | |
1010 | } | |
406aa93f | 1011 | bitrate = get_bit_rate(enc); |
a96b68b7 | 1012 | if (bitrate != 0) { |
115329f1 | 1013 | snprintf(buf + strlen(buf), buf_size - strlen(buf), |
a96b68b7 | 1014 | ", %d kb/s", bitrate / 1000); |
de6d9b64 FB |
1015 | } |
1016 | } | |
1017 | ||
060ec0a8 AH |
1018 | const char *av_get_profile_name(const AVCodec *codec, int profile) |
1019 | { | |
1020 | const AVProfile *p; | |
1021 | if (profile == FF_PROFILE_UNKNOWN || !codec->profiles) | |
1022 | return NULL; | |
1023 | ||
1024 | for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++) | |
1025 | if (p->profile == profile) | |
1026 | return p->name; | |
1027 | ||
1028 | return NULL; | |
1029 | } | |
1030 | ||
156e5023 NK |
1031 | unsigned avcodec_version( void ) |
1032 | { | |
1033 | return LIBAVCODEC_VERSION_INT; | |
1034 | } | |
cf087595 | 1035 | |
41600690 | 1036 | const char *avcodec_configuration(void) |
c1736936 | 1037 | { |
29ba0911 | 1038 | return LIBAV_CONFIGURATION; |
c1736936 DB |
1039 | } |
1040 | ||
41600690 | 1041 | const char *avcodec_license(void) |
c1736936 DB |
1042 | { |
1043 | #define LICENSE_PREFIX "libavcodec license: " | |
1044 | return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; | |
1045 | } | |
1046 | ||
de6d9b64 FB |
1047 | void avcodec_init(void) |
1048 | { | |
5e534865 | 1049 | static int initialized = 0; |
0344cd0a | 1050 | |
5e534865 | 1051 | if (initialized != 0) |
bb270c08 | 1052 | return; |
5e534865 | 1053 | initialized = 1; |
0344cd0a | 1054 | |
486497e0 | 1055 | dsputil_static_init(); |
de6d9b64 FB |
1056 | } |
1057 | ||
1c2a8c7f MN |
1058 | void avcodec_flush_buffers(AVCodecContext *avctx) |
1059 | { | |
37b00b47 AS |
1060 | if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME) |
1061 | ff_thread_flush(avctx); | |
7a06ff14 MN |
1062 | if(avctx->codec->flush) |
1063 | avctx->codec->flush(avctx); | |
1c2a8c7f MN |
1064 | } |
1065 | ||
b100eab8 | 1066 | void avcodec_default_free_buffers(AVCodecContext *s){ |
d90cf87b MN |
1067 | int i, j; |
1068 | ||
1069 | if(s->internal_buffer==NULL) return; | |
115329f1 | 1070 | |
ea09f691 RD |
1071 | if (s->internal_buffer_count) |
1072 | av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count); | |
d90cf87b MN |
1073 | for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ |
1074 | InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
1075 | for(j=0; j<4; j++){ | |
1076 | av_freep(&buf->base[j]); | |
1077 | buf->data[j]= NULL; | |
1078 | } | |
1079 | } | |
1080 | av_freep(&s->internal_buffer); | |
115329f1 | 1081 | |
d90cf87b MN |
1082 | s->internal_buffer_count=0; |
1083 | } | |
1084 | ||
d8085ea7 MN |
1085 | char av_get_pict_type_char(int pict_type){ |
1086 | switch(pict_type){ | |
fbd4293d AJ |
1087 | case FF_I_TYPE: return 'I'; |
1088 | case FF_P_TYPE: return 'P'; | |
1089 | case FF_B_TYPE: return 'B'; | |
1090 | case FF_S_TYPE: return 'S'; | |
1091 | case FF_SI_TYPE:return 'i'; | |
1092 | case FF_SP_TYPE:return 'p'; | |
48d533e6 | 1093 | case FF_BI_TYPE:return 'b'; |
c06ccb13 | 1094 | default: return '?'; |
d8085ea7 MN |
1095 | } |
1096 | } | |
1097 | ||
ac3e1834 BC |
1098 | int av_get_bits_per_sample(enum CodecID codec_id){ |
1099 | switch(codec_id){ | |
5da71469 | 1100 | case CODEC_ID_ADPCM_SBPRO_2: |
f1b163e0 | 1101 | return 2; |
5da71469 | 1102 | case CODEC_ID_ADPCM_SBPRO_3: |
f1b163e0 | 1103 | return 3; |
5da71469 | 1104 | case CODEC_ID_ADPCM_SBPRO_4: |
f1b163e0 | 1105 | case CODEC_ID_ADPCM_CT: |
07f2a575 | 1106 | case CODEC_ID_ADPCM_IMA_WAV: |
9df9b810 DV |
1107 | case CODEC_ID_ADPCM_MS: |
1108 | case CODEC_ID_ADPCM_YAMAHA: | |
f1b163e0 | 1109 | return 4; |
ac3e1834 BC |
1110 | case CODEC_ID_PCM_ALAW: |
1111 | case CODEC_ID_PCM_MULAW: | |
1112 | case CODEC_ID_PCM_S8: | |
1113 | case CODEC_ID_PCM_U8: | |
9d49b8ff | 1114 | case CODEC_ID_PCM_ZORK: |
ac3e1834 BC |
1115 | return 8; |
1116 | case CODEC_ID_PCM_S16BE: | |
1117 | case CODEC_ID_PCM_S16LE: | |
725d86bf | 1118 | case CODEC_ID_PCM_S16LE_PLANAR: |
ac3e1834 BC |
1119 | case CODEC_ID_PCM_U16BE: |
1120 | case CODEC_ID_PCM_U16LE: | |
1121 | return 16; | |
1122 | case CODEC_ID_PCM_S24DAUD: | |
1123 | case CODEC_ID_PCM_S24BE: | |
1124 | case CODEC_ID_PCM_S24LE: | |
1125 | case CODEC_ID_PCM_U24BE: | |
1126 | case CODEC_ID_PCM_U24LE: | |
1127 | return 24; | |
1128 | case CODEC_ID_PCM_S32BE: | |
1129 | case CODEC_ID_PCM_S32LE: | |
1130 | case CODEC_ID_PCM_U32BE: | |
1131 | case CODEC_ID_PCM_U32LE: | |
aa29709e | 1132 | case CODEC_ID_PCM_F32BE: |
143a5d6f | 1133 | case CODEC_ID_PCM_F32LE: |
ac3e1834 | 1134 | return 32; |
143a5d6f PR |
1135 | case CODEC_ID_PCM_F64BE: |
1136 | case CODEC_ID_PCM_F64LE: | |
1137 | return 64; | |
ac3e1834 BC |
1138 | default: |
1139 | return 0; | |
1140 | } | |
1141 | } | |
1142 | ||
6f84cd12 | 1143 | #if FF_API_OLD_SAMPLE_FMT |
5d6e4c16 | 1144 | int av_get_bits_per_sample_format(enum AVSampleFormat sample_fmt) { |
6f84cd12 | 1145 | return av_get_bits_per_sample_fmt(sample_fmt); |
42c71907 | 1146 | } |
6f84cd12 | 1147 | #endif |
42c71907 | 1148 | |
b250f9c6 | 1149 | #if !HAVE_THREADS |
c0b102ca | 1150 | int ff_thread_init(AVCodecContext *s, int thread_count){ |
2e418f5e | 1151 | s->thread_count = thread_count; |
ca8ad847 MN |
1152 | return -1; |
1153 | } | |
1154 | #endif | |
ad2b531d MR |
1155 | |
1156 | unsigned int av_xiphlacing(unsigned char *s, unsigned int v) | |
1157 | { | |
1158 | unsigned int n = 0; | |
1159 | ||
1160 | while(v >= 0xff) { | |
1161 | *s++ = 0xff; | |
1162 | v -= 0xff; | |
1163 | n++; | |
1164 | } | |
1165 | *s = v; | |
1166 | n++; | |
1167 | return n; | |
1168 | } | |
1005f542 | 1169 | |
126b638e | 1170 | #if LIBAVCODEC_VERSION_MAJOR < 53 |
737eb597 | 1171 | #include "libavutil/parseutils.h" |
26ef3220 SS |
1172 | |
1173 | int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str) | |
1174 | { | |
126b638e | 1175 | return av_parse_video_size(width_ptr, height_ptr, str); |
26ef3220 SS |
1176 | } |
1177 | ||
1178 | int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg) | |
1179 | { | |
126b638e | 1180 | return av_parse_video_rate(frame_rate, arg); |
26ef3220 | 1181 | } |
126b638e | 1182 | #endif |
ea779d91 | 1183 | |
c46eeae2 MN |
1184 | int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){ |
1185 | int i; | |
1186 | for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++); | |
1187 | return i; | |
1188 | } | |
1189 | ||
ce863d7f | 1190 | void av_log_missing_feature(void *avc, const char *feature, int want_sample) |
ea779d91 JR |
1191 | { |
1192 | av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg " | |
db323491 | 1193 | "version to the newest one from Git. If the problem still " |
ea779d91 JR |
1194 | "occurs, it means that your file has a feature which has not " |
1195 | "been implemented.", feature); | |
1196 | if(want_sample) | |
ce863d7f | 1197 | av_log_ask_for_sample(avc, NULL); |
0ba39dd1 KG |
1198 | else |
1199 | av_log(avc, AV_LOG_WARNING, "\n"); | |
1200 | } | |
1201 | ||
ce863d7f | 1202 | void av_log_ask_for_sample(void *avc, const char *msg) |
0ba39dd1 KG |
1203 | { |
1204 | if (msg) | |
1205 | av_log(avc, AV_LOG_WARNING, "%s ", msg); | |
1206 | av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample " | |
21de9204 JA |
1207 | "of this file to ftp://upload.libav.org/MPlayer/incoming/ " |
1208 | "and contact the libav-devel mailing list.\n"); | |
ea779d91 | 1209 | } |
c895618b MN |
1210 | |
1211 | static AVHWAccel *first_hwaccel = NULL; | |
1212 | ||
1213 | void av_register_hwaccel(AVHWAccel *hwaccel) | |
1214 | { | |
1215 | AVHWAccel **p = &first_hwaccel; | |
1216 | while (*p) | |
1217 | p = &(*p)->next; | |
1218 | *p = hwaccel; | |
1219 | hwaccel->next = NULL; | |
1220 | } | |
414d9d7f MN |
1221 | |
1222 | AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel) | |
1223 | { | |
1224 | return hwaccel ? hwaccel->next : first_hwaccel; | |
1225 | } | |
6059f13c MN |
1226 | |
1227 | AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt) | |
1228 | { | |
1229 | AVHWAccel *hwaccel=NULL; | |
1230 | ||
1231 | while((hwaccel= av_hwaccel_next(hwaccel))){ | |
1232 | if ( hwaccel->id == codec_id | |
1233 | && hwaccel->pix_fmt == pix_fmt) | |
1234 | return hwaccel; | |
1235 | } | |
1236 | return NULL; | |
1237 | } | |
f988ce6c AÖ |
1238 | |
1239 | int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op)) | |
1240 | { | |
1241 | if (ff_lockmgr_cb) { | |
1242 | if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY)) | |
1243 | return -1; | |
1244 | } | |
1245 | ||
1246 | ff_lockmgr_cb = cb; | |
1247 | ||
1248 | if (ff_lockmgr_cb) { | |
1249 | if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE)) | |
1250 | return -1; | |
1251 | } | |
1252 | return 0; | |
1253 | } | |
603a5f04 FL |
1254 | |
1255 | unsigned int ff_toupper4(unsigned int x) | |
1256 | { | |
1257 | return toupper( x &0xFF) | |
1258 | + (toupper((x>>8 )&0xFF)<<8 ) | |
1259 | + (toupper((x>>16)&0xFF)<<16) | |
1260 | + (toupper((x>>24)&0xFF)<<24); | |
1261 | } | |
37b00b47 AS |
1262 | |
1263 | #if !HAVE_PTHREADS | |
1264 | ||
1265 | int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f) | |
1266 | { | |
1267 | f->owner = avctx; | |
1268 | return avctx->get_buffer(avctx, f); | |
1269 | } | |
1270 | ||
1271 | void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f) | |
1272 | { | |
1273 | f->owner->release_buffer(f->owner, f); | |
1274 | } | |
1275 | ||
1276 | void ff_thread_finish_setup(AVCodecContext *avctx) | |
1277 | { | |
1278 | } | |
1279 | ||
1280 | void ff_thread_report_progress(AVFrame *f, int progress, int field) | |
1281 | { | |
1282 | } | |
1283 | ||
1284 | void ff_thread_await_progress(AVFrame *f, int progress, int field) | |
1285 | { | |
1286 | } | |
1287 | ||
1288 | #endif | |
c0b102ca AS |
1289 | |
1290 | #if LIBAVCODEC_VERSION_MAJOR < 53 | |
1291 | ||
1292 | int avcodec_thread_init(AVCodecContext *s, int thread_count) | |
1293 | { | |
1294 | return ff_thread_init(s, thread_count); | |
1295 | } | |
1296 | ||
1297 | void avcodec_thread_free(AVCodecContext *s) | |
1298 | { | |
9a77a92c | 1299 | #if HAVE_THREADS |
b4668274 | 1300 | ff_thread_free(s); |
9a77a92c | 1301 | #endif |
c0b102ca AS |
1302 | } |
1303 | ||
1304 | #endif |