Mercurial > libavcodec.hg
annotate utils.c @ 1106:1e39f273ecd6 libavcodec
per file doxy
| author | michaelni |
|---|---|
| date | Thu, 06 Mar 2003 11:32:04 +0000 |
| parents | b32afefe7d33 |
| children | 77ccf7fe3bd0 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * utils for libavcodec | |
| 429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
| 0 | 4 * |
| 429 | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Lesser General Public | |
| 7 * License as published by the Free Software Foundation; either | |
| 8 * version 2 of the License, or (at your option) any later version. | |
| 0 | 9 * |
| 429 | 10 * This library is distributed in the hope that it will be useful, |
| 0 | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Lesser General Public License for more details. | |
| 0 | 14 * |
| 429 | 15 * You should have received a copy of the GNU Lesser General Public |
| 16 * License along with this library; if not, write to the Free Software | |
| 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 0 | 18 */ |
| 1106 | 19 |
| 20 /** | |
| 21 * @file utils.c | |
| 22 * utils. | |
| 23 */ | |
| 24 | |
| 394 | 25 #include "avcodec.h" |
| 0 | 26 #include "dsputil.h" |
| 341 | 27 #include "mpegvideo.h" |
| 0 | 28 |
| 862 | 29 void *av_mallocz(unsigned int size) |
| 394 | 30 { |
| 31 void *ptr; | |
| 908 | 32 |
| 394 | 33 ptr = av_malloc(size); |
| 34 if (!ptr) | |
| 35 return NULL; | |
| 36 memset(ptr, 0, size); | |
| 37 return ptr; | |
| 38 } | |
| 39 | |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
40 char *av_strdup(const char *s) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
41 { |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
42 char *ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
43 int len; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
44 len = strlen(s) + 1; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
45 ptr = av_malloc(len); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
46 if (!ptr) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
47 return NULL; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
48 memcpy(ptr, s, len); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
49 return ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
50 } |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
51 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
52 /** |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
53 * realloc which does nothing if the block is large enough |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
54 */ |
| 1057 | 55 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size) |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
56 { |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
57 if(min_size < *size) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
58 return ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
59 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
60 *size= min_size + 10*1024; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
61 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
62 return av_realloc(ptr, *size); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
63 } |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
64 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
65 |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
66 /* allocation of static arrays - do not use for normal allocation */ |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
67 static unsigned int last_static = 0; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
68 static char*** array_static = NULL; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
69 static const unsigned int grow_static = 64; // ^2 |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
70 void *__av_mallocz_static(void** location, unsigned int size) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
71 { |
| 1057 | 72 unsigned int l = (last_static + grow_static) & ~(grow_static - 1); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
73 void *ptr = av_mallocz(size); |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
74 if (!ptr) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
75 return NULL; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
76 |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
77 if (location) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
78 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
79 if (l > last_static) |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
80 array_static = av_realloc(array_static, l); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
81 array_static[last_static++] = (char**) location; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
82 *location = ptr; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
83 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
84 return ptr; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
85 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
86 /* free all static arrays and reset pointers to 0 */ |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
87 void av_free_static() |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
88 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
89 if (array_static) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
90 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
91 unsigned i; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
92 for (i = 0; i < last_static; i++) |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
93 { |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
94 av_free(*array_static[i]); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
95 *array_static[i] = NULL; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
96 } |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
97 av_free(array_static); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
98 array_static = 0; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
99 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
100 last_static = 0; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
101 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
102 |
| 400 | 103 /* cannot call it directly because of 'void **' casting is not automatic */ |
| 104 void __av_freep(void **ptr) | |
| 105 { | |
| 106 av_free(*ptr); | |
| 107 *ptr = NULL; | |
| 108 } | |
| 109 | |
| 0 | 110 /* encoder management */ |
| 111 AVCodec *first_avcodec; | |
| 112 | |
| 113 void register_avcodec(AVCodec *format) | |
| 114 { | |
| 115 AVCodec **p; | |
| 116 p = &first_avcodec; | |
| 117 while (*p != NULL) p = &(*p)->next; | |
| 118 *p = format; | |
| 119 format->next = NULL; | |
| 120 } | |
| 121 | |
| 903 | 122 typedef struct DefaultPicOpaque{ |
| 123 int last_pic_num; | |
| 124 uint8_t *data[4]; | |
| 125 }DefaultPicOpaque; | |
| 126 | |
| 925 | 127 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 128 int i; |
| 129 const int width = s->width; | |
| 130 const int height= s->height; | |
| 131 DefaultPicOpaque *opaque; | |
| 924 | 132 |
| 133 assert(pic->data[0]==NULL); | |
| 134 assert(pic->type==0 || pic->type==FF_TYPE_INTERNAL); | |
| 903 | 135 |
| 136 if(pic->opaque){ | |
| 137 opaque= (DefaultPicOpaque *)pic->opaque; | |
| 138 for(i=0; i<3; i++) | |
| 139 pic->data[i]= opaque->data[i]; | |
| 140 | |
| 141 // printf("get_buffer %X coded_pic_num:%d last:%d\n", pic->opaque, pic->coded_picture_number, opaque->last_pic_num); | |
| 142 pic->age= pic->coded_picture_number - opaque->last_pic_num; | |
| 143 opaque->last_pic_num= pic->coded_picture_number; | |
| 144 //printf("age: %d %d %d\n", pic->age, c->picture_number, pic->coded_picture_number); | |
| 145 }else{ | |
| 146 int align, h_chroma_shift, v_chroma_shift; | |
| 147 int w, h, pixel_size; | |
| 148 | |
| 149 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
| 150 | |
| 151 switch(s->pix_fmt){ | |
| 152 case PIX_FMT_YUV422: | |
| 153 pixel_size=2; | |
| 154 break; | |
| 155 case PIX_FMT_RGB24: | |
| 156 case PIX_FMT_BGR24: | |
| 157 pixel_size=3; | |
| 158 break; | |
| 159 case PIX_FMT_RGBA32: | |
| 160 pixel_size=4; | |
| 161 break; | |
| 162 default: | |
| 163 pixel_size=1; | |
| 164 } | |
| 165 | |
| 166 if(s->codec_id==CODEC_ID_SVQ1) align=63; | |
| 167 else align=15; | |
| 168 | |
| 169 w= (width +align)&~align; | |
| 170 h= (height+align)&~align; | |
| 171 | |
| 172 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ | |
| 173 w+= EDGE_WIDTH*2; | |
| 174 h+= EDGE_WIDTH*2; | |
| 175 } | |
| 176 | |
| 177 opaque= av_mallocz(sizeof(DefaultPicOpaque)); | |
| 178 if(opaque==NULL) return -1; | |
| 179 | |
| 180 pic->opaque= opaque; | |
| 181 opaque->last_pic_num= -256*256*256*64; | |
| 182 | |
| 183 for(i=0; i<3; i++){ | |
| 184 int h_shift= i==0 ? 0 : h_chroma_shift; | |
| 185 int v_shift= i==0 ? 0 : v_chroma_shift; | |
| 186 | |
| 187 pic->linesize[i]= pixel_size*w>>h_shift; | |
| 188 | |
| 189 pic->base[i]= av_mallocz((pic->linesize[i]*h>>v_shift)+16); //FIXME 16 | |
| 190 if(pic->base[i]==NULL) return -1; | |
| 191 | |
| 192 memset(pic->base[i], 128, pic->linesize[i]*h>>v_shift); | |
| 193 | |
| 194 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
| 924 | 195 pic->data[i] = pic->base[i] + 16; //FIXME 16 |
| 903 | 196 else |
| 924 | 197 pic->data[i] = pic->base[i] + (pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift) + 16; //FIXME 16 |
| 903 | 198 |
| 199 opaque->data[i]= pic->data[i]; | |
| 200 } | |
| 201 pic->age= 256*256*256*64; | |
| 924 | 202 pic->type= FF_BUFFER_TYPE_INTERNAL; |
| 903 | 203 } |
| 204 | |
| 205 return 0; | |
| 206 } | |
| 207 | |
| 925 | 208 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 209 int i; |
| 210 | |
| 924 | 211 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
| 212 | |
| 903 | 213 for(i=0; i<3; i++) |
| 214 pic->data[i]=NULL; | |
| 215 //printf("R%X\n", pic->opaque); | |
| 216 } | |
| 217 | |
| 998 | 218 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, enum PixelFormat * fmt){ |
| 219 return fmt[0]; | |
| 220 } | |
| 221 | |
| 681 | 222 void avcodec_get_context_defaults(AVCodecContext *s){ |
| 685 | 223 s->bit_rate= 800*1000; |
| 224 s->bit_rate_tolerance= s->bit_rate*10; | |
| 681 | 225 s->qmin= 2; |
| 226 s->qmax= 31; | |
| 932 | 227 s->mb_qmin= 2; |
| 228 s->mb_qmax= 31; | |
| 681 | 229 s->rc_eq= "tex^qComp"; |
| 230 s->qcompress= 0.5; | |
| 685 | 231 s->max_qdiff= 3; |
| 232 s->b_quant_factor=1.25; | |
| 233 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
|
234 s->i_quant_factor=-0.8; |
| 685 | 235 s->i_quant_offset=0.0; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
236 s->error_concealment= 3; |
| 762 | 237 s->error_resilience= 1; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
238 s->workaround_bugs= FF_BUG_AUTODETECT; |
| 762 | 239 s->frame_rate = 25 * FRAME_RATE_BASE; |
| 240 s->gop_size= 50; | |
| 241 s->me_method= ME_EPZS; | |
| 903 | 242 s->get_buffer= avcodec_default_get_buffer; |
| 243 s->release_buffer= avcodec_default_release_buffer; | |
| 998 | 244 s->get_format= avcodec_default_get_format; |
| 954 | 245 s->me_subpel_quality=8; |
| 681 | 246 } |
| 247 | |
| 248 /** | |
| 249 * allocates a AVCodecContext and set it to defaults. | |
| 250 * this can be deallocated by simply calling free() | |
| 251 */ | |
| 703 | 252 AVCodecContext *avcodec_alloc_context(void){ |
| 681 | 253 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); |
| 254 | |
| 255 if(avctx==NULL) return NULL; | |
| 256 | |
| 257 avcodec_get_context_defaults(avctx); | |
| 258 | |
| 259 return avctx; | |
| 260 } | |
| 261 | |
| 903 | 262 /** |
| 925 | 263 * allocates a AVPFrame and set it to defaults. |
| 903 | 264 * this can be deallocated by simply calling free() |
| 265 */ | |
| 925 | 266 AVFrame *avcodec_alloc_frame(void){ |
| 267 AVFrame *pic= av_mallocz(sizeof(AVFrame)); | |
| 903 | 268 |
| 269 return pic; | |
| 270 } | |
| 271 | |
| 0 | 272 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 273 { | |
| 274 int ret; | |
| 275 | |
| 276 avctx->codec = codec; | |
| 927 | 277 avctx->codec_id = codec->id; |
| 0 | 278 avctx->frame_number = 0; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
279 if (codec->priv_data_size > 0) { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
280 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
|
281 if (!avctx->priv_data) |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
282 return -ENOMEM; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
283 } else { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
284 avctx->priv_data = NULL; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
285 } |
| 0 | 286 ret = avctx->codec->init(avctx); |
| 287 if (ret < 0) { | |
| 394 | 288 av_freep(&avctx->priv_data); |
| 0 | 289 return ret; |
| 290 } | |
| 291 return 0; | |
| 292 } | |
| 293 | |
| 1064 | 294 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 0 | 295 const short *samples) |
| 296 { | |
| 297 int ret; | |
| 298 | |
| 299 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
| 300 avctx->frame_number++; | |
| 301 return ret; | |
| 302 } | |
| 303 | |
| 1064 | 304 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 925 | 305 const AVFrame *pict) |
| 0 | 306 { |
| 307 int ret; | |
| 308 | |
| 309 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
| 814 | 310 |
| 311 emms_c(); //needed to avoid a emms_c() call before every return; | |
| 312 | |
| 0 | 313 avctx->frame_number++; |
| 314 return ret; | |
| 315 } | |
| 316 | |
| 317 /* decode a frame. return -1 if error, otherwise return the number of | |
| 318 bytes used. If no frame could be decompressed, *got_picture_ptr is | |
| 319 zero. Otherwise, it is non zero */ | |
| 925 | 320 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
| 0 | 321 int *got_picture_ptr, |
| 1064 | 322 uint8_t *buf, int buf_size) |
| 0 | 323 { |
| 324 int ret; | |
| 903 | 325 |
| 0 | 326 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
| 327 buf, buf_size); | |
| 814 | 328 |
| 329 emms_c(); //needed to avoid a emms_c() call before every return; | |
| 903 | 330 |
|
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
331 if (*got_picture_ptr) |
|
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
260
diff
changeset
|
332 avctx->frame_number++; |
| 0 | 333 return ret; |
| 334 } | |
| 335 | |
| 336 /* decode an audio frame. return -1 if error, otherwise return the | |
| 337 *number of bytes used. If no frame could be decompressed, | |
| 338 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
| 339 *size in BYTES. */ | |
| 1064 | 340 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
| 0 | 341 int *frame_size_ptr, |
| 1064 | 342 uint8_t *buf, int buf_size) |
| 0 | 343 { |
| 344 int ret; | |
| 345 | |
| 346 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
| 347 buf, buf_size); | |
| 348 avctx->frame_number++; | |
| 349 return ret; | |
| 350 } | |
| 351 | |
| 352 int avcodec_close(AVCodecContext *avctx) | |
| 353 { | |
| 354 if (avctx->codec->close) | |
| 355 avctx->codec->close(avctx); | |
| 394 | 356 av_freep(&avctx->priv_data); |
| 0 | 357 avctx->codec = NULL; |
| 358 return 0; | |
| 359 } | |
| 360 | |
| 361 AVCodec *avcodec_find_encoder(enum CodecID id) | |
| 362 { | |
| 363 AVCodec *p; | |
| 364 p = first_avcodec; | |
| 365 while (p) { | |
| 366 if (p->encode != NULL && p->id == id) | |
| 367 return p; | |
| 368 p = p->next; | |
| 369 } | |
| 370 return NULL; | |
| 371 } | |
| 372 | |
| 177 | 373 AVCodec *avcodec_find_encoder_by_name(const char *name) |
| 374 { | |
| 375 AVCodec *p; | |
| 376 p = first_avcodec; | |
| 377 while (p) { | |
| 378 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
| 379 return p; | |
| 380 p = p->next; | |
| 381 } | |
| 382 return NULL; | |
| 383 } | |
| 384 | |
| 0 | 385 AVCodec *avcodec_find_decoder(enum CodecID id) |
| 386 { | |
| 387 AVCodec *p; | |
| 388 p = first_avcodec; | |
| 389 while (p) { | |
| 390 if (p->decode != NULL && p->id == id) | |
| 391 return p; | |
| 392 p = p->next; | |
| 393 } | |
| 394 return NULL; | |
| 395 } | |
| 396 | |
| 397 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
| 398 { | |
| 399 AVCodec *p; | |
| 400 p = first_avcodec; | |
| 401 while (p) { | |
| 402 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
| 403 return p; | |
| 404 p = p->next; | |
| 405 } | |
| 406 return NULL; | |
| 407 } | |
| 408 | |
| 409 AVCodec *avcodec_find(enum CodecID id) | |
| 410 { | |
| 411 AVCodec *p; | |
| 412 p = first_avcodec; | |
| 413 while (p) { | |
| 414 if (p->id == id) | |
| 415 return p; | |
| 416 p = p->next; | |
| 417 } | |
| 418 return NULL; | |
| 419 } | |
| 420 | |
| 421 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
| 422 { | |
| 423 const char *codec_name; | |
| 424 AVCodec *p; | |
| 425 char buf1[32]; | |
| 337 | 426 char channels_str[100]; |
| 92 | 427 int bitrate; |
| 0 | 428 |
| 429 if (encode) | |
| 430 p = avcodec_find_encoder(enc->codec_id); | |
| 431 else | |
| 432 p = avcodec_find_decoder(enc->codec_id); | |
| 433 | |
| 434 if (p) { | |
| 435 codec_name = p->name; | |
| 436 } else if (enc->codec_name[0] != '\0') { | |
| 437 codec_name = enc->codec_name; | |
| 438 } else { | |
| 439 /* output avi tags */ | |
| 440 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
| 441 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
| 442 enc->codec_tag & 0xff, | |
| 443 (enc->codec_tag >> 8) & 0xff, | |
| 444 (enc->codec_tag >> 16) & 0xff, | |
| 445 (enc->codec_tag >> 24) & 0xff); | |
| 446 } else { | |
| 447 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
| 448 } | |
| 449 codec_name = buf1; | |
| 450 } | |
| 451 | |
| 452 switch(enc->codec_type) { | |
| 453 case CODEC_TYPE_VIDEO: | |
| 454 snprintf(buf, buf_size, | |
| 455 "Video: %s%s", | |
| 456 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : ""); | |
| 55 | 457 if (enc->codec_id == CODEC_ID_RAWVIDEO) { |
| 458 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 459 ", %s", | |
|
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
460 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
| 55 | 461 } |
| 0 | 462 if (enc->width) { |
| 463 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 464 ", %dx%d, %0.2f fps", | |
| 465 enc->width, enc->height, | |
| 466 (float)enc->frame_rate / FRAME_RATE_BASE); | |
| 467 } | |
| 741 | 468 if (encode) { |
| 469 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 470 ", q=%d-%d", enc->qmin, enc->qmax); | |
| 471 } | |
| 92 | 472 bitrate = enc->bit_rate; |
| 0 | 473 break; |
| 474 case CODEC_TYPE_AUDIO: | |
| 475 snprintf(buf, buf_size, | |
| 476 "Audio: %s", | |
| 477 codec_name); | |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
478 switch (enc->channels) { |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
479 case 1: |
| 337 | 480 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
|
481 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
482 case 2: |
| 337 | 483 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
|
484 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
485 case 6: |
| 337 | 486 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
|
487 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
488 default: |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
489 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
|
490 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
491 } |
| 0 | 492 if (enc->sample_rate) { |
| 493 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 494 ", %d Hz, %s", | |
| 495 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
|
496 channels_str); |
| 0 | 497 } |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
498 |
| 92 | 499 /* for PCM codecs, compute bitrate directly */ |
| 500 switch(enc->codec_id) { | |
| 501 case CODEC_ID_PCM_S16LE: | |
| 502 case CODEC_ID_PCM_S16BE: | |
| 503 case CODEC_ID_PCM_U16LE: | |
| 504 case CODEC_ID_PCM_U16BE: | |
| 94 | 505 bitrate = enc->sample_rate * enc->channels * 16; |
| 92 | 506 break; |
| 507 case CODEC_ID_PCM_S8: | |
| 508 case CODEC_ID_PCM_U8: | |
| 509 case CODEC_ID_PCM_ALAW: | |
| 510 case CODEC_ID_PCM_MULAW: | |
| 94 | 511 bitrate = enc->sample_rate * enc->channels * 8; |
| 92 | 512 break; |
| 513 default: | |
| 514 bitrate = enc->bit_rate; | |
| 515 break; | |
| 516 } | |
| 0 | 517 break; |
| 518 default: | |
| 583 | 519 av_abort(); |
| 0 | 520 } |
| 741 | 521 if (encode) { |
| 522 if (enc->flags & CODEC_FLAG_PASS1) | |
| 523 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 524 ", pass 1"); | |
| 525 if (enc->flags & CODEC_FLAG_PASS2) | |
| 526 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 527 ", pass 2"); | |
| 528 } | |
| 92 | 529 if (bitrate != 0) { |
| 0 | 530 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 92 | 531 ", %d kb/s", bitrate / 1000); |
| 0 | 532 } |
| 533 } | |
| 534 | |
| 362 | 535 unsigned avcodec_version( void ) |
| 536 { | |
| 537 return LIBAVCODEC_VERSION_INT; | |
| 538 } | |
| 55 | 539 |
| 379 | 540 unsigned avcodec_build( void ) |
| 541 { | |
| 542 return LIBAVCODEC_BUILD; | |
| 543 } | |
| 544 | |
| 0 | 545 /* must be called before any other functions */ |
| 546 void avcodec_init(void) | |
| 547 { | |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
548 static int inited = 0; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
549 |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
550 if (inited != 0) |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
551 return; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
552 inited = 1; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
553 |
| 851 | 554 //dsputil_init(); |
| 0 | 555 } |
| 556 | |
| 924 | 557 /* this can be called after seeking and before trying to decode the next keyframe */ |
| 341 | 558 void avcodec_flush_buffers(AVCodecContext *avctx) |
| 559 { | |
| 924 | 560 int i; |
| 341 | 561 MpegEncContext *s = avctx->priv_data; |
| 924 | 562 |
| 563 switch(avctx->codec_id){ | |
| 564 case CODEC_ID_MPEG1VIDEO: | |
| 565 case CODEC_ID_H263: | |
| 566 case CODEC_ID_RV10: | |
| 567 case CODEC_ID_MJPEG: | |
| 568 case CODEC_ID_MJPEGB: | |
| 569 case CODEC_ID_MPEG4: | |
| 570 case CODEC_ID_MSMPEG4V1: | |
| 571 case CODEC_ID_MSMPEG4V2: | |
| 572 case CODEC_ID_MSMPEG4V3: | |
| 573 case CODEC_ID_WMV1: | |
| 574 case CODEC_ID_WMV2: | |
| 575 case CODEC_ID_H263P: | |
| 576 case CODEC_ID_H263I: | |
| 577 case CODEC_ID_SVQ1: | |
| 578 for(i=0; i<MAX_PICTURE_COUNT; i++){ | |
| 579 if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL | |
| 580 || s->picture[i].type == FF_BUFFER_TYPE_USER)) | |
| 925 | 581 avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]); |
| 963 | 582 } |
| 583 s->last_picture.data[0] = s->next_picture.data[0] = NULL; | |
| 924 | 584 break; |
| 585 default: | |
| 586 //FIXME | |
| 587 break; | |
| 588 } | |
| 341 | 589 } |
| 590 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
591 static int raw_encode_init(AVCodecContext *s) |
| 0 | 592 { |
| 593 return 0; | |
| 594 } | |
| 595 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
596 static int raw_decode_frame(AVCodecContext *avctx, |
|
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
597 void *data, int *data_size, |
| 1064 | 598 uint8_t *buf, int buf_size) |
| 0 | 599 { |
| 600 return -1; | |
| 601 } | |
| 602 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
603 static int raw_encode_frame(AVCodecContext *avctx, |
|
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
604 unsigned char *frame, int buf_size, void *data) |
| 0 | 605 { |
| 606 return -1; | |
| 607 } | |
| 608 | |
| 609 AVCodec rawvideo_codec = { | |
| 610 "rawvideo", | |
| 611 CODEC_TYPE_VIDEO, | |
| 612 CODEC_ID_RAWVIDEO, | |
| 613 0, | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
614 raw_encode_init, |
|
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
615 raw_encode_frame, |
| 0 | 616 NULL, |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
617 raw_decode_frame, |
| 0 | 618 }; |
