Mercurial > libavcodec.hg
annotate utils.c @ 1548:dd544554ed42 libavcodec
AVRational
sample_aspect_ratio
aspect ratio in JPEG JFIF is SAR not DAR !
removed nonsense SAR guessing code
various related cleanups
bugs?
| author | michael |
|---|---|
| date | Mon, 20 Oct 2003 20:23:46 +0000 |
| parents | 9c4921a51392 |
| children | 5e643dd7e889 |
| 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 */ |
| 1282 | 87 void av_free_static(void) |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
88 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
89 if (array_static) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
90 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
91 unsigned i; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
92 for (i = 0; i < last_static; i++) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
93 { |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
94 av_free(*array_static[i]); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
95 *array_static[i] = NULL; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
96 } |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
97 av_free(array_static); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
98 array_static = 0; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
99 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
100 last_static = 0; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
101 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
102 |
| 400 | 103 /* cannot call it directly because of 'void **' casting is not automatic */ |
| 104 void __av_freep(void **ptr) | |
| 105 { | |
| 106 av_free(*ptr); | |
| 107 *ptr = NULL; | |
| 108 } | |
| 109 | |
| 0 | 110 /* encoder management */ |
| 111 AVCodec *first_avcodec; | |
| 112 | |
| 113 void register_avcodec(AVCodec *format) | |
| 114 { | |
| 115 AVCodec **p; | |
| 116 p = &first_avcodec; | |
| 117 while (*p != NULL) p = &(*p)->next; | |
| 118 *p = format; | |
| 119 format->next = NULL; | |
| 120 } | |
| 121 | |
| 1214 | 122 typedef struct InternalBuffer{ |
| 903 | 123 int last_pic_num; |
| 1214 | 124 uint8_t *base[4]; |
| 903 | 125 uint8_t *data[4]; |
| 1214 | 126 }InternalBuffer; |
| 127 | |
| 128 #define INTERNAL_BUFFER_SIZE 32 | |
| 903 | 129 |
| 1538 | 130 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1)) |
| 131 | |
| 132 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ | |
| 133 int w_align= 1; | |
| 134 int h_align= 1; | |
| 135 | |
| 136 switch(s->pix_fmt){ | |
| 137 case PIX_FMT_YUV420P: | |
| 138 case PIX_FMT_YUV422: | |
| 139 case PIX_FMT_YUV422P: | |
| 140 case PIX_FMT_YUV444P: | |
| 141 case PIX_FMT_GRAY8: | |
| 142 case PIX_FMT_YUVJ420P: | |
| 143 case PIX_FMT_YUVJ422P: | |
| 144 case PIX_FMT_YUVJ444P: | |
| 145 w_align= 16; //FIXME check for non mpeg style codecs and use less alignment | |
| 146 h_align= 16; | |
| 147 break; | |
| 148 case PIX_FMT_YUV411P: | |
| 149 w_align=32; | |
| 150 h_align=8; | |
| 151 break; | |
| 152 case PIX_FMT_YUV410P: | |
| 153 if(s->codec_id == CODEC_ID_SVQ1){ | |
| 154 w_align=64; | |
| 155 h_align=64; | |
| 156 } | |
| 157 break; | |
| 158 default: | |
| 159 w_align= 1; | |
| 160 h_align= 1; | |
| 161 break; | |
| 162 } | |
| 163 | |
| 164 *width = ALIGN(*width , w_align); | |
| 165 *height= ALIGN(*height, h_align); | |
| 166 } | |
| 167 | |
| 925 | 168 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 169 int i; |
| 1538 | 170 int w= s->width; |
| 171 int h= s->height; | |
| 1214 | 172 InternalBuffer *buf; |
| 924 | 173 |
| 174 assert(pic->data[0]==NULL); | |
| 1214 | 175 assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count); |
| 903 | 176 |
| 1214 | 177 if(s->internal_buffer==NULL){ |
| 178 s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer)); | |
| 179 } | |
| 180 #if 0 | |
| 181 s->internal_buffer= av_fast_realloc( | |
| 182 s->internal_buffer, | |
| 183 &s->internal_buffer_size, | |
| 184 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ | |
| 185 ); | |
| 186 #endif | |
| 187 | |
| 188 buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
| 903 | 189 |
| 1214 | 190 if(buf->base[0]){ |
| 191 pic->age= pic->coded_picture_number - buf->last_pic_num; | |
| 192 buf->last_pic_num= pic->coded_picture_number; | |
| 903 | 193 }else{ |
| 1538 | 194 int h_chroma_shift, v_chroma_shift; |
| 195 int s_align, pixel_size; | |
| 903 | 196 |
| 197 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
| 1538 | 198 |
| 903 | 199 switch(s->pix_fmt){ |
| 1291 | 200 case PIX_FMT_RGB555: |
| 201 case PIX_FMT_RGB565: | |
| 903 | 202 case PIX_FMT_YUV422: |
| 203 pixel_size=2; | |
| 204 break; | |
| 205 case PIX_FMT_RGB24: | |
| 206 case PIX_FMT_BGR24: | |
| 207 pixel_size=3; | |
| 208 break; | |
| 209 case PIX_FMT_RGBA32: | |
| 210 pixel_size=4; | |
| 211 break; | |
| 212 default: | |
| 213 pixel_size=1; | |
| 214 } | |
| 1538 | 215 |
| 216 avcodec_align_dimensions(s, &w, &h); | |
| 217 #if defined(ARCH_POWERPC) || defined(HAVE_MMI) //FIXME some cleaner check | |
| 218 s_align= 16; | |
| 219 #else | |
| 220 s_align= 8; | |
| 221 #endif | |
| 222 | |
| 903 | 223 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
| 224 w+= EDGE_WIDTH*2; | |
| 225 h+= EDGE_WIDTH*2; | |
| 226 } | |
| 227 | |
| 1214 | 228 buf->last_pic_num= -256*256*256*64; |
| 903 | 229 |
| 230 for(i=0; i<3; i++){ | |
| 1165 | 231 const int h_shift= i==0 ? 0 : h_chroma_shift; |
| 232 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
| 903 | 233 |
| 1538 | 234 pic->linesize[i]= ALIGN(pixel_size*w>>h_shift, s_align); |
| 903 | 235 |
| 1214 | 236 buf->base[i]= av_mallocz((pic->linesize[i]*h>>v_shift)+16); //FIXME 16 |
| 237 if(buf->base[i]==NULL) return -1; | |
| 238 memset(buf->base[i], 128, pic->linesize[i]*h>>v_shift); | |
| 903 | 239 |
| 240 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
| 1214 | 241 buf->data[i] = buf->base[i]; |
| 903 | 242 else |
|
1541
9c4921a51392
* original fix still didn't align lines on s_align when CODEC_FLAG_EMU_EDGE
romansh
parents:
1538
diff
changeset
|
243 buf->data[i] = buf->base[i] + ALIGN((pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), s_align); |
| 903 | 244 } |
| 245 pic->age= 256*256*256*64; | |
| 924 | 246 pic->type= FF_BUFFER_TYPE_INTERNAL; |
| 903 | 247 } |
| 248 | |
| 1214 | 249 for(i=0; i<4; i++){ |
| 250 pic->base[i]= buf->base[i]; | |
| 251 pic->data[i]= buf->data[i]; | |
| 252 } | |
| 253 s->internal_buffer_count++; | |
| 254 | |
| 903 | 255 return 0; |
| 256 } | |
| 257 | |
| 925 | 258 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 259 int i; |
| 1214 | 260 InternalBuffer *buf, *last, temp; |
| 261 | |
| 924 | 262 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
| 1396 | 263 assert(s->internal_buffer_count); |
| 1214 | 264 |
| 1455 | 265 buf = NULL; /* avoids warning */ |
| 1214 | 266 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
| 267 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 268 if(buf->data[0] == pic->data[0]) | |
| 269 break; | |
| 270 } | |
| 271 assert(i < s->internal_buffer_count); | |
| 272 s->internal_buffer_count--; | |
| 273 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
| 274 | |
| 275 temp= *buf; | |
| 276 *buf= *last; | |
| 277 *last= temp; | |
| 278 | |
| 279 for(i=0; i<3; i++){ | |
| 903 | 280 pic->data[i]=NULL; |
| 1214 | 281 // pic->base[i]=NULL; |
| 282 } | |
| 903 | 283 //printf("R%X\n", pic->opaque); |
| 284 } | |
| 285 | |
| 998 | 286 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, enum PixelFormat * fmt){ |
| 287 return fmt[0]; | |
| 288 } | |
| 289 | |
| 681 | 290 void avcodec_get_context_defaults(AVCodecContext *s){ |
| 685 | 291 s->bit_rate= 800*1000; |
| 292 s->bit_rate_tolerance= s->bit_rate*10; | |
| 681 | 293 s->qmin= 2; |
| 294 s->qmax= 31; | |
| 932 | 295 s->mb_qmin= 2; |
| 296 s->mb_qmax= 31; | |
| 681 | 297 s->rc_eq= "tex^qComp"; |
| 298 s->qcompress= 0.5; | |
| 685 | 299 s->max_qdiff= 3; |
| 300 s->b_quant_factor=1.25; | |
| 301 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
|
302 s->i_quant_factor=-0.8; |
| 685 | 303 s->i_quant_offset=0.0; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
304 s->error_concealment= 3; |
| 762 | 305 s->error_resilience= 1; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
306 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
|
307 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
|
308 s->frame_rate = 25; |
| 762 | 309 s->gop_size= 50; |
| 310 s->me_method= ME_EPZS; | |
| 903 | 311 s->get_buffer= avcodec_default_get_buffer; |
| 312 s->release_buffer= avcodec_default_release_buffer; | |
| 998 | 313 s->get_format= avcodec_default_get_format; |
| 954 | 314 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
|
315 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
|
316 s->lmax= FF_QP2LAMBDA * s->qmax; |
| 1548 | 317 s->sample_aspect_ratio= (AVRational){0,1}; |
| 1150 | 318 |
| 319 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
| 320 s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
| 681 | 321 } |
| 322 | |
| 323 /** | |
| 324 * allocates a AVCodecContext and set it to defaults. | |
| 325 * this can be deallocated by simply calling free() | |
| 326 */ | |
| 703 | 327 AVCodecContext *avcodec_alloc_context(void){ |
| 681 | 328 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
| 329 | |
| 330 if(avctx==NULL) return NULL; | |
| 331 | |
| 332 avcodec_get_context_defaults(avctx); | |
| 333 | |
| 334 return avctx; | |
| 335 } | |
| 336 | |
| 903 | 337 /** |
| 925 | 338 * allocates a AVPFrame and set it to defaults. |
| 903 | 339 * this can be deallocated by simply calling free() |
| 340 */ | |
| 925 | 341 AVFrame *avcodec_alloc_frame(void){ |
| 342 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
| 903 | 343 |
| 344 return pic; | |
| 345 } | |
| 346 | |
| 0 | 347 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 348 { | |
| 349 int ret; | |
| 350 | |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
351 if(avctx->codec) |
|
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
352 return -1; |
|
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
353 |
| 0 | 354 avctx->codec = codec; |
| 927 | 355 avctx->codec_id = codec->id; |
| 0 | 356 avctx->frame_number = 0; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
357 if (codec->priv_data_size > 0) { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
358 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
|
359 if (!avctx->priv_data) |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
360 return -ENOMEM; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
361 } else { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
362 avctx->priv_data = NULL; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
363 } |
| 0 | 364 ret = avctx->codec->init(avctx); |
| 365 if (ret < 0) { | |
| 394 | 366 av_freep(&avctx->priv_data); |
| 0 | 367 return ret; |
| 368 } | |
| 369 return 0; | |
| 370 } | |
| 371 | |
| 1064 | 372 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 0 | 373 const short *samples) |
| 374 { | |
| 375 int ret; | |
| 376 | |
| 377 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
| 378 avctx->frame_number++; | |
| 379 return ret; | |
| 380 } | |
| 381 | |
| 1064 | 382 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 925 | 383 const AVFrame *pict) |
| 0 | 384 { |
| 385 int ret; | |
| 386 | |
| 387 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
| 814 | 388 |
| 389 emms_c(); //needed to avoid a emms_c() call before every return; | |
| 390 | |
| 0 | 391 avctx->frame_number++; |
| 392 return ret; | |
| 393 } | |
| 394 | |
| 1249 | 395 /** |
| 396 * decode a frame. | |
| 397 * @param buf bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE larger then the actual read bytes | |
| 398 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end | |
| 399 * @param buf_size the size of the buffer in bytes | |
| 400 * @param got_picture_ptr zero if no frame could be decompressed, Otherwise, it is non zero | |
| 401 * @return -1 if error, otherwise return the number of | |
| 402 * bytes used. | |
| 403 */ | |
| 925 | 404 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
| 0 | 405 int *got_picture_ptr, |
| 1064 | 406 uint8_t *buf, int buf_size) |
| 0 | 407 { |
| 408 int ret; | |
| 903 | 409 |
| 0 | 410 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
| 411 buf, buf_size); | |
| 814 | 412 |
| 413 emms_c(); //needed to avoid a emms_c() call before every return; | |
| 903 | 414 |
|
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
415 if (*got_picture_ptr) |
|
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
416 avctx->frame_number++; |
| 0 | 417 return ret; |
| 418 } | |
| 419 | |
| 420 /* decode an audio frame. return -1 if error, otherwise return the | |
| 421 *number of bytes used. If no frame could be decompressed, | |
| 422 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
| 423 *size in BYTES. */ | |
| 1064 | 424 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
| 0 | 425 int *frame_size_ptr, |
| 1064 | 426 uint8_t *buf, int buf_size) |
| 0 | 427 { |
| 428 int ret; | |
| 429 | |
| 430 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
| 431 buf, buf_size); | |
| 432 avctx->frame_number++; | |
| 433 return ret; | |
| 434 } | |
| 435 | |
| 436 int avcodec_close(AVCodecContext *avctx) | |
| 437 { | |
| 438 if (avctx->codec->close) | |
| 439 avctx->codec->close(avctx); | |
| 394 | 440 av_freep(&avctx->priv_data); |
| 0 | 441 avctx->codec = NULL; |
| 442 return 0; | |
| 443 } | |
| 444 | |
| 445 AVCodec *avcodec_find_encoder(enum CodecID id) | |
| 446 { | |
| 447 AVCodec *p; | |
| 448 p = first_avcodec; | |
| 449 while (p) { | |
| 450 if (p->encode != NULL && p->id == id) | |
| 451 return p; | |
| 452 p = p->next; | |
| 453 } | |
| 454 return NULL; | |
| 455 } | |
| 456 | |
| 177 | 457 AVCodec *avcodec_find_encoder_by_name(const char *name) |
| 458 { | |
| 459 AVCodec *p; | |
| 460 p = first_avcodec; | |
| 461 while (p) { | |
| 462 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
| 463 return p; | |
| 464 p = p->next; | |
| 465 } | |
| 466 return NULL; | |
| 467 } | |
| 468 | |
| 0 | 469 AVCodec *avcodec_find_decoder(enum CodecID id) |
| 470 { | |
| 471 AVCodec *p; | |
| 472 p = first_avcodec; | |
| 473 while (p) { | |
| 474 if (p->decode != NULL && p->id == id) | |
| 475 return p; | |
| 476 p = p->next; | |
| 477 } | |
| 478 return NULL; | |
| 479 } | |
| 480 | |
| 481 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
| 482 { | |
| 483 AVCodec *p; | |
| 484 p = first_avcodec; | |
| 485 while (p) { | |
| 486 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
| 487 return p; | |
| 488 p = p->next; | |
| 489 } | |
| 490 return NULL; | |
| 491 } | |
| 492 | |
| 493 AVCodec *avcodec_find(enum CodecID id) | |
| 494 { | |
| 495 AVCodec *p; | |
| 496 p = first_avcodec; | |
| 497 while (p) { | |
| 498 if (p->id == id) | |
| 499 return p; | |
| 500 p = p->next; | |
| 501 } | |
| 502 return NULL; | |
| 503 } | |
| 504 | |
| 505 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
| 506 { | |
| 507 const char *codec_name; | |
| 508 AVCodec *p; | |
| 509 char buf1[32]; | |
| 337 | 510 char channels_str[100]; |
| 92 | 511 int bitrate; |
| 0 | 512 |
| 513 if (encode) | |
| 514 p = avcodec_find_encoder(enc->codec_id); | |
| 515 else | |
| 516 p = avcodec_find_decoder(enc->codec_id); | |
| 517 | |
| 518 if (p) { | |
| 519 codec_name = p->name; | |
|
1449
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
520 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
|
521 if (enc->sub_id == 2) |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
522 codec_name = "mp2"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
523 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
|
524 codec_name = "mp1"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
525 } |
| 0 | 526 } else if (enc->codec_name[0] != '\0') { |
| 527 codec_name = enc->codec_name; | |
| 528 } else { | |
| 529 /* output avi tags */ | |
| 530 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
| 531 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
| 532 enc->codec_tag & 0xff, | |
| 533 (enc->codec_tag >> 8) & 0xff, | |
| 534 (enc->codec_tag >> 16) & 0xff, | |
| 535 (enc->codec_tag >> 24) & 0xff); | |
| 536 } else { | |
| 537 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
| 538 } | |
| 539 codec_name = buf1; | |
| 540 } | |
| 541 | |
| 542 switch(enc->codec_type) { | |
| 543 case CODEC_TYPE_VIDEO: | |
| 544 snprintf(buf, buf_size, | |
| 545 "Video: %s%s", | |
| 1389 | 546 codec_name, enc->mb_decision ? " (hq)" : ""); |
| 55 | 547 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
| 548 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 549 ", %s", | |
|
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
550 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
| 55 | 551 } |
| 0 | 552 if (enc->width) { |
| 553 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 554 ", %dx%d, %0.2f fps", | |
| 555 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
|
556 (float)enc->frame_rate / enc->frame_rate_base); |
| 0 | 557 } |
| 741 | 558 if (encode) { |
| 559 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 560 ", q=%d-%d", enc->qmin, enc->qmax); | |
| 561 } | |
| 92 | 562 bitrate = enc->bit_rate; |
| 0 | 563 break; |
| 564 case CODEC_TYPE_AUDIO: | |
| 565 snprintf(buf, buf_size, | |
| 566 "Audio: %s", | |
| 567 codec_name); | |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
568 switch (enc->channels) { |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
569 case 1: |
| 337 | 570 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
|
571 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
572 case 2: |
| 337 | 573 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
|
574 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
575 case 6: |
| 337 | 576 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
|
577 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
578 default: |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
579 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
|
580 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
581 } |
| 0 | 582 if (enc->sample_rate) { |
| 583 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 584 ", %d Hz, %s", | |
| 585 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
|
586 channels_str); |
| 0 | 587 } |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
588 |
| 92 | 589 /* for PCM codecs, compute bitrate directly */ |
| 590 switch(enc->codec_id) { | |
| 591 case CODEC_ID_PCM_S16LE: | |
| 592 case CODEC_ID_PCM_S16BE: | |
| 593 case CODEC_ID_PCM_U16LE: | |
| 594 case CODEC_ID_PCM_U16BE: | |
| 94 | 595 bitrate = enc->sample_rate * enc->channels * 16; |
| 92 | 596 break; |
| 597 case CODEC_ID_PCM_S8: | |
| 598 case CODEC_ID_PCM_U8: | |
| 599 case CODEC_ID_PCM_ALAW: | |
| 600 case CODEC_ID_PCM_MULAW: | |
| 94 | 601 bitrate = enc->sample_rate * enc->channels * 8; |
| 92 | 602 break; |
| 603 default: | |
| 604 bitrate = enc->bit_rate; | |
| 605 break; | |
| 606 } | |
| 0 | 607 break; |
| 608 default: | |
| 583 | 609 av_abort(); |
| 0 | 610 } |
| 741 | 611 if (encode) { |
| 612 if (enc->flags & CODEC_FLAG_PASS1) | |
| 613 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 614 ", pass 1"); | |
| 615 if (enc->flags & CODEC_FLAG_PASS2) | |
| 616 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 617 ", pass 2"); | |
| 618 } | |
| 92 | 619 if (bitrate != 0) { |
| 0 | 620 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 92 | 621 ", %d kb/s", bitrate / 1000); |
| 0 | 622 } |
| 623 } | |
| 624 | |
| 362 | 625 unsigned avcodec_version( void ) |
| 626 { | |
| 627 return LIBAVCODEC_VERSION_INT; | |
| 628 } | |
| 55 | 629 |
| 379 | 630 unsigned avcodec_build( void ) |
| 631 { | |
| 632 return LIBAVCODEC_BUILD; | |
| 633 } | |
| 634 | |
| 0 | 635 /* must be called before any other functions */ |
| 636 void avcodec_init(void) | |
| 637 { | |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
638 static int inited = 0; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
639 |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
640 if (inited != 0) |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
641 return; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
642 inited = 1; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
643 |
| 1201 | 644 dsputil_static_init(); |
| 0 | 645 } |
| 646 | |
| 1368 | 647 /** |
| 648 * Flush buffers, should be called when seeking or when swicthing to a different stream. | |
| 649 */ | |
| 341 | 650 void avcodec_flush_buffers(AVCodecContext *avctx) |
| 651 { | |
| 1368 | 652 if(avctx->codec->flush) |
| 653 avctx->codec->flush(avctx); | |
| 341 | 654 } |
| 655 | |
| 1214 | 656 void avcodec_default_free_buffers(AVCodecContext *s){ |
| 657 int i, j; | |
| 658 | |
| 659 if(s->internal_buffer==NULL) return; | |
| 660 | |
| 661 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ | |
| 662 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 663 for(j=0; j<4; j++){ | |
| 664 av_freep(&buf->base[j]); | |
| 665 buf->data[j]= NULL; | |
| 666 } | |
| 667 } | |
| 668 av_freep(&s->internal_buffer); | |
| 669 | |
| 670 s->internal_buffer_count=0; | |
| 671 } | |
| 672 | |
| 1264 | 673 char av_get_pict_type_char(int pict_type){ |
| 674 switch(pict_type){ | |
| 675 case I_TYPE: return 'I'; | |
| 676 case P_TYPE: return 'P'; | |
| 677 case B_TYPE: return 'B'; | |
| 678 case S_TYPE: return 'S'; | |
| 679 case SI_TYPE:return 'i'; | |
| 680 case SP_TYPE:return 'p'; | |
| 681 default: return '?'; | |
| 682 } | |
| 683 } | |
| 684 | |
|
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
685 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
|
686 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
|
687 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
|
688 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
689 assert(den != 0); |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
690 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
691 if(den < 0){ |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
692 den= -den; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
693 nom= -nom; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
694 } |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
695 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
696 if(nom < 0){ |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
697 nom= -nom; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
698 sign= 1; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
699 } |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
700 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
701 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
|
702 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
|
703 nom /= gcd; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
704 den /= gcd; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
705 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
706 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
|
707 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
708 if(larger > max){ |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
709 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
|
710 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
|
711 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
|
712 exact=0; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
713 }else |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
714 break; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
715 } |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
716 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
717 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
|
718 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
719 *dst_nom = nom; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
720 *dst_den = den; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
721 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
722 return exact; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
723 } |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
724 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
725 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
|
726 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
|
727 assert(c > 0); |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
728 assert(b >=0); |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
729 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
730 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
|
731 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
732 h= a>>32; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
733 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
|
734 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
735 l= a&0xFFFFFFFF; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
736 l *= b; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
737 h *= b; |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
738 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
739 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
|
740 |
|
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
741 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
|
742 } |
