Mercurial > libavcodec.hg
annotate avcodec.h @ 376:ba9c3b8088c0 libavcodec
- pict_type exported to AVCodecContext
- Added real_pict_num to AVCodecContext, it represent the number of the
previous encoded frame, usefull when coding with B frames.
- Warning fix in motion_est.c
| author | pulento |
|---|---|
| date | Sat, 11 May 2002 23:42:16 +0000 |
| parents | 8187bb132d85 |
| children | 0d73175fbded |
| rev | line source |
|---|---|
| 92 | 1 #ifndef AVCODEC_H |
| 2 #define AVCODEC_H | |
| 3 | |
| 0 | 4 #include "common.h" |
| 5 | |
| 322 | 6 #define LIBAVCODEC_VERSION_INT 0x000406 |
| 7 #define LIBAVCODEC_VERSION "0.4.6" | |
| 376 | 8 #define LIBAVCODEC_BUILD 4606 |
| 9 #define LIBAVCODEC_BUILD_STR "4606" | |
| 322 | 10 |
| 0 | 11 enum CodecID { |
| 12 CODEC_ID_NONE, | |
| 13 CODEC_ID_MPEG1VIDEO, | |
| 14 CODEC_ID_H263, | |
| 15 CODEC_ID_RV10, | |
| 16 CODEC_ID_MP2, | |
|
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
17 CODEC_ID_MP3LAME, |
| 0 | 18 CODEC_ID_AC3, |
| 19 CODEC_ID_MJPEG, | |
| 67 | 20 CODEC_ID_MPEG4, |
| 0 | 21 CODEC_ID_RAWVIDEO, |
| 307 | 22 CODEC_ID_MSMPEG4V1, |
| 23 CODEC_ID_MSMPEG4V2, | |
| 24 CODEC_ID_MSMPEG4V3, | |
| 311 | 25 CODEC_ID_WMV1, |
| 0 | 26 CODEC_ID_H263P, |
| 27 CODEC_ID_H263I, | |
| 92 | 28 |
| 29 /* various pcm "codecs" */ | |
| 30 CODEC_ID_PCM_S16LE, | |
| 31 CODEC_ID_PCM_S16BE, | |
| 32 CODEC_ID_PCM_U16LE, | |
| 33 CODEC_ID_PCM_U16BE, | |
| 34 CODEC_ID_PCM_S8, | |
| 35 CODEC_ID_PCM_U8, | |
| 36 CODEC_ID_PCM_MULAW, | |
| 37 CODEC_ID_PCM_ALAW, | |
| 0 | 38 }; |
| 307 | 39 #define CODEC_ID_MSMPEG4 CODEC_ID_MSMPEG4V3 |
| 0 | 40 |
| 41 enum CodecType { | |
|
371
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
42 CODEC_TYPE_UNKNOWN = -1, |
| 0 | 43 CODEC_TYPE_VIDEO, |
| 44 CODEC_TYPE_AUDIO, | |
| 45 }; | |
| 46 | |
| 47 enum PixelFormat { | |
|
317
5afea0021fb8
- PIX_FMT_ANY = -1 to avoid breaking any stuff that could be using it.
pulento
parents:
316
diff
changeset
|
48 PIX_FMT_ANY = -1, |
| 0 | 49 PIX_FMT_YUV420P, |
| 50 PIX_FMT_YUV422, | |
| 51 PIX_FMT_RGB24, | |
| 52 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
|
53 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
|
54 PIX_FMT_YUV444P, |
| 0 | 55 }; |
| 56 | |
| 92 | 57 /* currently unused, may be used if 24/32 bits samples ever supported */ |
| 58 enum SampleFormat { | |
| 59 SAMPLE_FMT_S16 = 0, /* signed 16 bits */ | |
| 60 }; | |
| 61 | |
| 0 | 62 /* in bytes */ |
| 63 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 18432 | |
| 64 | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
65 /* motion estimation type, EPZS by default */ |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
66 enum Motion_Est_ID { |
| 321 | 67 ME_ZERO = 1, |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
68 ME_FULL, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
69 ME_LOG, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
70 ME_PHODS, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
71 ME_EPZS, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
72 ME_X1 |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
73 }; |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
74 |
| 321 | 75 /* only for ME compatiblity with old apps */ |
| 76 extern int motion_estimation_method; | |
| 77 | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
78 /* ME algos sorted by quality */ |
| 367 | 79 static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, |
| 80 ME_X1, ME_EPZS, ME_FULL }; | |
| 0 | 81 |
| 324 | 82 #define FF_MAX_B_FRAMES 4 |
| 83 | |
| 0 | 84 /* encoding support */ |
| 294 | 85 /* note not everything is supported yet */ |
| 0 | 86 |
| 87 #define CODEC_FLAG_HQ 0x0001 /* high quality (non real time) encoding */ | |
| 88 #define CODEC_FLAG_QSCALE 0x0002 /* use fixed qscale */ | |
| 294 | 89 #define CODEC_FLAG_4MV 0x0004 /* 4 MV per MB allowed */ |
| 90 #define CODEC_FLAG_QPEL 0x0010 /* use qpel MC */ | |
| 91 #define CODEC_FLAG_GMC 0x0020 /* use GMC */ | |
|
298
e20de99b6295
using Juanjo's way to pass forced type - especially as I_TYPE/P_TYPE defines aren't exported in the public interface, and the flagged method matches the way as qscale forcing work
arpi_esp
parents:
297
diff
changeset
|
92 #define CODEC_FLAG_TYPE 0x0040 /* fixed I/P frame type, from avctx->key_frame */ |
| 324 | 93 /* parent program gurantees that the input for b-frame containing streams is not written to |
| 94 for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */ | |
| 329 | 95 #define CODEC_FLAG_INPUT_PRESERVED 0x0100 |
| 96 #define CODEC_FLAG_PASS1 0x0200 /* use internal 2pass ratecontrol in first pass mode */ | |
| 97 #define CODEC_FLAG_PASS2 0x0400 /* use internal 2pass ratecontrol in second pass mode */ | |
|
349
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
98 #define CODEC_FLAG_EXTERN_HUFF 0x1000 /* use external huffman table (for mjpeg) */ |
| 0 | 99 |
| 67 | 100 /* codec capabilities */ |
| 101 | |
| 102 /* decoder can use draw_horiz_band callback */ | |
| 103 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 | |
| 104 | |
| 0 | 105 #define FRAME_RATE_BASE 10000 |
| 106 | |
| 107 typedef struct AVCodecContext { | |
| 108 int bit_rate; | |
| 268 | 109 int bit_rate_tolerance; /* amount of +- bits (>0)*/ |
| 0 | 110 int flags; |
| 111 int sub_id; /* some codecs needs additionnal format info. It is | |
| 112 stored there */ | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
113 |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
114 int me_method; /* ME algorithm used for video coding */ |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
115 |
|
349
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
116 /* extra data from parent application to codec, e.g. huffman table |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
117 for mjpeg */ |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
118 /* the parent should allocate and free this buffer */ |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
119 void *extradata; |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
120 int extradata_size; |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
121 |
| 0 | 122 /* video only */ |
| 123 int frame_rate; /* frames per sec multiplied by FRAME_RATE_BASE */ | |
| 124 int width, height; | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
125 int aspect_ratio_info; |
| 282 | 126 #define FF_ASPECT_SQUARE 1 |
| 127 #define FF_ASPECT_4_3_625 2 | |
| 128 #define FF_ASPECT_4_3_525 3 | |
| 129 #define FF_ASPECT_16_9_625 4 | |
| 130 #define FF_ASPECT_16_9_525 5 | |
| 0 | 131 int gop_size; /* 0 = intra only */ |
| 315 | 132 enum PixelFormat pix_fmt; /* pixel format, see PIX_FMT_xxx */ |
| 67 | 133 |
| 134 /* if non NULL, 'draw_horiz_band' is called by the libavcodec | |
| 135 decoder to draw an horizontal band. It improve cache usage. Not | |
| 136 all codecs can do that. You must check the codec capabilities | |
| 137 before */ | |
| 138 void (*draw_horiz_band)(struct AVCodecContext *s, | |
| 139 UINT8 **src_ptr, int linesize, | |
| 140 int y, int width, int height); | |
| 141 | |
| 0 | 142 /* audio only */ |
| 143 int sample_rate; /* samples per sec */ | |
| 144 int channels; | |
| 92 | 145 int sample_fmt; /* sample format, currenly unused */ |
| 0 | 146 |
| 147 /* the following data should not be initialized */ | |
| 376 | 148 int frame_size; /* in samples, initialized when calling 'init' */ |
| 149 int frame_number; /* audio or video frame number */ | |
| 150 int real_pict_num; /* returns the real picture number of | |
| 151 previous encoded frame */ | |
| 152 int key_frame; /* true if the previous compressed frame was | |
| 153 a key frame (intra, or seekable) */ | |
| 154 int pict_type; /* picture type of the previous | |
| 155 encoded frame */ | |
| 156 /* FIXME: these should have FF_ */ | |
| 157 #define I_TYPE 1 // Intra | |
| 158 #define P_TYPE 2 // Predicted | |
| 159 #define B_TYPE 3 // Bi-dir predicted | |
| 160 #define S_TYPE 4 // S(GMC)-VOP MPEG4 | |
| 161 | |
| 162 int delay; /* number of frames the decoded output | |
| 163 will be delayed relative to the encoded input */ | |
| 345 | 164 uint8_t *mbskip_table; /* =1 if MB didnt change, is only valid for I/P frames |
| 165 stride= mb_width = (width+15)>>4 */ | |
| 336 | 166 |
| 167 /* encoding parameters */ | |
| 0 | 168 int quality; /* quality of the previous encoded frame |
| 329 | 169 (between 1 (good) and 31 (bad)) |
| 170 this is allso used to set the quality in vbr mode | |
| 171 and the per frame quality in CODEC_FLAG_TYPE (second pass mode) */ | |
| 268 | 172 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0)*/ |
| 173 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
| 174 int qmin; /* min qscale */ | |
| 175 int qmax; /* max qscale */ | |
| 176 int max_qdiff; /* max qscale difference between frames */ | |
| 324 | 177 int max_b_frames; /* maximum b frames, the output will be delayed by max_b_frames+1 relative to the input */ |
| 329 | 178 float b_quant_factor;/* qscale factor between ips and b frames */ |
| 179 int rc_strategy; | |
| 180 int b_frame_strategy; | |
| 324 | 181 |
| 345 | 182 int hurry_up; /* when set to 1 during decoding, b frames will be skiped |
| 183 when set to 2 idct/dequant will be skipped too */ | |
| 184 | |
| 0 | 185 struct AVCodec *codec; |
| 186 void *priv_data; | |
| 187 | |
| 162 | 188 /* The following data is for RTP friendly coding */ |
| 189 /* By now only H.263/H.263+ coder honours this */ | |
| 190 int rtp_mode; /* 1 for activate RTP friendly-mode */ | |
| 191 /* highers numbers represent more error-prone */ | |
| 192 /* enviroments, by now just "1" exist */ | |
| 193 | |
| 194 int rtp_payload_size; /* The size of the RTP payload, the coder will */ | |
| 195 /* do it's best to deliver a chunk with size */ | |
| 196 /* below rtp_payload_size, the chunk will start */ | |
| 197 /* with a start code on some codecs like H.263 */ | |
| 198 /* This doesn't take account of any particular */ | |
| 199 /* headers inside the transmited RTP payload */ | |
| 231 | 200 |
| 201 | |
| 202 /* The RTP callcack: This function is called */ | |
| 203 /* every time the encoder as a packet to send */ | |
| 204 /* Depends on the encoder if the data starts */ | |
| 205 /* with a Start Code (it should) H.263 does */ | |
| 206 void (*rtp_callback)(void *data, int size, int packet_number); | |
| 207 | |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
208 /* 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
|
209 /* 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
|
210 int get_psnr; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
211 float psnr_y; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
212 float psnr_cb; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
213 float psnr_cr; |
| 286 | 214 |
| 215 /* statistics, used for 2-pass encoding */ | |
| 216 int mv_bits; | |
| 217 int header_bits; | |
| 218 int i_tex_bits; | |
| 219 int p_tex_bits; | |
| 220 int i_count; | |
| 221 int p_count; | |
| 222 int skip_count; | |
| 223 int misc_bits; // cbp, mb_type | |
| 224 int frame_bits; | |
| 162 | 225 |
| 0 | 226 /* the following fields are ignored */ |
| 67 | 227 void *opaque; /* can be used to carry app specific stuff */ |
| 0 | 228 char codec_name[32]; |
|
371
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
229 enum CodecType codec_type; /* see CODEC_TYPE_xxx */ |
|
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
230 enum CodecID codec_id; /* see CODEC_ID_xxx */ |
| 0 | 231 unsigned int codec_tag; /* codec tag, only used if unknown codec */ |
| 232 } AVCodecContext; | |
| 233 | |
| 234 typedef struct AVCodec { | |
| 235 char *name; | |
| 236 int type; | |
| 237 int id; | |
| 238 int priv_data_size; | |
| 239 int (*init)(AVCodecContext *); | |
| 240 int (*encode)(AVCodecContext *, UINT8 *buf, int buf_size, void *data); | |
| 241 int (*close)(AVCodecContext *); | |
| 242 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, | |
| 243 UINT8 *buf, int buf_size); | |
| 67 | 244 int capabilities; |
| 0 | 245 struct AVCodec *next; |
| 246 } AVCodec; | |
| 247 | |
| 248 /* three components are given, that's all */ | |
| 249 typedef struct AVPicture { | |
| 250 UINT8 *data[3]; | |
| 251 int linesize[3]; | |
| 252 } AVPicture; | |
| 253 | |
| 254 extern AVCodec ac3_encoder; | |
| 255 extern AVCodec mp2_encoder; | |
|
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
256 extern AVCodec mp3lame_encoder; |
| 0 | 257 extern AVCodec mpeg1video_encoder; |
| 258 extern AVCodec h263_encoder; | |
| 259 extern AVCodec h263p_encoder; | |
| 260 extern AVCodec rv10_encoder; | |
| 261 extern AVCodec mjpeg_encoder; | |
| 67 | 262 extern AVCodec mpeg4_encoder; |
| 307 | 263 extern AVCodec msmpeg4v1_encoder; |
| 264 extern AVCodec msmpeg4v2_encoder; | |
| 265 extern AVCodec msmpeg4v3_encoder; | |
| 0 | 266 |
| 267 extern AVCodec h263_decoder; | |
| 67 | 268 extern AVCodec mpeg4_decoder; |
| 307 | 269 extern AVCodec msmpeg4v1_decoder; |
| 270 extern AVCodec msmpeg4v2_decoder; | |
| 271 extern AVCodec msmpeg4v3_decoder; | |
| 311 | 272 extern AVCodec wmv1_decoder; |
| 0 | 273 extern AVCodec mpeg_decoder; |
| 274 extern AVCodec h263i_decoder; | |
| 275 extern AVCodec rv10_decoder; | |
| 24 | 276 extern AVCodec mjpeg_decoder; |
| 322 | 277 extern AVCodec mp2_decoder; |
| 92 | 278 extern AVCodec mp3_decoder; |
| 0 | 279 |
| 92 | 280 /* pcm codecs */ |
| 281 #define PCM_CODEC(id, name) \ | |
| 282 extern AVCodec name ## _decoder; \ | |
| 283 extern AVCodec name ## _encoder; | |
| 284 | |
| 285 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); | |
| 286 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
| 287 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
| 288 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
| 289 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
| 290 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
| 291 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
| 292 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
| 293 | |
| 294 #undef PCM_CODEC | |
| 295 | |
| 296 /* dummy raw video codec */ | |
| 0 | 297 extern AVCodec rawvideo_codec; |
| 298 | |
| 299 /* the following codecs use external GPL libs */ | |
| 300 extern AVCodec ac3_decoder; | |
| 301 | |
| 302 /* resample.c */ | |
| 303 | |
| 304 struct ReSampleContext; | |
| 305 | |
| 306 typedef struct ReSampleContext ReSampleContext; | |
| 307 | |
| 308 ReSampleContext *audio_resample_init(int output_channels, int input_channels, | |
| 309 int output_rate, int input_rate); | |
| 310 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); | |
| 311 void audio_resample_close(ReSampleContext *s); | |
| 312 | |
| 313 /* YUV420 format is assumed ! */ | |
| 314 | |
| 315 struct ImgReSampleContext; | |
| 316 | |
| 317 typedef struct ImgReSampleContext ImgReSampleContext; | |
| 318 | |
| 319 ImgReSampleContext *img_resample_init(int output_width, int output_height, | |
| 320 int input_width, int input_height); | |
| 321 void img_resample(ImgReSampleContext *s, | |
| 322 AVPicture *output, AVPicture *input); | |
| 323 | |
| 324 void img_resample_close(ImgReSampleContext *s); | |
| 325 | |
| 49 | 326 void avpicture_fill(AVPicture *picture, UINT8 *ptr, |
| 327 int pix_fmt, int width, int height); | |
| 328 int avpicture_get_size(int pix_fmt, int width, int height); | |
| 329 | |
| 330 /* convert among pixel formats */ | |
| 331 int img_convert(AVPicture *dst, int dst_pix_fmt, | |
| 332 AVPicture *src, int pix_fmt, | |
| 333 int width, int height); | |
| 334 | |
| 335 /* deinterlace a picture */ | |
| 336 int avpicture_deinterlace(AVPicture *dst, AVPicture *src, | |
| 0 | 337 int pix_fmt, int width, int height); |
| 338 | |
| 339 /* external high level API */ | |
| 340 | |
| 341 extern AVCodec *first_avcodec; | |
| 342 | |
| 362 | 343 /* returns LIBAVCODEC_VERSION_INT constant */ |
| 344 unsigned avcodec_version( void ); | |
| 0 | 345 void avcodec_init(void); |
| 346 | |
| 347 void register_avcodec(AVCodec *format); | |
| 348 AVCodec *avcodec_find_encoder(enum CodecID id); | |
| 177 | 349 AVCodec *avcodec_find_encoder_by_name(const char *name); |
| 0 | 350 AVCodec *avcodec_find_decoder(enum CodecID id); |
| 351 AVCodec *avcodec_find_decoder_by_name(const char *name); | |
| 352 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); | |
| 353 | |
| 354 int avcodec_open(AVCodecContext *avctx, AVCodec *codec); | |
| 355 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, | |
| 356 int *frame_size_ptr, | |
| 357 UINT8 *buf, int buf_size); | |
| 358 int avcodec_decode_video(AVCodecContext *avctx, AVPicture *picture, | |
| 359 int *got_picture_ptr, | |
| 360 UINT8 *buf, int buf_size); | |
| 361 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
| 362 const short *samples); | |
| 363 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
| 364 const AVPicture *pict); | |
| 365 | |
| 366 int avcodec_close(AVCodecContext *avctx); | |
| 367 | |
| 368 void avcodec_register_all(void); | |
| 92 | 369 |
| 341 | 370 void avcodec_flush_buffers(AVCodecContext *avctx); |
| 371 | |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
372 #ifdef FF_POSTPROCESS |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
373 #ifndef MBC |
|
328
025825084364
postprocess array increased to handle images up to 2048x1536
arpi_esp
parents:
324
diff
changeset
|
374 #define MBC 128 |
|
025825084364
postprocess array increased to handle images up to 2048x1536
arpi_esp
parents:
324
diff
changeset
|
375 #define MBR 96 |
|
108
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
376 #endif |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
377 extern int quant_store[MBR+1][MBC+1]; // [Review] |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
378 #endif |
|
1e4a4af694d1
exporting qscale data for postprocessing (for MPlayer)
arpi_esp
parents:
92
diff
changeset
|
379 |
| 92 | 380 #endif /* AVCODEC_H */ |
