Mercurial > libavcodec.hg
annotate utils.c @ 1150:dde68a430ba9 libavcodec
user setable quantizer bias
author | michaelni |
---|---|
date | Sat, 22 Mar 2003 12:09:02 +0000 |
parents | 6842feb093c1 |
children | f0c39139426d |
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 | |
903 | 122 typedef struct DefaultPicOpaque{ |
123 int last_pic_num; | |
124 uint8_t *data[4]; | |
125 }DefaultPicOpaque; | |
126 | |
925 | 127 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 128 int i; |
129 const int width = s->width; | |
130 const int height= s->height; | |
131 DefaultPicOpaque *opaque; | |
924 | 132 |
133 assert(pic->data[0]==NULL); | |
134 assert(pic->type==0 || pic->type==FF_TYPE_INTERNAL); | |
903 | 135 |
136 if(pic->opaque){ | |
137 opaque= (DefaultPicOpaque *)pic->opaque; | |
138 for(i=0; i<3; i++) | |
139 pic->data[i]= opaque->data[i]; | |
140 | |
141 // printf("get_buffer %X coded_pic_num:%d last:%d\n", pic->opaque, pic->coded_picture_number, opaque->last_pic_num); | |
142 pic->age= pic->coded_picture_number - opaque->last_pic_num; | |
143 opaque->last_pic_num= pic->coded_picture_number; | |
144 //printf("age: %d %d %d\n", pic->age, c->picture_number, pic->coded_picture_number); | |
145 }else{ | |
146 int align, h_chroma_shift, v_chroma_shift; | |
147 int w, h, pixel_size; | |
148 | |
149 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
150 | |
151 switch(s->pix_fmt){ | |
152 case PIX_FMT_YUV422: | |
153 pixel_size=2; | |
154 break; | |
155 case PIX_FMT_RGB24: | |
156 case PIX_FMT_BGR24: | |
157 pixel_size=3; | |
158 break; | |
159 case PIX_FMT_RGBA32: | |
160 pixel_size=4; | |
161 break; | |
162 default: | |
163 pixel_size=1; | |
164 } | |
165 | |
166 if(s->codec_id==CODEC_ID_SVQ1) align=63; | |
167 else align=15; | |
168 | |
169 w= (width +align)&~align; | |
170 h= (height+align)&~align; | |
171 | |
172 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ | |
173 w+= EDGE_WIDTH*2; | |
174 h+= EDGE_WIDTH*2; | |
175 } | |
176 | |
177 opaque= av_mallocz(sizeof(DefaultPicOpaque)); | |
178 if(opaque==NULL) return -1; | |
179 | |
180 pic->opaque= opaque; | |
181 opaque->last_pic_num= -256*256*256*64; | |
182 | |
183 for(i=0; i<3; i++){ | |
184 int h_shift= i==0 ? 0 : h_chroma_shift; | |
185 int v_shift= i==0 ? 0 : v_chroma_shift; | |
186 | |
187 pic->linesize[i]= pixel_size*w>>h_shift; | |
188 | |
189 pic->base[i]= av_mallocz((pic->linesize[i]*h>>v_shift)+16); //FIXME 16 | |
190 if(pic->base[i]==NULL) return -1; | |
191 | |
192 memset(pic->base[i], 128, pic->linesize[i]*h>>v_shift); | |
193 | |
194 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
1138 | 195 pic->data[i] = pic->base[i]; |
903 | 196 else |
1138 | 197 pic->data[i] = pic->base[i] + (pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift); |
903 | 198 |
199 opaque->data[i]= pic->data[i]; | |
200 } | |
201 pic->age= 256*256*256*64; | |
924 | 202 pic->type= FF_BUFFER_TYPE_INTERNAL; |
903 | 203 } |
204 | |
205 return 0; | |
206 } | |
207 | |
925 | 208 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 209 int i; |
210 | |
924 | 211 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
212 | |
903 | 213 for(i=0; i<3; i++) |
214 pic->data[i]=NULL; | |
215 //printf("R%X\n", pic->opaque); | |
216 } | |
217 | |
998 | 218 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, enum PixelFormat * fmt){ |
219 return fmt[0]; | |
220 } | |
221 | |
681 | 222 void avcodec_get_context_defaults(AVCodecContext *s){ |
685 | 223 s->bit_rate= 800*1000; |
224 s->bit_rate_tolerance= s->bit_rate*10; | |
681 | 225 s->qmin= 2; |
226 s->qmax= 31; | |
932 | 227 s->mb_qmin= 2; |
228 s->mb_qmax= 31; | |
681 | 229 s->rc_eq= "tex^qComp"; |
230 s->qcompress= 0.5; | |
685 | 231 s->max_qdiff= 3; |
232 s->b_quant_factor=1.25; | |
233 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
|
234 s->i_quant_factor=-0.8; |
685 | 235 s->i_quant_offset=0.0; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
236 s->error_concealment= 3; |
762 | 237 s->error_resilience= 1; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
238 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
|
239 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
|
240 s->frame_rate = 25; |
762 | 241 s->gop_size= 50; |
242 s->me_method= ME_EPZS; | |
903 | 243 s->get_buffer= avcodec_default_get_buffer; |
244 s->release_buffer= avcodec_default_release_buffer; | |
998 | 245 s->get_format= avcodec_default_get_format; |
954 | 246 s->me_subpel_quality=8; |
1150 | 247 |
248 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
249 s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
681 | 250 } |
251 | |
252 /** | |
253 * allocates a AVCodecContext and set it to defaults. | |
254 * this can be deallocated by simply calling free() | |
255 */ | |
703 | 256 AVCodecContext *avcodec_alloc_context(void){ |
681 | 257 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
258 | |
259 if(avctx==NULL) return NULL; | |
260 | |
261 avcodec_get_context_defaults(avctx); | |
262 | |
263 return avctx; | |
264 } | |
265 | |
903 | 266 /** |
925 | 267 * allocates a AVPFrame and set it to defaults. |
903 | 268 * this can be deallocated by simply calling free() |
269 */ | |
925 | 270 AVFrame *avcodec_alloc_frame(void){ |
271 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
903 | 272 |
273 return pic; | |
274 } | |
275 | |
0 | 276 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
277 { | |
278 int ret; | |
279 | |
280 avctx->codec = codec; | |
927 | 281 avctx->codec_id = codec->id; |
0 | 282 avctx->frame_number = 0; |
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
283 if (codec->priv_data_size > 0) { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
284 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
|
285 if (!avctx->priv_data) |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
286 return -ENOMEM; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
287 } else { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
288 avctx->priv_data = NULL; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
289 } |
0 | 290 ret = avctx->codec->init(avctx); |
291 if (ret < 0) { | |
394 | 292 av_freep(&avctx->priv_data); |
0 | 293 return ret; |
294 } | |
295 return 0; | |
296 } | |
297 | |
1064 | 298 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
0 | 299 const short *samples) |
300 { | |
301 int ret; | |
302 | |
303 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
304 avctx->frame_number++; | |
305 return ret; | |
306 } | |
307 | |
1064 | 308 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
925 | 309 const AVFrame *pict) |
0 | 310 { |
311 int ret; | |
312 | |
313 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
814 | 314 |
315 emms_c(); //needed to avoid a emms_c() call before every return; | |
316 | |
0 | 317 avctx->frame_number++; |
318 return ret; | |
319 } | |
320 | |
321 /* decode a frame. return -1 if error, otherwise return the number of | |
322 bytes used. If no frame could be decompressed, *got_picture_ptr is | |
323 zero. Otherwise, it is non zero */ | |
925 | 324 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
0 | 325 int *got_picture_ptr, |
1064 | 326 uint8_t *buf, int buf_size) |
0 | 327 { |
328 int ret; | |
903 | 329 |
0 | 330 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
331 buf, buf_size); | |
814 | 332 |
333 emms_c(); //needed to avoid a emms_c() call before every return; | |
903 | 334 |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
335 if (*got_picture_ptr) |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
336 avctx->frame_number++; |
0 | 337 return ret; |
338 } | |
339 | |
340 /* decode an audio frame. return -1 if error, otherwise return the | |
341 *number of bytes used. If no frame could be decompressed, | |
342 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
343 *size in BYTES. */ | |
1064 | 344 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
0 | 345 int *frame_size_ptr, |
1064 | 346 uint8_t *buf, int buf_size) |
0 | 347 { |
348 int ret; | |
349 | |
350 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
351 buf, buf_size); | |
352 avctx->frame_number++; | |
353 return ret; | |
354 } | |
355 | |
356 int avcodec_close(AVCodecContext *avctx) | |
357 { | |
358 if (avctx->codec->close) | |
359 avctx->codec->close(avctx); | |
394 | 360 av_freep(&avctx->priv_data); |
0 | 361 avctx->codec = NULL; |
362 return 0; | |
363 } | |
364 | |
365 AVCodec *avcodec_find_encoder(enum CodecID id) | |
366 { | |
367 AVCodec *p; | |
368 p = first_avcodec; | |
369 while (p) { | |
370 if (p->encode != NULL && p->id == id) | |
371 return p; | |
372 p = p->next; | |
373 } | |
374 return NULL; | |
375 } | |
376 | |
177 | 377 AVCodec *avcodec_find_encoder_by_name(const char *name) |
378 { | |
379 AVCodec *p; | |
380 p = first_avcodec; | |
381 while (p) { | |
382 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
383 return p; | |
384 p = p->next; | |
385 } | |
386 return NULL; | |
387 } | |
388 | |
0 | 389 AVCodec *avcodec_find_decoder(enum CodecID id) |
390 { | |
391 AVCodec *p; | |
392 p = first_avcodec; | |
393 while (p) { | |
394 if (p->decode != NULL && p->id == id) | |
395 return p; | |
396 p = p->next; | |
397 } | |
398 return NULL; | |
399 } | |
400 | |
401 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
402 { | |
403 AVCodec *p; | |
404 p = first_avcodec; | |
405 while (p) { | |
406 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
407 return p; | |
408 p = p->next; | |
409 } | |
410 return NULL; | |
411 } | |
412 | |
413 AVCodec *avcodec_find(enum CodecID id) | |
414 { | |
415 AVCodec *p; | |
416 p = first_avcodec; | |
417 while (p) { | |
418 if (p->id == id) | |
419 return p; | |
420 p = p->next; | |
421 } | |
422 return NULL; | |
423 } | |
424 | |
425 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
426 { | |
427 const char *codec_name; | |
428 AVCodec *p; | |
429 char buf1[32]; | |
337 | 430 char channels_str[100]; |
92 | 431 int bitrate; |
0 | 432 |
433 if (encode) | |
434 p = avcodec_find_encoder(enc->codec_id); | |
435 else | |
436 p = avcodec_find_decoder(enc->codec_id); | |
437 | |
438 if (p) { | |
439 codec_name = p->name; | |
440 } else if (enc->codec_name[0] != '\0') { | |
441 codec_name = enc->codec_name; | |
442 } else { | |
443 /* output avi tags */ | |
444 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
445 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
446 enc->codec_tag & 0xff, | |
447 (enc->codec_tag >> 8) & 0xff, | |
448 (enc->codec_tag >> 16) & 0xff, | |
449 (enc->codec_tag >> 24) & 0xff); | |
450 } else { | |
451 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
452 } | |
453 codec_name = buf1; | |
454 } | |
455 | |
456 switch(enc->codec_type) { | |
457 case CODEC_TYPE_VIDEO: | |
458 snprintf(buf, buf_size, | |
459 "Video: %s%s", | |
460 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : ""); | |
55 | 461 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
462 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
463 ", %s", | |
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
464 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
55 | 465 } |
0 | 466 if (enc->width) { |
467 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
468 ", %dx%d, %0.2f fps", | |
469 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
|
470 (float)enc->frame_rate / enc->frame_rate_base); |
0 | 471 } |
741 | 472 if (encode) { |
473 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
474 ", q=%d-%d", enc->qmin, enc->qmax); | |
475 } | |
92 | 476 bitrate = enc->bit_rate; |
0 | 477 break; |
478 case CODEC_TYPE_AUDIO: | |
479 snprintf(buf, buf_size, | |
480 "Audio: %s", | |
481 codec_name); | |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
482 switch (enc->channels) { |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
483 case 1: |
337 | 484 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
|
485 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
486 case 2: |
337 | 487 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
|
488 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
489 case 6: |
337 | 490 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
|
491 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
492 default: |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
493 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
|
494 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
495 } |
0 | 496 if (enc->sample_rate) { |
497 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
498 ", %d Hz, %s", | |
499 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
|
500 channels_str); |
0 | 501 } |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
502 |
92 | 503 /* for PCM codecs, compute bitrate directly */ |
504 switch(enc->codec_id) { | |
505 case CODEC_ID_PCM_S16LE: | |
506 case CODEC_ID_PCM_S16BE: | |
507 case CODEC_ID_PCM_U16LE: | |
508 case CODEC_ID_PCM_U16BE: | |
94 | 509 bitrate = enc->sample_rate * enc->channels * 16; |
92 | 510 break; |
511 case CODEC_ID_PCM_S8: | |
512 case CODEC_ID_PCM_U8: | |
513 case CODEC_ID_PCM_ALAW: | |
514 case CODEC_ID_PCM_MULAW: | |
94 | 515 bitrate = enc->sample_rate * enc->channels * 8; |
92 | 516 break; |
517 default: | |
518 bitrate = enc->bit_rate; | |
519 break; | |
520 } | |
0 | 521 break; |
522 default: | |
583 | 523 av_abort(); |
0 | 524 } |
741 | 525 if (encode) { |
526 if (enc->flags & CODEC_FLAG_PASS1) | |
527 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
528 ", pass 1"); | |
529 if (enc->flags & CODEC_FLAG_PASS2) | |
530 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
531 ", pass 2"); | |
532 } | |
92 | 533 if (bitrate != 0) { |
0 | 534 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
92 | 535 ", %d kb/s", bitrate / 1000); |
0 | 536 } |
537 } | |
538 | |
362 | 539 unsigned avcodec_version( void ) |
540 { | |
541 return LIBAVCODEC_VERSION_INT; | |
542 } | |
55 | 543 |
379 | 544 unsigned avcodec_build( void ) |
545 { | |
546 return LIBAVCODEC_BUILD; | |
547 } | |
548 | |
0 | 549 /* must be called before any other functions */ |
550 void avcodec_init(void) | |
551 { | |
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
552 static int inited = 0; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
553 |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
554 if (inited != 0) |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
555 return; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
556 inited = 1; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
557 |
851 | 558 //dsputil_init(); |
0 | 559 } |
560 | |
924 | 561 /* this can be called after seeking and before trying to decode the next keyframe */ |
341 | 562 void avcodec_flush_buffers(AVCodecContext *avctx) |
563 { | |
924 | 564 int i; |
341 | 565 MpegEncContext *s = avctx->priv_data; |
924 | 566 |
567 switch(avctx->codec_id){ | |
568 case CODEC_ID_MPEG1VIDEO: | |
569 case CODEC_ID_H263: | |
570 case CODEC_ID_RV10: | |
571 case CODEC_ID_MJPEG: | |
572 case CODEC_ID_MJPEGB: | |
573 case CODEC_ID_MPEG4: | |
574 case CODEC_ID_MSMPEG4V1: | |
575 case CODEC_ID_MSMPEG4V2: | |
576 case CODEC_ID_MSMPEG4V3: | |
577 case CODEC_ID_WMV1: | |
578 case CODEC_ID_WMV2: | |
579 case CODEC_ID_H263P: | |
580 case CODEC_ID_H263I: | |
581 case CODEC_ID_SVQ1: | |
582 for(i=0; i<MAX_PICTURE_COUNT; i++){ | |
583 if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL | |
584 || s->picture[i].type == FF_BUFFER_TYPE_USER)) | |
925 | 585 avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]); |
963 | 586 } |
1138 | 587 s->last_picture_ptr = s->next_picture_ptr = NULL; |
924 | 588 break; |
589 default: | |
590 //FIXME | |
591 break; | |
592 } | |
341 | 593 } |
594 | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
595 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
|
596 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
|
597 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
|
598 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
599 assert(den != 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
600 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
601 if(den < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
602 den= -den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
603 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
604 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
605 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
606 if(nom < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
607 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
608 sign= 1; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
609 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
610 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
611 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
|
612 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
|
613 nom /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
614 den /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
615 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
616 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
|
617 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
618 if(larger > max){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
619 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
|
620 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
|
621 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
|
622 exact=0; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
623 }else |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
624 break; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
625 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
626 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
627 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
|
628 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
629 *dst_nom = nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
630 *dst_den = den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
631 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
632 return exact; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
633 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
634 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
635 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
|
636 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
|
637 assert(c > 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
638 assert(b >=0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
639 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
640 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
|
641 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
642 h= a>>32; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
643 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
|
644 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
645 l= a&0xFFFFFFFF; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
646 l *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
647 h *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
648 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
649 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
|
650 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
651 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
|
652 } |