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