Mercurial > libavcodec.hg
annotate utils.c @ 1217:eb2affe57a2a libavcodec
10l
author | michaelni |
---|---|
date | Fri, 25 Apr 2003 20:03:17 +0000 |
parents | 327c5a36dfe7 |
children | 7ac0a77e5973 |
rev | line source |
---|---|
0 | 1 /* |
2 * utils for libavcodec | |
429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
0 | 4 * |
429 | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
0 | 9 * |
429 | 10 * This library is distributed in the hope that it will be useful, |
0 | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Lesser General Public License for more details. | |
0 | 14 * |
429 | 15 * You should have received a copy of the GNU Lesser General Public |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
0 | 18 */ |
1106 | 19 |
20 /** | |
21 * @file utils.c | |
22 * utils. | |
23 */ | |
24 | |
394 | 25 #include "avcodec.h" |
0 | 26 #include "dsputil.h" |
341 | 27 #include "mpegvideo.h" |
0 | 28 |
862 | 29 void *av_mallocz(unsigned int size) |
394 | 30 { |
31 void *ptr; | |
908 | 32 |
394 | 33 ptr = av_malloc(size); |
34 if (!ptr) | |
35 return NULL; | |
36 memset(ptr, 0, size); | |
37 return ptr; | |
38 } | |
39 | |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
40 char *av_strdup(const char *s) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
41 { |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
42 char *ptr; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
43 int len; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
44 len = strlen(s) + 1; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
45 ptr = av_malloc(len); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
46 if (!ptr) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
47 return NULL; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
48 memcpy(ptr, s, len); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
49 return ptr; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
50 } |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
51 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
52 /** |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
53 * realloc which does nothing if the block is large enough |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
54 */ |
1057 | 55 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size) |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
56 { |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
57 if(min_size < *size) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
58 return ptr; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
59 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
60 *size= min_size + 10*1024; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
61 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
62 return av_realloc(ptr, *size); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
63 } |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
64 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
65 |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
66 /* allocation of static arrays - do not use for normal allocation */ |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
67 static unsigned int last_static = 0; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
68 static char*** array_static = NULL; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
69 static const unsigned int grow_static = 64; // ^2 |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
70 void *__av_mallocz_static(void** location, unsigned int size) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
71 { |
1057 | 72 unsigned int l = (last_static + grow_static) & ~(grow_static - 1); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
73 void *ptr = av_mallocz(size); |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
74 if (!ptr) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
75 return NULL; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
76 |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
77 if (location) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
78 { |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
79 if (l > last_static) |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
80 array_static = av_realloc(array_static, l); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
81 array_static[last_static++] = (char**) location; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
82 *location = ptr; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
83 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
84 return ptr; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
85 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
86 /* free all static arrays and reset pointers to 0 */ |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
87 void av_free_static() |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
88 { |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
89 if (array_static) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
90 { |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
91 unsigned i; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
92 for (i = 0; i < last_static; i++) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
93 { |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
94 av_free(*array_static[i]); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
95 *array_static[i] = NULL; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
96 } |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
97 av_free(array_static); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
98 array_static = 0; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
99 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
100 last_static = 0; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
101 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
102 |
400 | 103 /* cannot call it directly because of 'void **' casting is not automatic */ |
104 void __av_freep(void **ptr) | |
105 { | |
106 av_free(*ptr); | |
107 *ptr = NULL; | |
108 } | |
109 | |
0 | 110 /* encoder management */ |
111 AVCodec *first_avcodec; | |
112 | |
113 void register_avcodec(AVCodec *format) | |
114 { | |
115 AVCodec **p; | |
116 p = &first_avcodec; | |
117 while (*p != NULL) p = &(*p)->next; | |
118 *p = format; | |
119 format->next = NULL; | |
120 } | |
121 | |
1214 | 122 typedef struct InternalBuffer{ |
903 | 123 int last_pic_num; |
1214 | 124 uint8_t *base[4]; |
903 | 125 uint8_t *data[4]; |
1214 | 126 }InternalBuffer; |
127 | |
128 #define INTERNAL_BUFFER_SIZE 32 | |
903 | 129 |
925 | 130 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 131 int i; |
132 const int width = s->width; | |
133 const int height= s->height; | |
1214 | 134 InternalBuffer *buf; |
924 | 135 |
136 assert(pic->data[0]==NULL); | |
1214 | 137 assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count); |
903 | 138 |
1214 | 139 if(s->internal_buffer==NULL){ |
140 s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer)); | |
141 } | |
142 #if 0 | |
143 s->internal_buffer= av_fast_realloc( | |
144 s->internal_buffer, | |
145 &s->internal_buffer_size, | |
146 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ | |
147 ); | |
148 #endif | |
149 | |
150 buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
903 | 151 |
1214 | 152 if(buf->base[0]){ |
153 pic->age= pic->coded_picture_number - buf->last_pic_num; | |
154 buf->last_pic_num= pic->coded_picture_number; | |
903 | 155 }else{ |
156 int align, h_chroma_shift, v_chroma_shift; | |
157 int w, h, pixel_size; | |
158 | |
159 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
160 | |
161 switch(s->pix_fmt){ | |
162 case PIX_FMT_YUV422: | |
163 pixel_size=2; | |
164 break; | |
165 case PIX_FMT_RGB24: | |
166 case PIX_FMT_BGR24: | |
167 pixel_size=3; | |
168 break; | |
169 case PIX_FMT_RGBA32: | |
170 pixel_size=4; | |
171 break; | |
172 default: | |
173 pixel_size=1; | |
174 } | |
175 | |
176 if(s->codec_id==CODEC_ID_SVQ1) align=63; | |
177 else align=15; | |
178 | |
179 w= (width +align)&~align; | |
180 h= (height+align)&~align; | |
181 | |
182 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ | |
183 w+= EDGE_WIDTH*2; | |
184 h+= EDGE_WIDTH*2; | |
185 } | |
186 | |
1214 | 187 buf->last_pic_num= -256*256*256*64; |
903 | 188 |
189 for(i=0; i<3; i++){ | |
1165 | 190 const int h_shift= i==0 ? 0 : h_chroma_shift; |
191 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
903 | 192 |
193 pic->linesize[i]= pixel_size*w>>h_shift; | |
194 | |
1214 | 195 buf->base[i]= av_mallocz((pic->linesize[i]*h>>v_shift)+16); //FIXME 16 |
196 if(buf->base[i]==NULL) return -1; | |
197 memset(buf->base[i], 128, pic->linesize[i]*h>>v_shift); | |
903 | 198 |
199 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
1214 | 200 buf->data[i] = buf->base[i]; |
903 | 201 else |
1214 | 202 buf->data[i] = buf->base[i] + (pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift); |
903 | 203 } |
204 pic->age= 256*256*256*64; | |
924 | 205 pic->type= FF_BUFFER_TYPE_INTERNAL; |
903 | 206 } |
207 | |
1214 | 208 for(i=0; i<4; i++){ |
209 pic->base[i]= buf->base[i]; | |
210 pic->data[i]= buf->data[i]; | |
211 } | |
212 s->internal_buffer_count++; | |
213 | |
903 | 214 return 0; |
215 } | |
216 | |
925 | 217 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 218 int i; |
1214 | 219 InternalBuffer *buf, *last, temp; |
220 | |
924 | 221 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
1214 | 222 |
223 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize | |
224 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
225 if(buf->data[0] == pic->data[0]) | |
226 break; | |
227 } | |
228 assert(i < s->internal_buffer_count); | |
229 s->internal_buffer_count--; | |
230 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
231 | |
232 temp= *buf; | |
233 *buf= *last; | |
234 *last= temp; | |
235 | |
236 for(i=0; i<3; i++){ | |
903 | 237 pic->data[i]=NULL; |
1214 | 238 // pic->base[i]=NULL; |
239 } | |
903 | 240 //printf("R%X\n", pic->opaque); |
241 } | |
242 | |
998 | 243 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, enum PixelFormat * fmt){ |
244 return fmt[0]; | |
245 } | |
246 | |
681 | 247 void avcodec_get_context_defaults(AVCodecContext *s){ |
685 | 248 s->bit_rate= 800*1000; |
249 s->bit_rate_tolerance= s->bit_rate*10; | |
681 | 250 s->qmin= 2; |
251 s->qmax= 31; | |
932 | 252 s->mb_qmin= 2; |
253 s->mb_qmax= 31; | |
681 | 254 s->rc_eq= "tex^qComp"; |
255 s->qcompress= 0.5; | |
685 | 256 s->max_qdiff= 3; |
257 s->b_quant_factor=1.25; | |
258 s->b_quant_offset=1.25; | |
686
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
685
diff
changeset
|
259 s->i_quant_factor=-0.8; |
685 | 260 s->i_quant_offset=0.0; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
261 s->error_concealment= 3; |
762 | 262 s->error_resilience= 1; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
263 s->workaround_bugs= FF_BUG_AUTODETECT; |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
264 s->frame_rate_base= 1; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
265 s->frame_rate = 25; |
762 | 266 s->gop_size= 50; |
267 s->me_method= ME_EPZS; | |
903 | 268 s->get_buffer= avcodec_default_get_buffer; |
269 s->release_buffer= avcodec_default_release_buffer; | |
998 | 270 s->get_format= avcodec_default_get_format; |
954 | 271 s->me_subpel_quality=8; |
1150 | 272 |
273 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
274 s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
681 | 275 } |
276 | |
277 /** | |
278 * allocates a AVCodecContext and set it to defaults. | |
279 * this can be deallocated by simply calling free() | |
280 */ | |
703 | 281 AVCodecContext *avcodec_alloc_context(void){ |
681 | 282 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
283 | |
284 if(avctx==NULL) return NULL; | |
285 | |
286 avcodec_get_context_defaults(avctx); | |
287 | |
288 return avctx; | |
289 } | |
290 | |
903 | 291 /** |
925 | 292 * allocates a AVPFrame and set it to defaults. |
903 | 293 * this can be deallocated by simply calling free() |
294 */ | |
925 | 295 AVFrame *avcodec_alloc_frame(void){ |
296 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
903 | 297 |
298 return pic; | |
299 } | |
300 | |
0 | 301 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
302 { | |
303 int ret; | |
304 | |
305 avctx->codec = codec; | |
927 | 306 avctx->codec_id = codec->id; |
0 | 307 avctx->frame_number = 0; |
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
308 if (codec->priv_data_size > 0) { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
309 avctx->priv_data = av_mallocz(codec->priv_data_size); |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
310 if (!avctx->priv_data) |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
311 return -ENOMEM; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
312 } else { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
313 avctx->priv_data = NULL; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
314 } |
0 | 315 ret = avctx->codec->init(avctx); |
316 if (ret < 0) { | |
394 | 317 av_freep(&avctx->priv_data); |
0 | 318 return ret; |
319 } | |
320 return 0; | |
321 } | |
322 | |
1064 | 323 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
0 | 324 const short *samples) |
325 { | |
326 int ret; | |
327 | |
328 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
329 avctx->frame_number++; | |
330 return ret; | |
331 } | |
332 | |
1064 | 333 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
925 | 334 const AVFrame *pict) |
0 | 335 { |
336 int ret; | |
337 | |
338 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
814 | 339 |
340 emms_c(); //needed to avoid a emms_c() call before every return; | |
341 | |
0 | 342 avctx->frame_number++; |
343 return ret; | |
344 } | |
345 | |
346 /* decode a frame. return -1 if error, otherwise return the number of | |
347 bytes used. If no frame could be decompressed, *got_picture_ptr is | |
348 zero. Otherwise, it is non zero */ | |
925 | 349 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
0 | 350 int *got_picture_ptr, |
1064 | 351 uint8_t *buf, int buf_size) |
0 | 352 { |
353 int ret; | |
903 | 354 |
0 | 355 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
356 buf, buf_size); | |
814 | 357 |
358 emms_c(); //needed to avoid a emms_c() call before every return; | |
903 | 359 |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
360 if (*got_picture_ptr) |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
361 avctx->frame_number++; |
0 | 362 return ret; |
363 } | |
364 | |
365 /* decode an audio frame. return -1 if error, otherwise return the | |
366 *number of bytes used. If no frame could be decompressed, | |
367 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
368 *size in BYTES. */ | |
1064 | 369 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
0 | 370 int *frame_size_ptr, |
1064 | 371 uint8_t *buf, int buf_size) |
0 | 372 { |
373 int ret; | |
374 | |
375 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
376 buf, buf_size); | |
377 avctx->frame_number++; | |
378 return ret; | |
379 } | |
380 | |
381 int avcodec_close(AVCodecContext *avctx) | |
382 { | |
383 if (avctx->codec->close) | |
384 avctx->codec->close(avctx); | |
394 | 385 av_freep(&avctx->priv_data); |
0 | 386 avctx->codec = NULL; |
387 return 0; | |
388 } | |
389 | |
390 AVCodec *avcodec_find_encoder(enum CodecID id) | |
391 { | |
392 AVCodec *p; | |
393 p = first_avcodec; | |
394 while (p) { | |
395 if (p->encode != NULL && p->id == id) | |
396 return p; | |
397 p = p->next; | |
398 } | |
399 return NULL; | |
400 } | |
401 | |
177 | 402 AVCodec *avcodec_find_encoder_by_name(const char *name) |
403 { | |
404 AVCodec *p; | |
405 p = first_avcodec; | |
406 while (p) { | |
407 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
408 return p; | |
409 p = p->next; | |
410 } | |
411 return NULL; | |
412 } | |
413 | |
0 | 414 AVCodec *avcodec_find_decoder(enum CodecID id) |
415 { | |
416 AVCodec *p; | |
417 p = first_avcodec; | |
418 while (p) { | |
419 if (p->decode != NULL && p->id == id) | |
420 return p; | |
421 p = p->next; | |
422 } | |
423 return NULL; | |
424 } | |
425 | |
426 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
427 { | |
428 AVCodec *p; | |
429 p = first_avcodec; | |
430 while (p) { | |
431 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
432 return p; | |
433 p = p->next; | |
434 } | |
435 return NULL; | |
436 } | |
437 | |
438 AVCodec *avcodec_find(enum CodecID id) | |
439 { | |
440 AVCodec *p; | |
441 p = first_avcodec; | |
442 while (p) { | |
443 if (p->id == id) | |
444 return p; | |
445 p = p->next; | |
446 } | |
447 return NULL; | |
448 } | |
449 | |
450 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
451 { | |
452 const char *codec_name; | |
453 AVCodec *p; | |
454 char buf1[32]; | |
337 | 455 char channels_str[100]; |
92 | 456 int bitrate; |
0 | 457 |
458 if (encode) | |
459 p = avcodec_find_encoder(enc->codec_id); | |
460 else | |
461 p = avcodec_find_decoder(enc->codec_id); | |
462 | |
463 if (p) { | |
464 codec_name = p->name; | |
465 } else if (enc->codec_name[0] != '\0') { | |
466 codec_name = enc->codec_name; | |
467 } else { | |
468 /* output avi tags */ | |
469 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
470 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
471 enc->codec_tag & 0xff, | |
472 (enc->codec_tag >> 8) & 0xff, | |
473 (enc->codec_tag >> 16) & 0xff, | |
474 (enc->codec_tag >> 24) & 0xff); | |
475 } else { | |
476 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
477 } | |
478 codec_name = buf1; | |
479 } | |
480 | |
481 switch(enc->codec_type) { | |
482 case CODEC_TYPE_VIDEO: | |
483 snprintf(buf, buf_size, | |
484 "Video: %s%s", | |
485 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : ""); | |
55 | 486 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
487 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
488 ", %s", | |
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
489 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
55 | 490 } |
0 | 491 if (enc->width) { |
492 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
493 ", %dx%d, %0.2f fps", | |
494 enc->width, enc->height, | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
495 (float)enc->frame_rate / enc->frame_rate_base); |
0 | 496 } |
741 | 497 if (encode) { |
498 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
499 ", q=%d-%d", enc->qmin, enc->qmax); | |
500 } | |
92 | 501 bitrate = enc->bit_rate; |
0 | 502 break; |
503 case CODEC_TYPE_AUDIO: | |
504 snprintf(buf, buf_size, | |
505 "Audio: %s", | |
506 codec_name); | |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
507 switch (enc->channels) { |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
508 case 1: |
337 | 509 strcpy(channels_str, "mono"); |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
510 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
511 case 2: |
337 | 512 strcpy(channels_str, "stereo"); |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
513 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
514 case 6: |
337 | 515 strcpy(channels_str, "5:1"); |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
516 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
517 default: |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
518 sprintf(channels_str, "%d channels", enc->channels); |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
519 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
520 } |
0 | 521 if (enc->sample_rate) { |
522 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
523 ", %d Hz, %s", | |
524 enc->sample_rate, | |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
525 channels_str); |
0 | 526 } |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
527 |
92 | 528 /* for PCM codecs, compute bitrate directly */ |
529 switch(enc->codec_id) { | |
530 case CODEC_ID_PCM_S16LE: | |
531 case CODEC_ID_PCM_S16BE: | |
532 case CODEC_ID_PCM_U16LE: | |
533 case CODEC_ID_PCM_U16BE: | |
94 | 534 bitrate = enc->sample_rate * enc->channels * 16; |
92 | 535 break; |
536 case CODEC_ID_PCM_S8: | |
537 case CODEC_ID_PCM_U8: | |
538 case CODEC_ID_PCM_ALAW: | |
539 case CODEC_ID_PCM_MULAW: | |
94 | 540 bitrate = enc->sample_rate * enc->channels * 8; |
92 | 541 break; |
542 default: | |
543 bitrate = enc->bit_rate; | |
544 break; | |
545 } | |
0 | 546 break; |
547 default: | |
583 | 548 av_abort(); |
0 | 549 } |
741 | 550 if (encode) { |
551 if (enc->flags & CODEC_FLAG_PASS1) | |
552 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
553 ", pass 1"); | |
554 if (enc->flags & CODEC_FLAG_PASS2) | |
555 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
556 ", pass 2"); | |
557 } | |
92 | 558 if (bitrate != 0) { |
0 | 559 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
92 | 560 ", %d kb/s", bitrate / 1000); |
0 | 561 } |
562 } | |
563 | |
362 | 564 unsigned avcodec_version( void ) |
565 { | |
566 return LIBAVCODEC_VERSION_INT; | |
567 } | |
55 | 568 |
379 | 569 unsigned avcodec_build( void ) |
570 { | |
571 return LIBAVCODEC_BUILD; | |
572 } | |
573 | |
0 | 574 /* must be called before any other functions */ |
575 void avcodec_init(void) | |
576 { | |
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
577 static int inited = 0; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
578 |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
579 if (inited != 0) |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
580 return; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
581 inited = 1; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
582 |
1201 | 583 dsputil_static_init(); |
0 | 584 } |
585 | |
924 | 586 /* this can be called after seeking and before trying to decode the next keyframe */ |
341 | 587 void avcodec_flush_buffers(AVCodecContext *avctx) |
588 { | |
924 | 589 int i; |
341 | 590 MpegEncContext *s = avctx->priv_data; |
924 | 591 |
592 switch(avctx->codec_id){ | |
593 case CODEC_ID_MPEG1VIDEO: | |
594 case CODEC_ID_H263: | |
595 case CODEC_ID_RV10: | |
1217 | 596 // case CODEC_ID_MJPEG: |
597 // case CODEC_ID_MJPEGB: | |
924 | 598 case CODEC_ID_MPEG4: |
599 case CODEC_ID_MSMPEG4V1: | |
600 case CODEC_ID_MSMPEG4V2: | |
601 case CODEC_ID_MSMPEG4V3: | |
602 case CODEC_ID_WMV1: | |
603 case CODEC_ID_WMV2: | |
604 case CODEC_ID_H263P: | |
605 case CODEC_ID_H263I: | |
606 case CODEC_ID_SVQ1: | |
607 for(i=0; i<MAX_PICTURE_COUNT; i++){ | |
608 if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL | |
609 || s->picture[i].type == FF_BUFFER_TYPE_USER)) | |
925 | 610 avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]); |
963 | 611 } |
1138 | 612 s->last_picture_ptr = s->next_picture_ptr = NULL; |
924 | 613 break; |
614 default: | |
615 //FIXME | |
616 break; | |
617 } | |
341 | 618 } |
619 | |
1214 | 620 void avcodec_default_free_buffers(AVCodecContext *s){ |
621 int i, j; | |
622 | |
623 if(s->internal_buffer==NULL) return; | |
624 | |
625 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ | |
626 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
627 for(j=0; j<4; j++){ | |
628 av_freep(&buf->base[j]); | |
629 buf->data[j]= NULL; | |
630 } | |
631 } | |
632 av_freep(&s->internal_buffer); | |
633 | |
634 s->internal_buffer_count=0; | |
635 } | |
636 | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
637 int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
638 int exact=1, sign=0; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
639 int64_t gcd, larger; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
640 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
641 assert(den != 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
642 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
643 if(den < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
644 den= -den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
645 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
646 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
647 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
648 if(nom < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
649 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
650 sign= 1; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
651 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
652 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
653 for(;;){ //note is executed 1 or 2 times |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
654 gcd = ff_gcd(nom, den); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
655 nom /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
656 den /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
657 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
658 larger= FFMAX(nom, den); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
659 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
660 if(larger > max){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
661 int64_t div= (larger + max - 1) / max; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
662 nom = (nom + div/2)/div; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
663 den = (den + div/2)/div; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
664 exact=0; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
665 }else |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
666 break; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
667 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
668 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
669 if(sign) nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
670 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
671 *dst_nom = nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
672 *dst_den = den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
673 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
674 return exact; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
675 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
676 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
677 int64_t av_rescale(int64_t a, int b, int c){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
678 uint64_t h, l; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
679 assert(c > 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
680 assert(b >=0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
681 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
682 if(a<0) return -av_rescale(-a, b, c); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
683 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
684 h= a>>32; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
685 if(h==0) return a*b/c; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
686 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
687 l= a&0xFFFFFFFF; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
688 l *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
689 h *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
690 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
691 l += (h%c)<<32; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
692 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
693 return ((h/c)<<32) + l/c; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
694 } |