Mercurial > libavcodec.hg
annotate utils.c @ 1654:1c123e036890 libavcodec
this should make the decoder safe for big-endian platforms
author | melanson |
---|---|
date | Thu, 04 Dec 2003 14:14:43 +0000 |
parents | 586b5c08863c |
children | 0e7f1aabd498 |
rev | line source |
---|---|
0 | 1 /* |
2 * utils for libavcodec | |
429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
4 * Copyright (c) 2003 Michel Bardiaux for the av_log API |
0 | 5 * |
429 | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2 of the License, or (at your option) any later version. | |
0 | 10 * |
429 | 11 * This library is distributed in the hope that it will be useful, |
0 | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Lesser General Public License for more details. | |
0 | 15 * |
429 | 16 * You should have received a copy of the GNU Lesser General Public |
17 * License along with this library; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
0 | 19 */ |
1106 | 20 |
21 /** | |
22 * @file utils.c | |
23 * utils. | |
24 */ | |
25 | |
394 | 26 #include "avcodec.h" |
0 | 27 #include "dsputil.h" |
341 | 28 #include "mpegvideo.h" |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
29 #include <stdarg.h> |
0 | 30 |
862 | 31 void *av_mallocz(unsigned int size) |
394 | 32 { |
33 void *ptr; | |
908 | 34 |
394 | 35 ptr = av_malloc(size); |
36 if (!ptr) | |
37 return NULL; | |
38 memset(ptr, 0, size); | |
39 return ptr; | |
40 } | |
41 | |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
42 char *av_strdup(const char *s) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
43 { |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
44 char *ptr; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
45 int len; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
46 len = strlen(s) + 1; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
47 ptr = av_malloc(len); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
48 if (!ptr) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
49 return NULL; |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
50 memcpy(ptr, s, len); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
51 return ptr; |
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 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
54 /** |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
55 * 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
|
56 */ |
1057 | 57 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
|
58 { |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
59 if(min_size < *size) |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
60 return ptr; |
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 *size= min_size + 10*1024; |
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 return av_realloc(ptr, *size); |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
65 } |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
66 |
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
67 |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
68 /* 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
|
69 static unsigned int last_static = 0; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
70 static char*** array_static = NULL; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
71 static const unsigned int grow_static = 64; // ^2 |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
72 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
|
73 { |
1057 | 74 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
|
75 void *ptr = av_mallocz(size); |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
76 if (!ptr) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
77 return NULL; |
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 (location) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
80 { |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
81 if (l > last_static) |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
82 array_static = av_realloc(array_static, l); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
83 array_static[last_static++] = (char**) location; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
84 *location = 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 return ptr; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
87 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
88 /* free all static arrays and reset pointers to 0 */ |
1282 | 89 void av_free_static(void) |
902
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 if (array_static) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
92 { |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
93 unsigned i; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
94 for (i = 0; i < last_static; i++) |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
95 { |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
96 av_free(*array_static[i]); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
97 *array_static[i] = NULL; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
98 } |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
99 av_free(array_static); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
100 array_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 last_static = 0; |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
103 } |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
104 |
400 | 105 /* cannot call it directly because of 'void **' casting is not automatic */ |
106 void __av_freep(void **ptr) | |
107 { | |
108 av_free(*ptr); | |
109 *ptr = NULL; | |
110 } | |
111 | |
0 | 112 /* encoder management */ |
113 AVCodec *first_avcodec; | |
114 | |
115 void register_avcodec(AVCodec *format) | |
116 { | |
117 AVCodec **p; | |
118 p = &first_avcodec; | |
119 while (*p != NULL) p = &(*p)->next; | |
120 *p = format; | |
121 format->next = NULL; | |
122 } | |
123 | |
1214 | 124 typedef struct InternalBuffer{ |
903 | 125 int last_pic_num; |
1214 | 126 uint8_t *base[4]; |
903 | 127 uint8_t *data[4]; |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
128 int linesize[4]; |
1214 | 129 }InternalBuffer; |
130 | |
131 #define INTERNAL_BUFFER_SIZE 32 | |
903 | 132 |
1538 | 133 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1)) |
134 | |
135 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ | |
136 int w_align= 1; | |
137 int h_align= 1; | |
138 | |
139 switch(s->pix_fmt){ | |
140 case PIX_FMT_YUV420P: | |
141 case PIX_FMT_YUV422: | |
142 case PIX_FMT_YUV422P: | |
143 case PIX_FMT_YUV444P: | |
144 case PIX_FMT_GRAY8: | |
145 case PIX_FMT_YUVJ420P: | |
146 case PIX_FMT_YUVJ422P: | |
147 case PIX_FMT_YUVJ444P: | |
148 w_align= 16; //FIXME check for non mpeg style codecs and use less alignment | |
149 h_align= 16; | |
150 break; | |
151 case PIX_FMT_YUV411P: | |
152 w_align=32; | |
153 h_align=8; | |
154 break; | |
155 case PIX_FMT_YUV410P: | |
156 if(s->codec_id == CODEC_ID_SVQ1){ | |
157 w_align=64; | |
158 h_align=64; | |
159 } | |
160 break; | |
161 default: | |
162 w_align= 1; | |
163 h_align= 1; | |
164 break; | |
165 } | |
166 | |
167 *width = ALIGN(*width , w_align); | |
168 *height= ALIGN(*height, h_align); | |
169 } | |
170 | |
925 | 171 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 172 int i; |
1538 | 173 int w= s->width; |
174 int h= s->height; | |
1214 | 175 InternalBuffer *buf; |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
176 int *picture_number; |
924 | 177 |
178 assert(pic->data[0]==NULL); | |
1214 | 179 assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count); |
903 | 180 |
1214 | 181 if(s->internal_buffer==NULL){ |
182 s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer)); | |
183 } | |
184 #if 0 | |
185 s->internal_buffer= av_fast_realloc( | |
186 s->internal_buffer, | |
187 &s->internal_buffer_size, | |
188 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ | |
189 ); | |
190 #endif | |
191 | |
192 buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
193 picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE-1]).last_pic_num; //FIXME ugly hack |
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
194 (*picture_number)++; |
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
195 |
1214 | 196 if(buf->base[0]){ |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
197 pic->age= *picture_number - buf->last_pic_num; |
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
198 buf->last_pic_num= *picture_number; |
903 | 199 }else{ |
1538 | 200 int h_chroma_shift, v_chroma_shift; |
201 int s_align, pixel_size; | |
903 | 202 |
203 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
1538 | 204 |
903 | 205 switch(s->pix_fmt){ |
1291 | 206 case PIX_FMT_RGB555: |
207 case PIX_FMT_RGB565: | |
903 | 208 case PIX_FMT_YUV422: |
209 pixel_size=2; | |
210 break; | |
211 case PIX_FMT_RGB24: | |
212 case PIX_FMT_BGR24: | |
213 pixel_size=3; | |
214 break; | |
215 case PIX_FMT_RGBA32: | |
216 pixel_size=4; | |
217 break; | |
218 default: | |
219 pixel_size=1; | |
220 } | |
1538 | 221 |
222 avcodec_align_dimensions(s, &w, &h); | |
223 #if defined(ARCH_POWERPC) || defined(HAVE_MMI) //FIXME some cleaner check | |
224 s_align= 16; | |
225 #else | |
226 s_align= 8; | |
227 #endif | |
228 | |
903 | 229 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
230 w+= EDGE_WIDTH*2; | |
231 h+= EDGE_WIDTH*2; | |
232 } | |
233 | |
1214 | 234 buf->last_pic_num= -256*256*256*64; |
903 | 235 |
236 for(i=0; i<3; i++){ | |
1165 | 237 const int h_shift= i==0 ? 0 : h_chroma_shift; |
238 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
903 | 239 |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
240 buf->linesize[i]= ALIGN(pixel_size*w>>h_shift, s_align); |
903 | 241 |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
242 buf->base[i]= av_mallocz((buf->linesize[i]*h>>v_shift)+16); //FIXME 16 |
1214 | 243 if(buf->base[i]==NULL) return -1; |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
244 memset(buf->base[i], 128, buf->linesize[i]*h>>v_shift); |
903 | 245 |
246 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
1214 | 247 buf->data[i] = buf->base[i]; |
903 | 248 else |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
249 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), s_align); |
903 | 250 } |
251 pic->age= 256*256*256*64; | |
252 } | |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
253 pic->type= FF_BUFFER_TYPE_INTERNAL; |
903 | 254 |
1214 | 255 for(i=0; i<4; i++){ |
256 pic->base[i]= buf->base[i]; | |
257 pic->data[i]= buf->data[i]; | |
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
258 pic->linesize[i]= buf->linesize[i]; |
1214 | 259 } |
260 s->internal_buffer_count++; | |
261 | |
903 | 262 return 0; |
263 } | |
264 | |
925 | 265 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
903 | 266 int i; |
1214 | 267 InternalBuffer *buf, *last, temp; |
268 | |
924 | 269 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
1396 | 270 assert(s->internal_buffer_count); |
1214 | 271 |
1455 | 272 buf = NULL; /* avoids warning */ |
1214 | 273 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
274 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
275 if(buf->data[0] == pic->data[0]) | |
276 break; | |
277 } | |
278 assert(i < s->internal_buffer_count); | |
279 s->internal_buffer_count--; | |
280 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
281 | |
282 temp= *buf; | |
283 *buf= *last; | |
284 *last= temp; | |
285 | |
286 for(i=0; i<3; i++){ | |
903 | 287 pic->data[i]=NULL; |
1214 | 288 // pic->base[i]=NULL; |
289 } | |
903 | 290 //printf("R%X\n", pic->opaque); |
291 } | |
292 | |
1630 | 293 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ |
294 AVFrame temp_pic; | |
295 int i; | |
296 | |
297 /* If no picture return a new buffer */ | |
298 if(pic->data[0] == NULL) { | |
299 /* We will copy from buffer, so must be readable */ | |
300 pic->buffer_hints |= FF_BUFFER_HINTS_READABLE; | |
301 return s->get_buffer(s, pic); | |
302 } | |
303 | |
304 /* If internal buffer type return the same buffer */ | |
305 if(pic->type == FF_BUFFER_TYPE_INTERNAL) | |
306 return 0; | |
307 | |
308 /* | |
309 * Not internal type and reget_buffer not overridden, emulate cr buffer | |
310 */ | |
311 temp_pic = *pic; | |
312 for(i = 0; i < 4; i++) | |
313 pic->data[i] = pic->base[i] = NULL; | |
314 pic->opaque = NULL; | |
315 /* Allocate new frame */ | |
316 if (s->get_buffer(s, pic)) | |
317 return -1; | |
318 /* Copy image data from old buffer to new buffer */ | |
319 img_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width, | |
320 s->height); | |
321 s->release_buffer(s, &temp_pic); // Release old frame | |
322 return 0; | |
323 } | |
324 | |
998 | 325 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, enum PixelFormat * fmt){ |
326 return fmt[0]; | |
327 } | |
328 | |
681 | 329 void avcodec_get_context_defaults(AVCodecContext *s){ |
685 | 330 s->bit_rate= 800*1000; |
331 s->bit_rate_tolerance= s->bit_rate*10; | |
681 | 332 s->qmin= 2; |
333 s->qmax= 31; | |
932 | 334 s->mb_qmin= 2; |
335 s->mb_qmax= 31; | |
681 | 336 s->rc_eq= "tex^qComp"; |
337 s->qcompress= 0.5; | |
685 | 338 s->max_qdiff= 3; |
339 s->b_quant_factor=1.25; | |
340 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
|
341 s->i_quant_factor=-0.8; |
685 | 342 s->i_quant_offset=0.0; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
343 s->error_concealment= 3; |
762 | 344 s->error_resilience= 1; |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
345 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
|
346 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
|
347 s->frame_rate = 25; |
762 | 348 s->gop_size= 50; |
349 s->me_method= ME_EPZS; | |
903 | 350 s->get_buffer= avcodec_default_get_buffer; |
351 s->release_buffer= avcodec_default_release_buffer; | |
998 | 352 s->get_format= avcodec_default_get_format; |
954 | 353 s->me_subpel_quality=8; |
1505
010f76d07a27
use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents:
1456
diff
changeset
|
354 s->lmin= FF_QP2LAMBDA * s->qmin; |
010f76d07a27
use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents:
1456
diff
changeset
|
355 s->lmax= FF_QP2LAMBDA * s->qmax; |
1548 | 356 s->sample_aspect_ratio= (AVRational){0,1}; |
1150 | 357 |
358 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
359 s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1582
diff
changeset
|
360 s->palctrl = NULL; |
1630 | 361 s->reget_buffer= avcodec_default_reget_buffer; |
681 | 362 } |
363 | |
364 /** | |
365 * allocates a AVCodecContext and set it to defaults. | |
366 * this can be deallocated by simply calling free() | |
367 */ | |
703 | 368 AVCodecContext *avcodec_alloc_context(void){ |
681 | 369 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
370 | |
371 if(avctx==NULL) return NULL; | |
372 | |
373 avcodec_get_context_defaults(avctx); | |
374 | |
375 return avctx; | |
376 } | |
377 | |
903 | 378 /** |
925 | 379 * allocates a AVPFrame and set it to defaults. |
903 | 380 * this can be deallocated by simply calling free() |
381 */ | |
925 | 382 AVFrame *avcodec_alloc_frame(void){ |
383 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
903 | 384 |
385 return pic; | |
386 } | |
387 | |
0 | 388 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
389 { | |
390 int ret; | |
391 | |
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
392 if(avctx->codec) |
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
393 return -1; |
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
394 |
0 | 395 avctx->codec = codec; |
927 | 396 avctx->codec_id = codec->id; |
0 | 397 avctx->frame_number = 0; |
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
398 if (codec->priv_data_size > 0) { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
399 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
|
400 if (!avctx->priv_data) |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
401 return -ENOMEM; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
402 } else { |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
403 avctx->priv_data = NULL; |
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
404 } |
0 | 405 ret = avctx->codec->init(avctx); |
406 if (ret < 0) { | |
394 | 407 av_freep(&avctx->priv_data); |
0 | 408 return ret; |
409 } | |
410 return 0; | |
411 } | |
412 | |
1064 | 413 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
0 | 414 const short *samples) |
415 { | |
416 int ret; | |
417 | |
418 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
419 avctx->frame_number++; | |
420 return ret; | |
421 } | |
422 | |
1064 | 423 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
925 | 424 const AVFrame *pict) |
0 | 425 { |
426 int ret; | |
427 | |
428 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
814 | 429 |
430 emms_c(); //needed to avoid a emms_c() call before every return; | |
431 | |
0 | 432 avctx->frame_number++; |
433 return ret; | |
434 } | |
435 | |
1249 | 436 /** |
437 * decode a frame. | |
438 * @param buf bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE larger then the actual read bytes | |
439 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end | |
440 * @param buf_size the size of the buffer in bytes | |
441 * @param got_picture_ptr zero if no frame could be decompressed, Otherwise, it is non zero | |
442 * @return -1 if error, otherwise return the number of | |
443 * bytes used. | |
444 */ | |
925 | 445 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
0 | 446 int *got_picture_ptr, |
1064 | 447 uint8_t *buf, int buf_size) |
0 | 448 { |
449 int ret; | |
903 | 450 |
0 | 451 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
452 buf, buf_size); | |
814 | 453 |
454 emms_c(); //needed to avoid a emms_c() call before every return; | |
903 | 455 |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
456 if (*got_picture_ptr) |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
457 avctx->frame_number++; |
0 | 458 return ret; |
459 } | |
460 | |
461 /* decode an audio frame. return -1 if error, otherwise return the | |
462 *number of bytes used. If no frame could be decompressed, | |
463 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
464 *size in BYTES. */ | |
1064 | 465 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
0 | 466 int *frame_size_ptr, |
1064 | 467 uint8_t *buf, int buf_size) |
0 | 468 { |
469 int ret; | |
470 | |
471 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
472 buf, buf_size); | |
473 avctx->frame_number++; | |
474 return ret; | |
475 } | |
476 | |
477 int avcodec_close(AVCodecContext *avctx) | |
478 { | |
479 if (avctx->codec->close) | |
480 avctx->codec->close(avctx); | |
394 | 481 av_freep(&avctx->priv_data); |
0 | 482 avctx->codec = NULL; |
483 return 0; | |
484 } | |
485 | |
486 AVCodec *avcodec_find_encoder(enum CodecID id) | |
487 { | |
488 AVCodec *p; | |
489 p = first_avcodec; | |
490 while (p) { | |
491 if (p->encode != NULL && p->id == id) | |
492 return p; | |
493 p = p->next; | |
494 } | |
495 return NULL; | |
496 } | |
497 | |
177 | 498 AVCodec *avcodec_find_encoder_by_name(const char *name) |
499 { | |
500 AVCodec *p; | |
501 p = first_avcodec; | |
502 while (p) { | |
503 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
504 return p; | |
505 p = p->next; | |
506 } | |
507 return NULL; | |
508 } | |
509 | |
0 | 510 AVCodec *avcodec_find_decoder(enum CodecID id) |
511 { | |
512 AVCodec *p; | |
513 p = first_avcodec; | |
514 while (p) { | |
515 if (p->decode != NULL && p->id == id) | |
516 return p; | |
517 p = p->next; | |
518 } | |
519 return NULL; | |
520 } | |
521 | |
522 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
523 { | |
524 AVCodec *p; | |
525 p = first_avcodec; | |
526 while (p) { | |
527 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
528 return p; | |
529 p = p->next; | |
530 } | |
531 return NULL; | |
532 } | |
533 | |
534 AVCodec *avcodec_find(enum CodecID id) | |
535 { | |
536 AVCodec *p; | |
537 p = first_avcodec; | |
538 while (p) { | |
539 if (p->id == id) | |
540 return p; | |
541 p = p->next; | |
542 } | |
543 return NULL; | |
544 } | |
545 | |
546 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
547 { | |
548 const char *codec_name; | |
549 AVCodec *p; | |
550 char buf1[32]; | |
337 | 551 char channels_str[100]; |
92 | 552 int bitrate; |
0 | 553 |
554 if (encode) | |
555 p = avcodec_find_encoder(enc->codec_id); | |
556 else | |
557 p = avcodec_find_decoder(enc->codec_id); | |
558 | |
559 if (p) { | |
560 codec_name = p->name; | |
1449
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
561 if (!encode && enc->codec_id == CODEC_ID_MP3) { |
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
562 if (enc->sub_id == 2) |
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
563 codec_name = "mp2"; |
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
564 else if (enc->sub_id == 1) |
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
565 codec_name = "mp1"; |
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
566 } |
1582
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
567 } else if (enc->codec_id == CODEC_ID_MPEG2TS) { |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
568 /* fake mpeg2 transport stream codec (currently not |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
569 registered) */ |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
570 codec_name = "mpeg2ts"; |
0 | 571 } else if (enc->codec_name[0] != '\0') { |
572 codec_name = enc->codec_name; | |
573 } else { | |
574 /* output avi tags */ | |
575 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
576 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
577 enc->codec_tag & 0xff, | |
578 (enc->codec_tag >> 8) & 0xff, | |
579 (enc->codec_tag >> 16) & 0xff, | |
580 (enc->codec_tag >> 24) & 0xff); | |
581 } else { | |
582 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
583 } | |
584 codec_name = buf1; | |
585 } | |
586 | |
587 switch(enc->codec_type) { | |
588 case CODEC_TYPE_VIDEO: | |
589 snprintf(buf, buf_size, | |
590 "Video: %s%s", | |
1389 | 591 codec_name, enc->mb_decision ? " (hq)" : ""); |
55 | 592 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
593 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
594 ", %s", | |
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
595 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
55 | 596 } |
0 | 597 if (enc->width) { |
598 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
599 ", %dx%d, %0.2f fps", | |
600 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
|
601 (float)enc->frame_rate / enc->frame_rate_base); |
0 | 602 } |
741 | 603 if (encode) { |
604 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
605 ", q=%d-%d", enc->qmin, enc->qmax); | |
606 } | |
92 | 607 bitrate = enc->bit_rate; |
0 | 608 break; |
609 case CODEC_TYPE_AUDIO: | |
610 snprintf(buf, buf_size, | |
611 "Audio: %s", | |
612 codec_name); | |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
613 switch (enc->channels) { |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
614 case 1: |
337 | 615 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
|
616 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
617 case 2: |
337 | 618 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
|
619 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
620 case 6: |
337 | 621 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
|
622 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
623 default: |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
624 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
|
625 break; |
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
626 } |
0 | 627 if (enc->sample_rate) { |
628 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
629 ", %d Hz, %s", | |
630 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
|
631 channels_str); |
0 | 632 } |
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
633 |
92 | 634 /* for PCM codecs, compute bitrate directly */ |
635 switch(enc->codec_id) { | |
636 case CODEC_ID_PCM_S16LE: | |
637 case CODEC_ID_PCM_S16BE: | |
638 case CODEC_ID_PCM_U16LE: | |
639 case CODEC_ID_PCM_U16BE: | |
94 | 640 bitrate = enc->sample_rate * enc->channels * 16; |
92 | 641 break; |
642 case CODEC_ID_PCM_S8: | |
643 case CODEC_ID_PCM_U8: | |
644 case CODEC_ID_PCM_ALAW: | |
645 case CODEC_ID_PCM_MULAW: | |
94 | 646 bitrate = enc->sample_rate * enc->channels * 8; |
92 | 647 break; |
648 default: | |
649 bitrate = enc->bit_rate; | |
650 break; | |
651 } | |
0 | 652 break; |
1582
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
653 case CODEC_TYPE_DATA: |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
654 snprintf(buf, buf_size, "Data: %s", codec_name); |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
655 bitrate = enc->bit_rate; |
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
656 break; |
0 | 657 default: |
583 | 658 av_abort(); |
0 | 659 } |
741 | 660 if (encode) { |
661 if (enc->flags & CODEC_FLAG_PASS1) | |
662 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
663 ", pass 1"); | |
664 if (enc->flags & CODEC_FLAG_PASS2) | |
665 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
666 ", pass 2"); | |
667 } | |
92 | 668 if (bitrate != 0) { |
0 | 669 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
92 | 670 ", %d kb/s", bitrate / 1000); |
0 | 671 } |
672 } | |
673 | |
362 | 674 unsigned avcodec_version( void ) |
675 { | |
676 return LIBAVCODEC_VERSION_INT; | |
677 } | |
55 | 678 |
379 | 679 unsigned avcodec_build( void ) |
680 { | |
681 return LIBAVCODEC_BUILD; | |
682 } | |
683 | |
0 | 684 /* must be called before any other functions */ |
685 void avcodec_init(void) | |
686 { | |
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
687 static int inited = 0; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
688 |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
689 if (inited != 0) |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
690 return; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
691 inited = 1; |
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
692 |
1201 | 693 dsputil_static_init(); |
0 | 694 } |
695 | |
1368 | 696 /** |
697 * Flush buffers, should be called when seeking or when swicthing to a different stream. | |
698 */ | |
341 | 699 void avcodec_flush_buffers(AVCodecContext *avctx) |
700 { | |
1368 | 701 if(avctx->codec->flush) |
702 avctx->codec->flush(avctx); | |
341 | 703 } |
704 | |
1214 | 705 void avcodec_default_free_buffers(AVCodecContext *s){ |
706 int i, j; | |
707 | |
708 if(s->internal_buffer==NULL) return; | |
709 | |
710 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ | |
711 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
712 for(j=0; j<4; j++){ | |
713 av_freep(&buf->base[j]); | |
714 buf->data[j]= NULL; | |
715 } | |
716 } | |
717 av_freep(&s->internal_buffer); | |
718 | |
719 s->internal_buffer_count=0; | |
720 } | |
721 | |
1264 | 722 char av_get_pict_type_char(int pict_type){ |
723 switch(pict_type){ | |
724 case I_TYPE: return 'I'; | |
725 case P_TYPE: return 'P'; | |
726 case B_TYPE: return 'B'; | |
727 case S_TYPE: return 'S'; | |
728 case SI_TYPE:return 'i'; | |
729 case SP_TYPE:return 'p'; | |
730 default: return '?'; | |
731 } | |
732 } | |
733 | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
734 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
|
735 int exact=1, sign=0; |
1549
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
736 int64_t gcd; |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
737 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
738 assert(den != 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
739 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
740 if(den < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
741 den= -den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
742 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
743 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
744 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
745 if(nom < 0){ |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
746 nom= -nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
747 sign= 1; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
748 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
749 |
1549
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
750 gcd = ff_gcd(nom, den); |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
751 nom /= gcd; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
752 den /= gcd; |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
753 |
1549
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
754 if(nom > max || den > max){ |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
755 AVRational a0={0,1}, a1={1,0}; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
756 exact=0; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
757 |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
758 for(;;){ |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
759 int64_t x= nom / den; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
760 int64_t a2n= x*a1.num + a0.num; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
761 int64_t a2d= x*a1.den + a0.den; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
762 |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
763 if(a2n > max || a2d > max) break; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
764 |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
765 nom %= den; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
766 |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
767 a0= a1; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
768 a1= (AVRational){a2n, a2d}; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
769 if(nom==0) break; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
770 x= nom; nom=den; den=x; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
771 } |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
772 nom= a1.num; |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
773 den= a1.den; |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
774 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
775 |
1549
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
776 assert(ff_gcd(nom, den) == 1); |
5e643dd7e889
use continued fractions to approximate a fraction if its numerator or denominator is too large
michael
parents:
1548
diff
changeset
|
777 |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
778 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
|
779 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
780 *dst_nom = nom; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
781 *dst_den = den; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
782 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
783 return exact; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
784 } |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
785 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
786 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
|
787 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
|
788 assert(c > 0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
789 assert(b >=0); |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
790 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
791 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
|
792 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
793 h= a>>32; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
794 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
|
795 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
796 l= a&0xFFFFFFFF; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
797 l *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
798 h *= b; |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
799 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
800 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
|
801 |
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
802 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
|
803 } |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
804 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
805 /* av_log API */ |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
806 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
807 #ifdef AV_LOG_TRAP_PRINTF |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
808 #undef stderr |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
809 #undef fprintf |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
810 #endif |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
811 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
812 static int av_log_level = AV_LOG_DEBUG; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
813 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
814 static void av_log_default_callback(AVCodecContext* avctx, int level, const char* fmt, va_list vl) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
815 { |
1600 | 816 static int print_prefix=1; |
817 | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
818 if(level>av_log_level) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
819 return; |
1600 | 820 if(avctx && print_prefix) |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
821 fprintf(stderr, "[%s @ %p]", avctx->codec->name, avctx); |
1600 | 822 |
823 print_prefix= (int)strstr(fmt, "\n"); | |
824 | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
825 vfprintf(stderr, fmt, vl); |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
826 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
827 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
828 static void (*av_log_callback)(AVCodecContext*, int, const char*, va_list) = av_log_default_callback; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
829 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
830 void av_log(AVCodecContext* avctx, int level, const char *fmt, ...) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
831 { |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
832 va_list vl; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
833 va_start(vl, fmt); |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
834 av_vlog(avctx, level, fmt, vl); |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
835 va_end(vl); |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
836 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
837 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
838 void av_vlog(AVCodecContext* avctx, int level, const char *fmt, va_list vl) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
839 { |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
840 av_log_callback(avctx, level, fmt, vl); |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
841 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
842 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
843 int av_log_get_level(void) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
844 { |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
845 return av_log_level; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
846 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
847 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
848 void av_log_set_level(int level) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
849 { |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
850 av_log_level = level; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
851 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
852 |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
853 void av_log_set_callback(void (*callback)(AVCodecContext*, int, const char*, va_list)) |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
854 { |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
855 av_log_callback = callback; |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
856 } |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
857 |