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