Mercurial > libavcodec.hg
annotate avcodec.h @ 286:91f7c38f5f37 libavcodec
statistics for 2-pass encoding
author | michaelni |
---|---|
date | Sat, 23 Mar 2002 17:43:30 +0000 |
parents | 5c7fdbecfa97 |
children | 944632089814 |
rev | line source |
---|---|
92 | 1 #ifndef AVCODEC_H |
2 #define AVCODEC_H | |
3 | |
0 | 4 #include "common.h" |
5 | |
6 enum CodecID { | |
7 CODEC_ID_NONE, | |
8 CODEC_ID_MPEG1VIDEO, | |
9 CODEC_ID_H263, | |
10 CODEC_ID_RV10, | |
11 CODEC_ID_MP2, | |
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
12 CODEC_ID_MP3LAME, |
0 | 13 CODEC_ID_AC3, |
14 CODEC_ID_MJPEG, | |
67 | 15 CODEC_ID_MPEG4, |
0 | 16 CODEC_ID_RAWVIDEO, |
17 CODEC_ID_MSMPEG4, | |
18 CODEC_ID_H263P, | |
19 CODEC_ID_H263I, | |
92 | 20 |
21 /* various pcm "codecs" */ | |
22 CODEC_ID_PCM_S16LE, | |
23 CODEC_ID_PCM_S16BE, | |
24 CODEC_ID_PCM_U16LE, | |
25 CODEC_ID_PCM_U16BE, | |
26 CODEC_ID_PCM_S8, | |
27 CODEC_ID_PCM_U8, | |
28 CODEC_ID_PCM_MULAW, | |
29 CODEC_ID_PCM_ALAW, | |
0 | 30 }; |
31 | |
32 enum CodecType { | |
33 CODEC_TYPE_VIDEO, | |
34 CODEC_TYPE_AUDIO, | |
35 }; | |
36 | |
37 enum PixelFormat { | |
38 PIX_FMT_YUV420P, | |
39 PIX_FMT_YUV422, | |
40 PIX_FMT_RGB24, | |
41 PIX_FMT_BGR24, | |
27
b8723ec6c80f
added 422P and 444P formats (need to patch ffmpeg.c so that it is handled in all the program)
glantau
parents:
24
diff
changeset
|
42 PIX_FMT_YUV422P, |
b8723ec6c80f
added 422P and 444P formats (need to patch ffmpeg.c so that it is handled in all the program)
glantau
parents:
24
diff
changeset
|
43 PIX_FMT_YUV444P, |
0 | 44 }; |
45 | |
92 | 46 /* currently unused, may be used if 24/32 bits samples ever supported */ |
47 enum SampleFormat { | |
48 SAMPLE_FMT_S16 = 0, /* signed 16 bits */ | |
49 }; | |
50 | |
0 | 51 /* in bytes */ |
52 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 18432 | |
53 | |
54 /* motion estimation type */ | |
55 extern int motion_estimation_method; | |
56 #define ME_ZERO 0 | |
57 #define ME_FULL 1 | |
58 #define ME_LOG 2 | |
59 #define ME_PHODS 3 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
60 #define ME_EPZS 4 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
61 #define ME_X1 5 |
0 | 62 |
63 /* encoding support */ | |
64 | |
65 #define CODEC_FLAG_HQ 0x0001 /* high quality (non real time) encoding */ | |
66 #define CODEC_FLAG_QSCALE 0x0002 /* use fixed qscale */ | |
67 | |
67 | 68 /* codec capabilities */ |
69 | |
70 /* decoder can use draw_horiz_band callback */ | |
71 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 | |
72 | |
0 | 73 #define FRAME_RATE_BASE 10000 |
74 | |
75 typedef struct AVCodecContext { | |
76 int bit_rate; | |
268 | 77 int bit_rate_tolerance; /* amount of +- bits (>0)*/ |
0 | 78 int flags; |
79 int sub_id; /* some codecs needs additionnal format info. It is | |
80 stored there */ | |
81 /* video only */ | |
82 int frame_rate; /* frames per sec multiplied by FRAME_RATE_BASE */ | |
83 int width, height; | |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
84 int aspect_ratio_info; |
282 | 85 #define FF_ASPECT_SQUARE 1 |
86 #define FF_ASPECT_4_3_625 2 | |
87 #define FF_ASPECT_4_3_525 3 | |
88 #define FF_ASPECT_16_9_625 4 | |
89 #define FF_ASPECT_16_9_525 5 | |
0 | 90 int gop_size; /* 0 = intra only */ |
91 int pix_fmt; /* pixel format, see PIX_FMT_xxx */ | |
67 | 92 |
93 /* if non NULL, 'draw_horiz_band' is called by the libavcodec | |
94 decoder to draw an horizontal band. It improve cache usage. Not | |
95 all codecs can do that. You must check the codec capabilities | |
96 before */ | |
97 void (*draw_horiz_band)(struct AVCodecContext *s, | |
98 UINT8 **src_ptr, int linesize, | |
99 int y, int width, int height); | |
100 | |
0 | 101 /* audio only */ |
102 int sample_rate; /* samples per sec */ | |
103 int channels; | |
92 | 104 int sample_fmt; /* sample format, currenly unused */ |
0 | 105 |
106 /* the following data should not be initialized */ | |
107 int frame_size; /* in samples, initialized when calling 'init' */ | |
108 int frame_number; /* audio or video frame number */ | |
109 int key_frame; /* true if the previous compressed frame was | |
110 a key frame (intra, or seekable) */ | |
111 int quality; /* quality of the previous encoded frame | |
112 (between 1 (good) and 31 (bad)) */ | |
268 | 113 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0)*/ |
114 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
115 int qmin; /* min qscale */ | |
116 int qmax; /* max qscale */ | |
117 int max_qdiff; /* max qscale difference between frames */ | |
118 | |
0 | 119 struct AVCodec *codec; |
120 void *priv_data; | |
121 | |
162 | 122 /* The following data is for RTP friendly coding */ |
123 /* By now only H.263/H.263+ coder honours this */ | |
124 int rtp_mode; /* 1 for activate RTP friendly-mode */ | |
125 /* highers numbers represent more error-prone */ | |
126 /* enviroments, by now just "1" exist */ | |
127 | |
128 int rtp_payload_size; /* The size of the RTP payload, the coder will */ | |
129 /* do it's best to deliver a chunk with size */ | |
130 /* below rtp_payload_size, the chunk will start */ | |
131 /* with a start code on some codecs like H.263 */ | |
132 /* This doesn't take account of any particular */ | |
133 /* headers inside the transmited RTP payload */ | |
231 | 134 |
135 | |
136 /* The RTP callcack: This function is called */ | |
137 /* every time the encoder as a packet to send */ | |
138 /* Depends on the encoder if the data starts */ | |
139 /* with a Start Code (it should) H.263 does */ | |
140 void (*rtp_callback)(void *data, int size, int packet_number); | |
141 | |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
142 /* These are for PSNR calculation, if you set get_psnr to 1 */ |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
143 /* after encoding you will have the PSNR on psnr_y/cb/cr */ |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
144 int get_psnr; |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
145 float psnr_y; |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
146 float psnr_cb; |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
147 float psnr_cr; |
286 | 148 |
149 /* statistics, used for 2-pass encoding */ | |
150 int mv_bits; | |
151 int header_bits; | |
152 int i_tex_bits; | |
153 int p_tex_bits; | |
154 int i_count; | |
155 int p_count; | |
156 int skip_count; | |
157 int misc_bits; // cbp, mb_type | |
158 int frame_bits; | |
162 | 159 |
0 | 160 /* the following fields are ignored */ |
67 | 161 void *opaque; /* can be used to carry app specific stuff */ |
0 | 162 char codec_name[32]; |
163 int codec_type; /* see CODEC_TYPE_xxx */ | |
164 int codec_id; /* see CODEC_ID_xxx */ | |
165 unsigned int codec_tag; /* codec tag, only used if unknown codec */ | |
166 } AVCodecContext; | |
167 | |
168 typedef struct AVCodec { | |
169 char *name; | |
170 int type; | |
171 int id; | |
172 int priv_data_size; | |
173 int (*init)(AVCodecContext *); | |
174 int (*encode)(AVCodecContext *, UINT8 *buf, int buf_size, void *data); | |
175 int (*close)(AVCodecContext *); | |
176 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, | |
177 UINT8 *buf, int buf_size); | |
67 | 178 int capabilities; |
0 | 179 struct AVCodec *next; |
180 } AVCodec; | |
181 | |
182 /* three components are given, that's all */ | |
183 typedef struct AVPicture { | |
184 UINT8 *data[3]; | |
185 int linesize[3]; | |
186 } AVPicture; | |
187 | |
188 extern AVCodec ac3_encoder; | |
189 extern AVCodec mp2_encoder; | |
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
190 extern AVCodec mp3lame_encoder; |
0 | 191 extern AVCodec mpeg1video_encoder; |
192 extern AVCodec h263_encoder; | |
193 extern AVCodec h263p_encoder; | |
194 extern AVCodec rv10_encoder; | |
195 extern AVCodec mjpeg_encoder; | |
67 | 196 extern AVCodec mpeg4_encoder; |
0 | 197 extern AVCodec msmpeg4_encoder; |
198 | |
199 extern AVCodec h263_decoder; | |
67 | 200 extern AVCodec mpeg4_decoder; |
0 | 201 extern AVCodec msmpeg4_decoder; |
202 extern AVCodec mpeg_decoder; | |
203 extern AVCodec h263i_decoder; | |
204 extern AVCodec rv10_decoder; | |
24 | 205 extern AVCodec mjpeg_decoder; |
92 | 206 extern AVCodec mp3_decoder; |
0 | 207 |
92 | 208 /* pcm codecs */ |
209 #define PCM_CODEC(id, name) \ | |
210 extern AVCodec name ## _decoder; \ | |
211 extern AVCodec name ## _encoder; | |
212 | |
213 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); | |
214 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
215 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
216 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
217 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
218 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
219 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
220 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
221 | |
222 #undef PCM_CODEC | |
223 | |
224 /* dummy raw video codec */ | |
0 | 225 extern AVCodec rawvideo_codec; |
226 | |
227 /* the following codecs use external GPL libs */ | |
228 extern AVCodec ac3_decoder; | |
229 | |
230 /* resample.c */ | |
231 | |
232 struct ReSampleContext; | |
233 | |
234 typedef struct ReSampleContext ReSampleContext; | |
235 | |
236 ReSampleContext *audio_resample_init(int output_channels, int input_channels, | |
237 int output_rate, int input_rate); | |
238 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); | |
239 void audio_resample_close(ReSampleContext *s); | |
240 | |
241 /* YUV420 format is assumed ! */ | |
242 | |
243 struct ImgReSampleContext; | |
244 | |
245 typedef struct ImgReSampleContext ImgReSampleContext; | |
246 | |
247 ImgReSampleContext *img_resample_init(int output_width, int output_height, | |
248 int input_width, int input_height); | |
249 void img_resample(ImgReSampleContext *s, | |
250 AVPicture *output, AVPicture *input); | |
251 | |
252 void img_resample_close(ImgReSampleContext *s); | |
253 | |
49 | 254 void avpicture_fill(AVPicture *picture, UINT8 *ptr, |
255 int pix_fmt, int width, int height); | |
256 int avpicture_get_size(int pix_fmt, int width, int height); | |
257 | |
258 /* convert among pixel formats */ | |
259 int img_convert(AVPicture *dst, int dst_pix_fmt, | |
260 AVPicture *src, int pix_fmt, | |
261 int width, int height); | |
262 | |
263 /* deinterlace a picture */ | |
264 int avpicture_deinterlace(AVPicture *dst, AVPicture *src, | |
0 | 265 int pix_fmt, int width, int height); |
266 | |
267 /* external high level API */ | |
268 | |
269 extern AVCodec *first_avcodec; | |
270 | |
271 void avcodec_init(void); | |
272 | |
273 void register_avcodec(AVCodec *format); | |
274 AVCodec *avcodec_find_encoder(enum CodecID id); | |
177 | 275 AVCodec *avcodec_find_encoder_by_name(const char *name); |
0 | 276 AVCodec *avcodec_find_decoder(enum CodecID id); |
277 AVCodec *avcodec_find_decoder_by_name(const char *name); | |
278 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); | |
279 | |
280 int avcodec_open(AVCodecContext *avctx, AVCodec *codec); | |
281 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, | |
282 int *frame_size_ptr, | |
283 UINT8 *buf, int buf_size); | |
284 int avcodec_decode_video(AVCodecContext *avctx, AVPicture *picture, | |
285 int *got_picture_ptr, | |
286 UINT8 *buf, int buf_size); | |
287 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
288 const short *samples); | |
289 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
290 const AVPicture *pict); | |
291 | |
292 int avcodec_close(AVCodecContext *avctx); | |
293 | |
294 void avcodec_register_all(void); | |
92 | 295 |
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
296 #ifdef FF_POSTPROCESS |
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
297 #ifndef MBC |
162 | 298 #define MBC 48 |
299 #define MBR 36 | |
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
300 #endif |
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
301 extern int quant_store[MBR+1][MBC+1]; // [Review] |
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
302 #endif |
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
303 |
92 | 304 #endif /* AVCODEC_H */ |