Mercurial > libavcodec.hg
annotate utils.c @ 1126:77ccf7fe3bd0 libavcodec
per context frame_rate_base, this should finally fix frame_rate related av sync issues
author | michaelni |
---|---|
date | Wed, 12 Mar 2003 15:16:19 +0000 |
parents | 1e39f273ecd6 |
children | e10e841c9bf0 |
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) | |
924 | 195 pic->data[i] = pic->base[i] + 16; //FIXME 16 |
903 | 196 else |
924 | 197 pic->data[i] = pic->base[i] + (pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift) + 16; //FIXME 16 |
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; |
681 | 247 } |
248 | |
249 /** | |
250 * allocates a AVCodecContext and set it to defaults. | |
251 * this can be deallocated by simply calling free() | |
252 */ | |
703 | 253 AVCodecContext *avcodec_alloc_context(void){ |
681 | 254 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
255 | |
256 if(avctx==NULL) return NULL; | |
257 | |
258 avcodec_get_context_defaults(avctx); | |
259 | |
260 return avctx; | |
261 } | |
262 | |
903 | 263 /** |
925 | 264 * allocates a AVPFrame and set it to defaults. |
903 | 265 * this can be deallocated by simply calling free() |
266 */ | |
925 | 267 AVFrame *avcodec_alloc_frame(void){ |
268 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
903 | 269 |
270 return pic; | |
271 } | |
272 | |
0 | 273 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
274 { | |
275 int ret; | |
276 | |
277 avctx->codec = codec; | |
927 | 278 avctx->codec_id = codec->id; |
0 | 279 avctx->frame_number = 0; |
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
280 if (codec->priv_data_size > 0) { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
281 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
|
282 if (!avctx->priv_data) |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
283 return -ENOMEM; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
284 } else { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
285 avctx->priv_data = NULL; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
286 } |
0 | 287 ret = avctx->codec->init(avctx); |
288 if (ret < 0) { | |
394 | 289 av_freep(&avctx->priv_data); |
0 | 290 return ret; |
291 } | |
292 return 0; | |
293 } | |
294 | |
1064 | 295 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
0 | 296 const short *samples) |
297 { | |
298 int ret; | |
299 | |
300 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
301 avctx->frame_number++; | |
302 return ret; | |
303 } | |
304 | |
1064 | 305 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
925 | 306 const AVFrame *pict) |
0 | 307 { |
308 int ret; | |
309 | |
310 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
814 | 311 |
312 emms_c(); //needed to avoid a emms_c() call before every return; | |
313 | |
0 | 314 avctx->frame_number++; |
315 return ret; | |
316 } | |
317 | |
318 /* decode a frame. return -1 if error, otherwise return the number of | |
319 bytes used. If no frame could be decompressed, *got_picture_ptr is | |
320 zero. Otherwise, it is non zero */ | |
925 | 321 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
0 | 322 int *got_picture_ptr, |
1064 | 323 uint8_t *buf, int buf_size) |
0 | 324 { |
325 int ret; | |
903 | 326 |
0 | 327 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
328 buf, buf_size); | |
814 | 329 |
330 emms_c(); //needed to avoid a emms_c() call before every return; | |
903 | 331 |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
332 if (*got_picture_ptr) |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
333 avctx->frame_number++; |
0 | 334 return ret; |
335 } | |
336 | |
337 /* decode an audio frame. return -1 if error, otherwise return the | |
338 *number of bytes used. If no frame could be decompressed, | |
339 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
340 *size in BYTES. */ | |
1064 | 341 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
0 | 342 int *frame_size_ptr, |
1064 | 343 uint8_t *buf, int buf_size) |
0 | 344 { |
345 int ret; | |
346 | |
347 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
348 buf, buf_size); | |
349 avctx->frame_number++; | |
350 return ret; | |
351 } | |
352 | |
353 int avcodec_close(AVCodecContext *avctx) | |
354 { | |
355 if (avctx->codec->close) | |
356 avctx->codec->close(avctx); | |
394 | 357 av_freep(&avctx->priv_data); |
0 | 358 avctx->codec = NULL; |
359 return 0; | |
360 } | |
361 | |
362 AVCodec *avcodec_find_encoder(enum CodecID id) | |
363 { | |
364 AVCodec *p; | |
365 p = first_avcodec; | |
366 while (p) { | |
367 if (p->encode != NULL && p->id == id) | |
368 return p; | |
369 p = p->next; | |
370 } | |
371 return NULL; | |
372 } | |
373 | |
177 | 374 AVCodec *avcodec_find_encoder_by_name(const char *name) |
375 { | |
376 AVCodec *p; | |
377 p = first_avcodec; | |
378 while (p) { | |
379 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
380 return p; | |
381 p = p->next; | |
382 } | |
383 return NULL; | |
384 } | |
385 | |
0 | 386 AVCodec *avcodec_find_decoder(enum CodecID id) |
387 { | |
388 AVCodec *p; | |
389 p = first_avcodec; | |
390 while (p) { | |
391 if (p->decode != NULL && p->id == id) | |
392 return p; | |
393 p = p->next; | |
394 } | |
395 return NULL; | |
396 } | |
397 | |
398 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
399 { | |
400 AVCodec *p; | |
401 p = first_avcodec; | |
402 while (p) { | |
403 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
404 return p; | |
405 p = p->next; | |
406 } | |
407 return NULL; | |
408 } | |
409 | |
410 AVCodec *avcodec_find(enum CodecID id) | |
411 { | |
412 AVCodec *p; | |
413 p = first_avcodec; | |
414 while (p) { | |
415 if (p->id == id) | |
416 return p; | |
417 p = p->next; | |
418 } | |
419 return NULL; | |
420 } | |
421 | |
422 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
423 { | |
424 const char *codec_name; | |
425 AVCodec *p; | |
426 char buf1[32]; | |
337 | 427 char channels_str[100]; |
92 | 428 int bitrate; |
0 | 429 |
430 if (encode) | |
431 p = avcodec_find_encoder(enc->codec_id); | |
432 else | |
433 p = avcodec_find_decoder(enc->codec_id); | |
434 | |
435 if (p) { | |
436 codec_name = p->name; | |
437 } else if (enc->codec_name[0] != '\0') { | |
438 codec_name = enc->codec_name; | |
439 } else { | |
440 /* output avi tags */ | |
441 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
442 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
443 enc->codec_tag & 0xff, | |
444 (enc->codec_tag >> 8) & 0xff, | |
445 (enc->codec_tag >> 16) & 0xff, | |
446 (enc->codec_tag >> 24) & 0xff); | |
447 } else { | |
448 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
449 } | |
450 codec_name = buf1; | |
451 } | |
452 | |
453 switch(enc->codec_type) { | |
454 case CODEC_TYPE_VIDEO: | |
455 snprintf(buf, buf_size, | |
456 "Video: %s%s", | |
457 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : ""); | |
55 | 458 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
459 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
460 ", %s", | |
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
461 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
55 | 462 } |
0 | 463 if (enc->width) { |
464 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
465 ", %dx%d, %0.2f fps", | |
466 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
|
467 (float)enc->frame_rate / enc->frame_rate_base); |
0 | 468 } |
741 | 469 if (encode) { |
470 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
471 ", q=%d-%d", enc->qmin, enc->qmax); | |
472 } | |
92 | 473 bitrate = enc->bit_rate; |
0 | 474 break; |
475 case CODEC_TYPE_AUDIO: | |
476 snprintf(buf, buf_size, | |
477 "Audio: %s", | |
478 codec_name); | |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
479 switch (enc->channels) { |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
480 case 1: |
337 | 481 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
|
482 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
483 case 2: |
337 | 484 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
|
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 6: |
337 | 487 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
|
488 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
489 default: |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
490 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
|
491 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
492 } |
0 | 493 if (enc->sample_rate) { |
494 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
495 ", %d Hz, %s", | |
496 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
|
497 channels_str); |
0 | 498 } |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
499 |
92 | 500 /* for PCM codecs, compute bitrate directly */ |
501 switch(enc->codec_id) { | |
502 case CODEC_ID_PCM_S16LE: | |
503 case CODEC_ID_PCM_S16BE: | |
504 case CODEC_ID_PCM_U16LE: | |
505 case CODEC_ID_PCM_U16BE: | |
94 | 506 bitrate = enc->sample_rate * enc->channels * 16; |
92 | 507 break; |
508 case CODEC_ID_PCM_S8: | |
509 case CODEC_ID_PCM_U8: | |
510 case CODEC_ID_PCM_ALAW: | |
511 case CODEC_ID_PCM_MULAW: | |
94 | 512 bitrate = enc->sample_rate * enc->channels * 8; |
92 | 513 break; |
514 default: | |
515 bitrate = enc->bit_rate; | |
516 break; | |
517 } | |
0 | 518 break; |
519 default: | |
583 | 520 av_abort(); |
0 | 521 } |
741 | 522 if (encode) { |
523 if (enc->flags & CODEC_FLAG_PASS1) | |
524 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
525 ", pass 1"); | |
526 if (enc->flags & CODEC_FLAG_PASS2) | |
527 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
528 ", pass 2"); | |
529 } | |
92 | 530 if (bitrate != 0) { |
0 | 531 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
92 | 532 ", %d kb/s", bitrate / 1000); |
0 | 533 } |
534 } | |
535 | |
362 | 536 unsigned avcodec_version( void ) |
537 { | |
538 return LIBAVCODEC_VERSION_INT; | |
539 } | |
55 | 540 |
379 | 541 unsigned avcodec_build( void ) |
542 { | |
543 return LIBAVCODEC_BUILD; | |
544 } | |
545 | |
0 | 546 /* must be called before any other functions */ |
547 void avcodec_init(void) | |
548 { | |
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
549 static int inited = 0; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
550 |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
551 if (inited != 0) |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
552 return; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
553 inited = 1; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
554 |
851 | 555 //dsputil_init(); |
0 | 556 } |
557 | |
924 | 558 /* this can be called after seeking and before trying to decode the next keyframe */ |
341 | 559 void avcodec_flush_buffers(AVCodecContext *avctx) |
560 { | |
924 | 561 int i; |
341 | 562 MpegEncContext *s = avctx->priv_data; |
924 | 563 |
564 switch(avctx->codec_id){ | |
565 case CODEC_ID_MPEG1VIDEO: | |
566 case CODEC_ID_H263: | |
567 case CODEC_ID_RV10: | |
568 case CODEC_ID_MJPEG: | |
569 case CODEC_ID_MJPEGB: | |
570 case CODEC_ID_MPEG4: | |
571 case CODEC_ID_MSMPEG4V1: | |
572 case CODEC_ID_MSMPEG4V2: | |
573 case CODEC_ID_MSMPEG4V3: | |
574 case CODEC_ID_WMV1: | |
575 case CODEC_ID_WMV2: | |
576 case CODEC_ID_H263P: | |
577 case CODEC_ID_H263I: | |
578 case CODEC_ID_SVQ1: | |
579 for(i=0; i<MAX_PICTURE_COUNT; i++){ | |
580 if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL | |
581 || s->picture[i].type == FF_BUFFER_TYPE_USER)) | |
925 | 582 avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]); |
963 | 583 } |
584 s->last_picture.data[0] = s->next_picture.data[0] = NULL; | |
924 | 585 break; |
586 default: | |
587 //FIXME | |
588 break; | |
589 } | |
341 | 590 } |
591 | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
592 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
|
593 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
|
594 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
|
595 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
596 assert(den != 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
597 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
598 if(den < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
599 den= -den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
600 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
601 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
602 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
603 if(nom < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
604 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
605 sign= 1; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
606 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
607 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
608 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
|
609 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
|
610 nom /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
611 den /= gcd; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
612 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
613 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
|
614 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
615 if(larger > max){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
616 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
|
617 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
|
618 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
|
619 exact=0; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
620 }else |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
621 break; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
622 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
623 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
624 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
|
625 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
626 *dst_nom = nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
627 *dst_den = den; |
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 return exact; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
630 } |
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 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
|
633 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
|
634 assert(c > 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
635 assert(b >=0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
636 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
637 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
|
638 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
639 h= a>>32; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
640 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
|
641 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
642 l= a&0xFFFFFFFF; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
643 l *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
644 h *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
645 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
646 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
|
647 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
648 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
|
649 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
650 |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
651 static int raw_encode_init(AVCodecContext *s) |
0 | 652 { |
653 return 0; | |
654 } | |
655 | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
656 static int raw_decode_frame(AVCodecContext *avctx, |
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
657 void *data, int *data_size, |
1064 | 658 uint8_t *buf, int buf_size) |
0 | 659 { |
660 return -1; | |
661 } | |
662 | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
663 static int raw_encode_frame(AVCodecContext *avctx, |
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
664 unsigned char *frame, int buf_size, void *data) |
0 | 665 { |
666 return -1; | |
667 } | |
668 | |
669 AVCodec rawvideo_codec = { | |
670 "rawvideo", | |
671 CODEC_TYPE_VIDEO, | |
672 CODEC_ID_RAWVIDEO, | |
673 0, | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
674 raw_encode_init, |
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
675 raw_encode_frame, |
0 | 676 NULL, |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
677 raw_decode_frame, |
0 | 678 }; |