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