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