annotate utils.c @ 924:3814e9115672 libavcodec

cleanup / messup? fixes 20% speedloss bug removes redundant variables from MpegEncContext release buffers in avcodec_flush_buffers() (untested)
author michaelni
date Mon, 09 Dec 2002 00:29:17 +0000
parents 2ac4caad5ca6
children 7fccaa0d699d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1 /*
986e461dc072 Initial revision
glantau
parents:
diff changeset
2 * utils for libavcodec
429
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
3 * Copyright (c) 2001 Fabrice Bellard.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
4 *
429
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
5 * This library is free software; you can redistribute it and/or
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
7 * License as published by the Free Software Foundation; either
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
8 * version 2 of the License, or (at your option) any later version.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
9 *
429
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
10 * This library is distributed in the hope that it will be useful,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
429
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
13 * Lesser General Public License for more details.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
14 *
429
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
16 * License along with this library; if not, write to the Free Software
718a22dc121f license/copyright change
glantau
parents: 400
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
18 */
394
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
19 #include "avcodec.h"
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
20 #include "dsputil.h"
341
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
21 #include "mpegvideo.h"
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
22
862
058194d7ade6 * fixing some minor const warnings
kabi
parents: 851
diff changeset
23 void *av_mallocz(unsigned int size)
394
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
24 {
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
25 void *ptr;
908
2ac4caad5ca6 print a warning if something allocates 0 bytes
michaelni
parents: 903
diff changeset
26
2ac4caad5ca6 print a warning if something allocates 0 bytes
michaelni
parents: 903
diff changeset
27 if(size == 0) fprintf(stderr, "Warning, allocating 0 bytes\n");
2ac4caad5ca6 print a warning if something allocates 0 bytes
michaelni
parents: 903
diff changeset
28
394
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
29 ptr = av_malloc(size);
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
30 if (!ptr)
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
31 return NULL;
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
32 memset(ptr, 0, size);
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
33 return ptr;
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
34 }
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
35
902
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
36 /* 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
37 static unsigned int last_static = 0;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
38 static char*** array_static = NULL;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
39 static const unsigned int grow_static = 64; // ^2
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
40 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
41 {
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
42 int l = (last_static + grow_static) & ~(grow_static - 1);
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
43 void *ptr = av_mallocz(size);
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
44 if (!ptr)
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
45 return NULL;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
46
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
47 if (location)
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
48 {
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
49 if (l > last_static)
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
50 array_static = realloc(array_static, l);
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
51 array_static[last_static++] = (char**) location;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
52 *location = ptr;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
53 }
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
54 return ptr;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
55 }
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
56 /* 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
57 void av_free_static()
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
58 {
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
59 if (array_static)
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
60 {
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
61 unsigned i;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
62 for (i = 0; i < last_static; i++)
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
63 {
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
64 free(*array_static[i]);
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
65 *array_static[i] = NULL;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
66 }
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
67 free(array_static);
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
68 array_static = 0;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
69 }
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
70 last_static = 0;
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
71 }
6acc8394960d * two functions to handle allocation of static data more simple
kabi
parents: 862
diff changeset
72
400
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
73 /* cannot call it directly because of 'void **' casting is not automatic */
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
74 void __av_freep(void **ptr)
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
75 {
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
76 av_free(*ptr);
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
77 *ptr = NULL;
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
78 }
b0aed401a756 better av_freep()
glantau
parents: 394
diff changeset
79
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
80 /* encoder management */
986e461dc072 Initial revision
glantau
parents:
diff changeset
81 AVCodec *first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
82
986e461dc072 Initial revision
glantau
parents:
diff changeset
83 void register_avcodec(AVCodec *format)
986e461dc072 Initial revision
glantau
parents:
diff changeset
84 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
85 AVCodec **p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
86 p = &first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
87 while (*p != NULL) p = &(*p)->next;
986e461dc072 Initial revision
glantau
parents:
diff changeset
88 *p = format;
986e461dc072 Initial revision
glantau
parents:
diff changeset
89 format->next = NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
90 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
91
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
92 void avcodec_get_chroma_sub_sample(int fmt, int *h_shift, int *v_shift){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
93 switch(fmt){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
94 case PIX_FMT_YUV410P:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
95 *h_shift=2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
96 *v_shift=2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
97 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
98 case PIX_FMT_YUV420P:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
99 *h_shift=1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
100 *v_shift=1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
101 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
102 case PIX_FMT_YUV411P:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
103 *h_shift=2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
104 *v_shift=0;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
105 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
106 case PIX_FMT_YUV422P:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
107 case PIX_FMT_YUV422:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
108 *h_shift=1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
109 *v_shift=0;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
110 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
111 default: //RGB/...
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
112 *h_shift=0;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
113 *v_shift=0;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
114 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
115 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
116 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
117
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
118 typedef struct DefaultPicOpaque{
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
119 int last_pic_num;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
120 uint8_t *data[4];
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
121 }DefaultPicOpaque;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
122
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
123 int avcodec_default_get_buffer(AVCodecContext *s, AVVideoFrame *pic){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
124 int i;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
125 const int width = s->width;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
126 const int height= s->height;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
127 DefaultPicOpaque *opaque;
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
128
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
129 assert(pic->data[0]==NULL);
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
130 assert(pic->type==0 || pic->type==FF_TYPE_INTERNAL);
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
131
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
132 if(pic->opaque){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
133 opaque= (DefaultPicOpaque *)pic->opaque;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
134 for(i=0; i<3; i++)
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
135 pic->data[i]= opaque->data[i];
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
136
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
137 // printf("get_buffer %X coded_pic_num:%d last:%d\n", pic->opaque, pic->coded_picture_number, opaque->last_pic_num);
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
138 pic->age= pic->coded_picture_number - opaque->last_pic_num;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
139 opaque->last_pic_num= pic->coded_picture_number;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
140 //printf("age: %d %d %d\n", pic->age, c->picture_number, pic->coded_picture_number);
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
141 }else{
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
142 int align, h_chroma_shift, v_chroma_shift;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
143 int w, h, pixel_size;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
144
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
145 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
146
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
147 switch(s->pix_fmt){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
148 case PIX_FMT_YUV422:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
149 pixel_size=2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
150 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
151 case PIX_FMT_RGB24:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
152 case PIX_FMT_BGR24:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
153 pixel_size=3;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
154 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
155 case PIX_FMT_BGRA32:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
156 case PIX_FMT_RGBA32:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
157 pixel_size=4;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
158 break;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
159 default:
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
160 pixel_size=1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
161 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
162
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
163 if(s->codec_id==CODEC_ID_SVQ1) align=63;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
164 else align=15;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
165
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
166 w= (width +align)&~align;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
167 h= (height+align)&~align;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
168
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
169 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
170 w+= EDGE_WIDTH*2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
171 h+= EDGE_WIDTH*2;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
172 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
173
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
174 opaque= av_mallocz(sizeof(DefaultPicOpaque));
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
175 if(opaque==NULL) return -1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
176
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
177 pic->opaque= opaque;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
178 opaque->last_pic_num= -256*256*256*64;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
179
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
180 for(i=0; i<3; i++){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
181 int h_shift= i==0 ? 0 : h_chroma_shift;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
182 int v_shift= i==0 ? 0 : v_chroma_shift;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
183
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
184 pic->linesize[i]= pixel_size*w>>h_shift;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
185
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
186 pic->base[i]= av_mallocz((pic->linesize[i]*h>>v_shift)+16); //FIXME 16
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
187 if(pic->base[i]==NULL) return -1;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
188
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
189 memset(pic->base[i], 128, pic->linesize[i]*h>>v_shift);
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
190
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
191 if(s->flags&CODEC_FLAG_EMU_EDGE)
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
192 pic->data[i] = pic->base[i] + 16; //FIXME 16
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
193 else
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
194 pic->data[i] = pic->base[i] + (pic->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift) + 16; //FIXME 16
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
195
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
196 opaque->data[i]= pic->data[i];
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
197 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
198 pic->age= 256*256*256*64;
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
199 pic->type= FF_BUFFER_TYPE_INTERNAL;
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
200 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
201
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
202 return 0;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
203 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
204
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
205 void avcodec_default_release_buffer(AVCodecContext *s, AVVideoFrame *pic){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
206 int i;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
207
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
208 assert(pic->type==FF_BUFFER_TYPE_INTERNAL);
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
209
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
210 for(i=0; i<3; i++)
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
211 pic->data[i]=NULL;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
212 //printf("R%X\n", pic->opaque);
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
213 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
214
681
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
215 void avcodec_get_context_defaults(AVCodecContext *s){
685
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
216 s->bit_rate= 800*1000;
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
217 s->bit_rate_tolerance= s->bit_rate*10;
681
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
218 s->qmin= 2;
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
219 s->qmax= 31;
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
220 s->rc_eq= "tex^qComp";
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
221 s->qcompress= 0.5;
685
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
222 s->max_qdiff= 3;
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
223 s->b_quant_factor=1.25;
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
224 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
225 s->i_quant_factor=-0.8;
685
44a1dab0205c fixing apiexample
michaelni
parents: 681
diff changeset
226 s->i_quant_offset=0.0;
745
25d7fb7c89be better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents: 742
diff changeset
227 s->error_concealment= 3;
762
5da504c8c90e more defaults
michaelni
parents: 745
diff changeset
228 s->error_resilience= 1;
745
25d7fb7c89be better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents: 742
diff changeset
229 s->workaround_bugs= FF_BUG_AUTODETECT;
762
5da504c8c90e more defaults
michaelni
parents: 745
diff changeset
230 s->frame_rate = 25 * FRAME_RATE_BASE;
5da504c8c90e more defaults
michaelni
parents: 745
diff changeset
231 s->gop_size= 50;
5da504c8c90e more defaults
michaelni
parents: 745
diff changeset
232 s->me_method= ME_EPZS;
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
233 s->get_buffer= avcodec_default_get_buffer;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
234 s->release_buffer= avcodec_default_release_buffer;
681
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
235 }
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
236
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
237 /**
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
238 * allocates a AVCodecContext and set it to defaults.
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
239 * this can be deallocated by simply calling free()
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
240 */
703
65f9e32225ba Minor warning fix.
mellum
parents: 686
diff changeset
241 AVCodecContext *avcodec_alloc_context(void){
681
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
242 AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext));
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
243
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
244 if(avctx==NULL) return NULL;
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
245
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
246 avcodec_get_context_defaults(avctx);
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
247
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
248 return avctx;
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
249 }
b3869ffff47a avcodec_alloc_context()
michaelni
parents: 583
diff changeset
250
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
251 /**
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
252 * allocates a AVPicture and set it to defaults.
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
253 * this can be deallocated by simply calling free()
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
254 */
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
255 AVVideoFrame *avcodec_alloc_picture(void){
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
256 AVVideoFrame *pic= av_mallocz(sizeof(AVVideoFrame));
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
257
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
258 return pic;
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
259 }
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
260
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
261 int avcodec_open(AVCodecContext *avctx, AVCodec *codec)
986e461dc072 Initial revision
glantau
parents:
diff changeset
262 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
263 int ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
264
986e461dc072 Initial revision
glantau
parents:
diff changeset
265 avctx->codec = codec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
266 avctx->frame_number = 0;
374
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
267 if (codec->priv_data_size > 0) {
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
268 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
269 if (!avctx->priv_data)
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
270 return -ENOMEM;
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
271 } else {
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
272 avctx->priv_data = NULL;
02147e22f8c8 * Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents: 362
diff changeset
273 }
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
274 ret = avctx->codec->init(avctx);
986e461dc072 Initial revision
glantau
parents:
diff changeset
275 if (ret < 0) {
394
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
276 av_freep(&avctx->priv_data);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
277 return ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
278 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
279 return 0;
986e461dc072 Initial revision
glantau
parents:
diff changeset
280 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
281
986e461dc072 Initial revision
glantau
parents:
diff changeset
282 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size,
986e461dc072 Initial revision
glantau
parents:
diff changeset
283 const short *samples)
986e461dc072 Initial revision
glantau
parents:
diff changeset
284 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
285 int ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
286
986e461dc072 Initial revision
glantau
parents:
diff changeset
287 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples);
986e461dc072 Initial revision
glantau
parents:
diff changeset
288 avctx->frame_number++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
289 return ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
290 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
291
986e461dc072 Initial revision
glantau
parents:
diff changeset
292 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size,
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
293 const AVVideoFrame *pict)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
294 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
295 int ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
296
986e461dc072 Initial revision
glantau
parents:
diff changeset
297 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
814
8f31ed5bacd1 dont call emms_c() for each MB
michaelni
parents: 762
diff changeset
298
8f31ed5bacd1 dont call emms_c() for each MB
michaelni
parents: 762
diff changeset
299 emms_c(); //needed to avoid a emms_c() call before every return;
8f31ed5bacd1 dont call emms_c() for each MB
michaelni
parents: 762
diff changeset
300
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
301 avctx->frame_number++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
302 return ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
303 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
304
986e461dc072 Initial revision
glantau
parents:
diff changeset
305 /* decode a frame. return -1 if error, otherwise return the number of
986e461dc072 Initial revision
glantau
parents:
diff changeset
306 bytes used. If no frame could be decompressed, *got_picture_ptr is
986e461dc072 Initial revision
glantau
parents:
diff changeset
307 zero. Otherwise, it is non zero */
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
308 int avcodec_decode_video(AVCodecContext *avctx, AVVideoFrame *picture,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
309 int *got_picture_ptr,
986e461dc072 Initial revision
glantau
parents:
diff changeset
310 UINT8 *buf, int buf_size)
986e461dc072 Initial revision
glantau
parents:
diff changeset
311 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
312 int ret;
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
313
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
314 ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
986e461dc072 Initial revision
glantau
parents:
diff changeset
315 buf, buf_size);
814
8f31ed5bacd1 dont call emms_c() for each MB
michaelni
parents: 762
diff changeset
316
8f31ed5bacd1 dont call emms_c() for each MB
michaelni
parents: 762
diff changeset
317 emms_c(); //needed to avoid a emms_c() call before every return;
903
22ee74da2cd3 cleanup
michaelni
parents: 902
diff changeset
318
267
e10840e4f773 - Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents: 260
diff changeset
319 if (*got_picture_ptr)
e10840e4f773 - Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents: 260
diff changeset
320 avctx->frame_number++;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
321 return ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
322 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
323
986e461dc072 Initial revision
glantau
parents:
diff changeset
324 /* decode an audio frame. return -1 if error, otherwise return the
986e461dc072 Initial revision
glantau
parents:
diff changeset
325 *number of bytes used. If no frame could be decompressed,
986e461dc072 Initial revision
glantau
parents:
diff changeset
326 *frame_size_ptr is zero. Otherwise, it is the decompressed frame
986e461dc072 Initial revision
glantau
parents:
diff changeset
327 *size in BYTES. */
986e461dc072 Initial revision
glantau
parents:
diff changeset
328 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples,
986e461dc072 Initial revision
glantau
parents:
diff changeset
329 int *frame_size_ptr,
986e461dc072 Initial revision
glantau
parents:
diff changeset
330 UINT8 *buf, int buf_size)
986e461dc072 Initial revision
glantau
parents:
diff changeset
331 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
332 int ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
333
986e461dc072 Initial revision
glantau
parents:
diff changeset
334 ret = avctx->codec->decode(avctx, samples, frame_size_ptr,
986e461dc072 Initial revision
glantau
parents:
diff changeset
335 buf, buf_size);
986e461dc072 Initial revision
glantau
parents:
diff changeset
336 avctx->frame_number++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
337 return ret;
986e461dc072 Initial revision
glantau
parents:
diff changeset
338 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
339
986e461dc072 Initial revision
glantau
parents:
diff changeset
340 int avcodec_close(AVCodecContext *avctx)
986e461dc072 Initial revision
glantau
parents:
diff changeset
341 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
342 if (avctx->codec->close)
986e461dc072 Initial revision
glantau
parents:
diff changeset
343 avctx->codec->close(avctx);
394
e2cb8a4ee0c5 proper memory handling functions
glantau
parents: 379
diff changeset
344 av_freep(&avctx->priv_data);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
345 avctx->codec = NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
346 return 0;
986e461dc072 Initial revision
glantau
parents:
diff changeset
347 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
348
986e461dc072 Initial revision
glantau
parents:
diff changeset
349 AVCodec *avcodec_find_encoder(enum CodecID id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
350 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
351 AVCodec *p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
352 p = first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
353 while (p) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
354 if (p->encode != NULL && p->id == id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
355 return p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
356 p = p->next;
986e461dc072 Initial revision
glantau
parents:
diff changeset
357 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
358 return NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
359 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
360
177
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
361 AVCodec *avcodec_find_encoder_by_name(const char *name)
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
362 {
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
363 AVCodec *p;
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
364 p = first_avcodec;
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
365 while (p) {
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
366 if (p->encode != NULL && strcmp(name,p->name) == 0)
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
367 return p;
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
368 p = p->next;
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
369 }
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
370 return NULL;
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
371 }
53da914d6f46 avcodec_find_encoder_by_name() patch by Alex
arpi_esp
parents: 94
diff changeset
372
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
373 AVCodec *avcodec_find_decoder(enum CodecID id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
374 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
375 AVCodec *p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
376 p = first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
377 while (p) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
378 if (p->decode != NULL && p->id == id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
379 return p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
380 p = p->next;
986e461dc072 Initial revision
glantau
parents:
diff changeset
381 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
382 return NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
383 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
384
986e461dc072 Initial revision
glantau
parents:
diff changeset
385 AVCodec *avcodec_find_decoder_by_name(const char *name)
986e461dc072 Initial revision
glantau
parents:
diff changeset
386 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
387 AVCodec *p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
388 p = first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
389 while (p) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
390 if (p->decode != NULL && strcmp(name,p->name) == 0)
986e461dc072 Initial revision
glantau
parents:
diff changeset
391 return p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
392 p = p->next;
986e461dc072 Initial revision
glantau
parents:
diff changeset
393 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
394 return NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
395 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
396
986e461dc072 Initial revision
glantau
parents:
diff changeset
397 AVCodec *avcodec_find(enum CodecID id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
398 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
399 AVCodec *p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
400 p = first_avcodec;
986e461dc072 Initial revision
glantau
parents:
diff changeset
401 while (p) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
402 if (p->id == id)
986e461dc072 Initial revision
glantau
parents:
diff changeset
403 return p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
404 p = p->next;
986e461dc072 Initial revision
glantau
parents:
diff changeset
405 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
406 return NULL;
986e461dc072 Initial revision
glantau
parents:
diff changeset
407 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
408
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
409 const char *pix_fmt_str[] = {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
410 "yuv420p",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
411 "yuv422",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
412 "rgb24",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
413 "bgr24",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
414 "yuv422p",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
415 "yuv444p",
583
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
416 "rgba32",
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
417 "bgra32",
742
7f77968553de corrected pixel format display
bellard
parents: 741
diff changeset
418 "yuv410p",
7f77968553de corrected pixel format display
bellard
parents: 741
diff changeset
419 "yuv411p",
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
420 };
742
7f77968553de corrected pixel format display
bellard
parents: 741
diff changeset
421
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
422 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
986e461dc072 Initial revision
glantau
parents:
diff changeset
423 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
424 const char *codec_name;
986e461dc072 Initial revision
glantau
parents:
diff changeset
425 AVCodec *p;
986e461dc072 Initial revision
glantau
parents:
diff changeset
426 char buf1[32];
337
8899c3b35b57 * using some small char buffer - needed for sprintf
kabi
parents: 322
diff changeset
427 char channels_str[100];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
428 int bitrate;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
429
986e461dc072 Initial revision
glantau
parents:
diff changeset
430 if (encode)
986e461dc072 Initial revision
glantau
parents:
diff changeset
431 p = avcodec_find_encoder(enc->codec_id);
986e461dc072 Initial revision
glantau
parents:
diff changeset
432 else
986e461dc072 Initial revision
glantau
parents:
diff changeset
433 p = avcodec_find_decoder(enc->codec_id);
986e461dc072 Initial revision
glantau
parents:
diff changeset
434
986e461dc072 Initial revision
glantau
parents:
diff changeset
435 if (p) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
436 codec_name = p->name;
986e461dc072 Initial revision
glantau
parents:
diff changeset
437 } else if (enc->codec_name[0] != '\0') {
986e461dc072 Initial revision
glantau
parents:
diff changeset
438 codec_name = enc->codec_name;
986e461dc072 Initial revision
glantau
parents:
diff changeset
439 } else {
986e461dc072 Initial revision
glantau
parents:
diff changeset
440 /* output avi tags */
986e461dc072 Initial revision
glantau
parents:
diff changeset
441 if (enc->codec_type == CODEC_TYPE_VIDEO) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
442 snprintf(buf1, sizeof(buf1), "%c%c%c%c",
986e461dc072 Initial revision
glantau
parents:
diff changeset
443 enc->codec_tag & 0xff,
986e461dc072 Initial revision
glantau
parents:
diff changeset
444 (enc->codec_tag >> 8) & 0xff,
986e461dc072 Initial revision
glantau
parents:
diff changeset
445 (enc->codec_tag >> 16) & 0xff,
986e461dc072 Initial revision
glantau
parents:
diff changeset
446 (enc->codec_tag >> 24) & 0xff);
986e461dc072 Initial revision
glantau
parents:
diff changeset
447 } else {
986e461dc072 Initial revision
glantau
parents:
diff changeset
448 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
986e461dc072 Initial revision
glantau
parents:
diff changeset
449 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
450 codec_name = buf1;
986e461dc072 Initial revision
glantau
parents:
diff changeset
451 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
452
986e461dc072 Initial revision
glantau
parents:
diff changeset
453 switch(enc->codec_type) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
454 case CODEC_TYPE_VIDEO:
986e461dc072 Initial revision
glantau
parents:
diff changeset
455 snprintf(buf, buf_size,
986e461dc072 Initial revision
glantau
parents:
diff changeset
456 "Video: %s%s",
986e461dc072 Initial revision
glantau
parents:
diff changeset
457 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : "");
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
458 if (enc->codec_id == CODEC_ID_RAWVIDEO) {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
459 snprintf(buf + strlen(buf), buf_size - strlen(buf),
6064342168f4 picture utils
glantau
parents: 24
diff changeset
460 ", %s",
6064342168f4 picture utils
glantau
parents: 24
diff changeset
461 pix_fmt_str[enc->pix_fmt]);
6064342168f4 picture utils
glantau
parents: 24
diff changeset
462 }
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
463 if (enc->width) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
464 snprintf(buf + strlen(buf), buf_size - strlen(buf),
986e461dc072 Initial revision
glantau
parents:
diff changeset
465 ", %dx%d, %0.2f fps",
986e461dc072 Initial revision
glantau
parents:
diff changeset
466 enc->width, enc->height,
986e461dc072 Initial revision
glantau
parents:
diff changeset
467 (float)enc->frame_rate / FRAME_RATE_BASE);
986e461dc072 Initial revision
glantau
parents:
diff changeset
468 }
741
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
469 if (encode) {
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
470 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
471 ", q=%d-%d", enc->qmin, enc->qmax);
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
472 }
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
473 bitrate = enc->bit_rate;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
474 break;
986e461dc072 Initial revision
glantau
parents:
diff changeset
475 case CODEC_TYPE_AUDIO:
986e461dc072 Initial revision
glantau
parents:
diff changeset
476 snprintf(buf, buf_size,
986e461dc072 Initial revision
glantau
parents:
diff changeset
477 "Audio: %s",
986e461dc072 Initial revision
glantau
parents:
diff changeset
478 codec_name);
318
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
479 switch (enc->channels) {
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
480 case 1:
337
8899c3b35b57 * using some small char buffer - needed for sprintf
kabi
parents: 322
diff changeset
481 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
482 break;
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
483 case 2:
337
8899c3b35b57 * using some small char buffer - needed for sprintf
kabi
parents: 322
diff changeset
484 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
485 break;
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
486 case 6:
337
8899c3b35b57 * using some small char buffer - needed for sprintf
kabi
parents: 322
diff changeset
487 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
488 break;
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
489 default:
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
490 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
491 break;
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
492 }
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
493 if (enc->sample_rate) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
494 snprintf(buf + strlen(buf), buf_size - strlen(buf),
986e461dc072 Initial revision
glantau
parents:
diff changeset
495 ", %d Hz, %s",
986e461dc072 Initial revision
glantau
parents:
diff changeset
496 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
497 channels_str);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
498 }
318
21697f35a9ca - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents: 315
diff changeset
499
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
500 /* for PCM codecs, compute bitrate directly */
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
501 switch(enc->codec_id) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
502 case CODEC_ID_PCM_S16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
503 case CODEC_ID_PCM_S16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
504 case CODEC_ID_PCM_U16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
505 case CODEC_ID_PCM_U16BE:
94
7e263a256a6f fixed pcm bitrate
glantau
parents: 92
diff changeset
506 bitrate = enc->sample_rate * enc->channels * 16;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
507 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
508 case CODEC_ID_PCM_S8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
509 case CODEC_ID_PCM_U8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
510 case CODEC_ID_PCM_ALAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
511 case CODEC_ID_PCM_MULAW:
94
7e263a256a6f fixed pcm bitrate
glantau
parents: 92
diff changeset
512 bitrate = enc->sample_rate * enc->channels * 8;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
513 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
514 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
515 bitrate = enc->bit_rate;
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
516 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
517 }
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
518 break;
986e461dc072 Initial revision
glantau
parents:
diff changeset
519 default:
583
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
520 av_abort();
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
521 }
741
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
522 if (encode) {
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
523 if (enc->flags & CODEC_FLAG_PASS1)
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
524 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
525 ", pass 1");
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
526 if (enc->flags & CODEC_FLAG_PASS2)
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
527 snprintf(buf + strlen(buf), buf_size - strlen(buf),
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
528 ", pass 2");
3be57e506f01 added two pass info
bellard
parents: 703
diff changeset
529 }
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
530 if (bitrate != 0) {
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
531 snprintf(buf + strlen(buf), buf_size - strlen(buf),
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents: 91
diff changeset
532 ", %d kb/s", bitrate / 1000);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
533 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
534 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
535
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
536 /* Picture field are filled with 'ptr' addresses */
6064342168f4 picture utils
glantau
parents: 24
diff changeset
537 void avpicture_fill(AVPicture *picture, UINT8 *ptr,
6064342168f4 picture utils
glantau
parents: 24
diff changeset
538 int pix_fmt, int width, int height)
6064342168f4 picture utils
glantau
parents: 24
diff changeset
539 {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
540 int size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
541
6064342168f4 picture utils
glantau
parents: 24
diff changeset
542 size = width * height;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
543 switch(pix_fmt) {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
544 case PIX_FMT_YUV420P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
545 picture->data[0] = ptr;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
546 picture->data[1] = picture->data[0] + size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
547 picture->data[2] = picture->data[1] + size / 4;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
548 picture->linesize[0] = width;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
549 picture->linesize[1] = width / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
550 picture->linesize[2] = width / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
551 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
552 case PIX_FMT_YUV422P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
553 picture->data[0] = ptr;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
554 picture->data[1] = picture->data[0] + size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
555 picture->data[2] = picture->data[1] + size / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
556 picture->linesize[0] = width;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
557 picture->linesize[1] = width / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
558 picture->linesize[2] = width / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
559 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
560 case PIX_FMT_YUV444P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
561 picture->data[0] = ptr;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
562 picture->data[1] = picture->data[0] + size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
563 picture->data[2] = picture->data[1] + size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
564 picture->linesize[0] = width;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
565 picture->linesize[1] = width;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
566 picture->linesize[2] = width;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
567 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
568 case PIX_FMT_RGB24:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
569 case PIX_FMT_BGR24:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
570 picture->data[0] = ptr;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
571 picture->data[1] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
572 picture->data[2] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
573 picture->linesize[0] = width * 3;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
574 break;
583
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
575 case PIX_FMT_RGBA32:
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
576 case PIX_FMT_BGRA32:
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
577 picture->data[0] = ptr;
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
578 picture->data[1] = NULL;
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
579 picture->data[2] = NULL;
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
580 picture->linesize[0] = width * 4;
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
581 break;
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
582 case PIX_FMT_YUV422:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
583 picture->data[0] = ptr;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
584 picture->data[1] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
585 picture->data[2] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
586 picture->linesize[0] = width * 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
587 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
588 default:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
589 picture->data[0] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
590 picture->data[1] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
591 picture->data[2] = NULL;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
592 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
593 }
6064342168f4 picture utils
glantau
parents: 24
diff changeset
594 }
6064342168f4 picture utils
glantau
parents: 24
diff changeset
595
6064342168f4 picture utils
glantau
parents: 24
diff changeset
596 int avpicture_get_size(int pix_fmt, int width, int height)
6064342168f4 picture utils
glantau
parents: 24
diff changeset
597 {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
598 int size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
599
6064342168f4 picture utils
glantau
parents: 24
diff changeset
600 size = width * height;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
601 switch(pix_fmt) {
6064342168f4 picture utils
glantau
parents: 24
diff changeset
602 case PIX_FMT_YUV420P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
603 size = (size * 3) / 2;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
604 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
605 case PIX_FMT_YUV422P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
606 size = (size * 2);
6064342168f4 picture utils
glantau
parents: 24
diff changeset
607 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
608 case PIX_FMT_YUV444P:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
609 size = (size * 3);
6064342168f4 picture utils
glantau
parents: 24
diff changeset
610 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
611 case PIX_FMT_RGB24:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
612 case PIX_FMT_BGR24:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
613 size = (size * 3);
6064342168f4 picture utils
glantau
parents: 24
diff changeset
614 break;
583
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
615 case PIX_FMT_RGBA32:
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
616 case PIX_FMT_BGRA32:
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
617 size = (size * 4);
d6955d0d7d27 Add conversions to and from RGBA32 and BGRA32.
philipjsg
parents: 521
diff changeset
618 break;
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
619 case PIX_FMT_YUV422:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
620 size = (size * 2);
6064342168f4 picture utils
glantau
parents: 24
diff changeset
621 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
622 default:
6064342168f4 picture utils
glantau
parents: 24
diff changeset
623 size = -1;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
624 break;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
625 }
6064342168f4 picture utils
glantau
parents: 24
diff changeset
626 return size;
6064342168f4 picture utils
glantau
parents: 24
diff changeset
627 }
6064342168f4 picture utils
glantau
parents: 24
diff changeset
628
362
1ee4ba4ca783 version info
nickols_k
parents: 341
diff changeset
629 unsigned avcodec_version( void )
1ee4ba4ca783 version info
nickols_k
parents: 341
diff changeset
630 {
1ee4ba4ca783 version info
nickols_k
parents: 341
diff changeset
631 return LIBAVCODEC_VERSION_INT;
1ee4ba4ca783 version info
nickols_k
parents: 341
diff changeset
632 }
55
6064342168f4 picture utils
glantau
parents: 24
diff changeset
633
379
47c878305986 build info for ABI
nickols_k
parents: 374
diff changeset
634 unsigned avcodec_build( void )
47c878305986 build info for ABI
nickols_k
parents: 374
diff changeset
635 {
47c878305986 build info for ABI
nickols_k
parents: 374
diff changeset
636 return LIBAVCODEC_BUILD;
47c878305986 build info for ABI
nickols_k
parents: 374
diff changeset
637 }
47c878305986 build info for ABI
nickols_k
parents: 374
diff changeset
638
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
639 /* must be called before any other functions */
986e461dc072 Initial revision
glantau
parents:
diff changeset
640 void avcodec_init(void)
986e461dc072 Initial revision
glantau
parents:
diff changeset
641 {
303
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
642 static int inited = 0;
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
643
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
644 if (inited != 0)
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
645 return;
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
646 inited = 1;
9a931fd8d06c multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents: 267
diff changeset
647
851
a25aed263097 * avcodec_init could be removed I guess...
kabi
parents: 814
diff changeset
648 //dsputil_init();
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
649 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
650
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
651 /* this can be called after seeking and before trying to decode the next keyframe */
341
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
652 void avcodec_flush_buffers(AVCodecContext *avctx)
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
653 {
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
654 int i;
341
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
655 MpegEncContext *s = avctx->priv_data;
924
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
656
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
657 switch(avctx->codec_id){
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
658 case CODEC_ID_MPEG1VIDEO:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
659 case CODEC_ID_H263:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
660 case CODEC_ID_RV10:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
661 case CODEC_ID_MJPEG:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
662 case CODEC_ID_MJPEGB:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
663 case CODEC_ID_MPEG4:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
664 case CODEC_ID_MSMPEG4V1:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
665 case CODEC_ID_MSMPEG4V2:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
666 case CODEC_ID_MSMPEG4V3:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
667 case CODEC_ID_WMV1:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
668 case CODEC_ID_WMV2:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
669 case CODEC_ID_H263P:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
670 case CODEC_ID_H263I:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
671 case CODEC_ID_SVQ1:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
672 for(i=0; i<MAX_PICTURE_COUNT; i++){
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
673 if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
674 || s->picture[i].type == FF_BUFFER_TYPE_USER))
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
675 avctx->release_buffer(avctx, (AVVideoFrame*)&s->picture[i]);
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
676 }
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
677 break;
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
678 default:
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
679 //FIXME
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
680 break;
3814e9115672 cleanup / messup?
michaelni
parents: 908
diff changeset
681 }
341
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
682 }
bf26081c373c avcodec_flush_buffers()
michaelni
parents: 337
diff changeset
683
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
684 static int raw_encode_init(AVCodecContext *s)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
685 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
686 return 0;
986e461dc072 Initial revision
glantau
parents:
diff changeset
687 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
688
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
689 static int raw_decode_frame(AVCodecContext *avctx,
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
690 void *data, int *data_size,
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
691 UINT8 *buf, int buf_size)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
692 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
693 return -1;
986e461dc072 Initial revision
glantau
parents:
diff changeset
694 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
695
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
696 static int raw_encode_frame(AVCodecContext *avctx,
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
697 unsigned char *frame, int buf_size, void *data)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
698 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
699 return -1;
986e461dc072 Initial revision
glantau
parents:
diff changeset
700 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
701
986e461dc072 Initial revision
glantau
parents:
diff changeset
702 AVCodec rawvideo_codec = {
986e461dc072 Initial revision
glantau
parents:
diff changeset
703 "rawvideo",
986e461dc072 Initial revision
glantau
parents:
diff changeset
704 CODEC_TYPE_VIDEO,
986e461dc072 Initial revision
glantau
parents:
diff changeset
705 CODEC_ID_RAWVIDEO,
986e461dc072 Initial revision
glantau
parents:
diff changeset
706 0,
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
707 raw_encode_init,
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
708 raw_encode_frame,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
709 NULL,
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
710 raw_decode_frame,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
711 };