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