Mercurial > libavcodec.hg
annotate avcodec.h @ 281:1fc96b02142e libavcodec
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
experimental (& faster) motion estimation
squished a dirty uninitialized var bug
mpeg1 fcode>1 support
| author | michaelni |
|---|---|
| date | Fri, 22 Mar 2002 23:22:08 +0000 |
| parents | 5cb2978e701f |
| children | 5c7fdbecfa97 |
| 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; |
| 0 | 85 int gop_size; /* 0 = intra only */ |
| 86 int pix_fmt; /* pixel format, see PIX_FMT_xxx */ | |
| 67 | 87 |
| 88 /* if non NULL, 'draw_horiz_band' is called by the libavcodec | |
| 89 decoder to draw an horizontal band. It improve cache usage. Not | |
| 90 all codecs can do that. You must check the codec capabilities | |
| 91 before */ | |
| 92 void (*draw_horiz_band)(struct AVCodecContext *s, | |
| 93 UINT8 **src_ptr, int linesize, | |
| 94 int y, int width, int height); | |
| 95 | |
| 0 | 96 /* audio only */ |
| 97 int sample_rate; /* samples per sec */ | |
| 98 int channels; | |
| 92 | 99 int sample_fmt; /* sample format, currenly unused */ |
| 0 | 100 |
| 101 /* the following data should not be initialized */ | |
| 102 int frame_size; /* in samples, initialized when calling 'init' */ | |
| 103 int frame_number; /* audio or video frame number */ | |
| 104 int key_frame; /* true if the previous compressed frame was | |
| 105 a key frame (intra, or seekable) */ | |
| 106 int quality; /* quality of the previous encoded frame | |
| 107 (between 1 (good) and 31 (bad)) */ | |
| 268 | 108 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0)*/ |
| 109 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
| 110 int qmin; /* min qscale */ | |
| 111 int qmax; /* max qscale */ | |
| 112 int max_qdiff; /* max qscale difference between frames */ | |
| 113 | |
| 0 | 114 struct AVCodec *codec; |
| 115 void *priv_data; | |
| 116 | |
| 162 | 117 /* The following data is for RTP friendly coding */ |
| 118 /* By now only H.263/H.263+ coder honours this */ | |
| 119 int rtp_mode; /* 1 for activate RTP friendly-mode */ | |
| 120 /* highers numbers represent more error-prone */ | |
| 121 /* enviroments, by now just "1" exist */ | |
| 122 | |
| 123 int rtp_payload_size; /* The size of the RTP payload, the coder will */ | |
| 124 /* do it's best to deliver a chunk with size */ | |
| 125 /* below rtp_payload_size, the chunk will start */ | |
| 126 /* with a start code on some codecs like H.263 */ | |
| 127 /* This doesn't take account of any particular */ | |
| 128 /* headers inside the transmited RTP payload */ | |
| 231 | 129 |
| 130 | |
| 131 /* The RTP callcack: This function is called */ | |
| 132 /* every time the encoder as a packet to send */ | |
| 133 /* Depends on the encoder if the data starts */ | |
| 134 /* with a Start Code (it should) H.263 does */ | |
| 135 void (*rtp_callback)(void *data, int size, int packet_number); | |
| 136 | |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
137 /* 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
|
138 /* 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
|
139 int get_psnr; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
140 float psnr_y; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
141 float psnr_cb; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
142 float psnr_cr; |
| 162 | 143 |
| 0 | 144 /* the following fields are ignored */ |
| 67 | 145 void *opaque; /* can be used to carry app specific stuff */ |
| 0 | 146 char codec_name[32]; |
| 147 int codec_type; /* see CODEC_TYPE_xxx */ | |
| 148 int codec_id; /* see CODEC_ID_xxx */ | |
| 149 unsigned int codec_tag; /* codec tag, only used if unknown codec */ | |
| 150 } AVCodecContext; | |
| 151 | |
| 152 typedef struct AVCodec { | |
| 153 char *name; | |
| 154 int type; | |
| 155 int id; | |
| 156 int priv_data_size; | |
| 157 int (*init)(AVCodecContext *); | |
| 158 int (*encode)(AVCodecContext *, UINT8 *buf, int buf_size, void *data); | |
| 159 int (*close)(AVCodecContext *); | |
| 160 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, | |
| 161 UINT8 *buf, int buf_size); | |
| 67 | 162 int capabilities; |
| 0 | 163 struct AVCodec *next; |
| 164 } AVCodec; | |
| 165 | |
| 166 /* three components are given, that's all */ | |
| 167 typedef struct AVPicture { | |
| 168 UINT8 *data[3]; | |
| 169 int linesize[3]; | |
| 170 } AVPicture; | |
| 171 | |
| 172 extern AVCodec ac3_encoder; | |
| 173 extern AVCodec mp2_encoder; | |
|
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
174 extern AVCodec mp3lame_encoder; |
| 0 | 175 extern AVCodec mpeg1video_encoder; |
| 176 extern AVCodec h263_encoder; | |
| 177 extern AVCodec h263p_encoder; | |
| 178 extern AVCodec rv10_encoder; | |
| 179 extern AVCodec mjpeg_encoder; | |
| 67 | 180 extern AVCodec mpeg4_encoder; |
| 0 | 181 extern AVCodec msmpeg4_encoder; |
| 182 | |
| 183 extern AVCodec h263_decoder; | |
| 67 | 184 extern AVCodec mpeg4_decoder; |
| 0 | 185 extern AVCodec msmpeg4_decoder; |
| 186 extern AVCodec mpeg_decoder; | |
| 187 extern AVCodec h263i_decoder; | |
| 188 extern AVCodec rv10_decoder; | |
| 24 | 189 extern AVCodec mjpeg_decoder; |
| 92 | 190 extern AVCodec mp3_decoder; |
| 0 | 191 |
| 92 | 192 /* pcm codecs */ |
| 193 #define PCM_CODEC(id, name) \ | |
| 194 extern AVCodec name ## _decoder; \ | |
| 195 extern AVCodec name ## _encoder; | |
| 196 | |
| 197 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); | |
| 198 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
| 199 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
| 200 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
| 201 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
| 202 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
| 203 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
| 204 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
| 205 | |
| 206 #undef PCM_CODEC | |
| 207 | |
| 208 /* dummy raw video codec */ | |
| 0 | 209 extern AVCodec rawvideo_codec; |
| 210 | |
| 211 /* the following codecs use external GPL libs */ | |
| 212 extern AVCodec ac3_decoder; | |
| 213 | |
| 214 /* resample.c */ | |
| 215 | |
| 216 struct ReSampleContext; | |
| 217 | |
| 218 typedef struct ReSampleContext ReSampleContext; | |
| 219 | |
| 220 ReSampleContext *audio_resample_init(int output_channels, int input_channels, | |
| 221 int output_rate, int input_rate); | |
| 222 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); | |
| 223 void audio_resample_close(ReSampleContext *s); | |
| 224 | |
| 225 /* YUV420 format is assumed ! */ | |
| 226 | |
| 227 struct ImgReSampleContext; | |
| 228 | |
| 229 typedef struct ImgReSampleContext ImgReSampleContext; | |
| 230 | |
| 231 ImgReSampleContext *img_resample_init(int output_width, int output_height, | |
| 232 int input_width, int input_height); | |
| 233 void img_resample(ImgReSampleContext *s, | |
| 234 AVPicture *output, AVPicture *input); | |
| 235 | |
| 236 void img_resample_close(ImgReSampleContext *s); | |
| 237 | |
| 49 | 238 void avpicture_fill(AVPicture *picture, UINT8 *ptr, |
| 239 int pix_fmt, int width, int height); | |
| 240 int avpicture_get_size(int pix_fmt, int width, int height); | |
| 241 | |
| 242 /* convert among pixel formats */ | |
| 243 int img_convert(AVPicture *dst, int dst_pix_fmt, | |
| 244 AVPicture *src, int pix_fmt, | |
| 245 int width, int height); | |
| 246 | |
| 247 /* deinterlace a picture */ | |
| 248 int avpicture_deinterlace(AVPicture *dst, AVPicture *src, | |
| 0 | 249 int pix_fmt, int width, int height); |
| 250 | |
| 251 /* external high level API */ | |
| 252 | |
| 253 extern AVCodec *first_avcodec; | |
| 254 | |
| 255 void avcodec_init(void); | |
| 256 | |
| 257 void register_avcodec(AVCodec *format); | |
| 258 AVCodec *avcodec_find_encoder(enum CodecID id); | |
| 177 | 259 AVCodec *avcodec_find_encoder_by_name(const char *name); |
| 0 | 260 AVCodec *avcodec_find_decoder(enum CodecID id); |
| 261 AVCodec *avcodec_find_decoder_by_name(const char *name); | |
| 262 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); | |
| 263 | |
| 264 int avcodec_open(AVCodecContext *avctx, AVCodec *codec); | |
| 265 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, | |
| 266 int *frame_size_ptr, | |
| 267 UINT8 *buf, int buf_size); | |
| 268 int avcodec_decode_video(AVCodecContext *avctx, AVPicture *picture, | |
| 269 int *got_picture_ptr, | |
| 270 UINT8 *buf, int buf_size); | |
| 271 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
| 272 const short *samples); | |
| 273 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
| 274 const AVPicture *pict); | |
| 275 | |
| 276 int avcodec_close(AVCodecContext *avctx); | |
| 277 | |
| 278 void avcodec_register_all(void); | |
| 92 | 279 |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
280 #ifdef FF_POSTPROCESS |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
281 #ifndef MBC |
| 162 | 282 #define MBC 48 |
| 283 #define MBR 36 | |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
284 #endif |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
285 extern int quant_store[MBR+1][MBC+1]; // [Review] |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
286 #endif |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
287 |
| 92 | 288 #endif /* AVCODEC_H */ |
