Mercurial > libavcodec.hg
annotate avcodec.h @ 881:d326091dae9f libavcodec
mjpegb support (need more samples)
| author | al3x |
|---|---|
| date | Wed, 20 Nov 2002 15:18:11 +0000 |
| parents | 1c32039e7215 |
| children | b0d29bf1cecd |
| 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" | |
| 880 | 8 #define LIBAVCODEC_BUILD 4640 |
| 9 #define LIBAVCODEC_BUILD_STR "4640" | |
| 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, |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
630
diff
changeset
|
18 CODEC_ID_VORBIS, |
| 0 | 19 CODEC_ID_AC3, |
| 20 CODEC_ID_MJPEG, | |
| 881 | 21 CODEC_ID_MJPEGB, |
| 67 | 22 CODEC_ID_MPEG4, |
| 0 | 23 CODEC_ID_RAWVIDEO, |
| 307 | 24 CODEC_ID_MSMPEG4V1, |
| 25 CODEC_ID_MSMPEG4V2, | |
| 26 CODEC_ID_MSMPEG4V3, | |
| 311 | 27 CODEC_ID_WMV1, |
| 485 | 28 CODEC_ID_WMV2, |
| 0 | 29 CODEC_ID_H263P, |
| 30 CODEC_ID_H263I, | |
| 521 | 31 CODEC_ID_SVQ1, |
| 724 | 32 CODEC_ID_DVVIDEO, |
| 33 CODEC_ID_DVAUDIO, | |
| 783 | 34 CODEC_ID_WMAV1, |
| 35 CODEC_ID_WMAV2, | |
|
827
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
36 CODEC_ID_MACE3, |
|
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
37 CODEC_ID_MACE6, |
| 866 | 38 CODEC_ID_HUFFYUV, |
| 92 | 39 |
| 40 /* various pcm "codecs" */ | |
| 41 CODEC_ID_PCM_S16LE, | |
| 42 CODEC_ID_PCM_S16BE, | |
| 43 CODEC_ID_PCM_U16LE, | |
| 44 CODEC_ID_PCM_U16BE, | |
| 45 CODEC_ID_PCM_S8, | |
| 46 CODEC_ID_PCM_U8, | |
| 47 CODEC_ID_PCM_MULAW, | |
| 48 CODEC_ID_PCM_ALAW, | |
|
573
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
49 |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
50 /* various adpcm codecs */ |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
51 CODEC_ID_ADPCM_IMA_QT, |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
52 CODEC_ID_ADPCM_IMA_WAV, |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
53 CODEC_ID_ADPCM_MS, |
| 0 | 54 }; |
| 55 | |
| 56 enum CodecType { | |
|
371
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
57 CODEC_TYPE_UNKNOWN = -1, |
| 0 | 58 CODEC_TYPE_VIDEO, |
| 59 CODEC_TYPE_AUDIO, | |
| 60 }; | |
| 61 | |
| 62 enum PixelFormat { | |
|
317
5afea0021fb8
- PIX_FMT_ANY = -1 to avoid breaking any stuff that could be using it.
pulento
parents:
316
diff
changeset
|
63 PIX_FMT_ANY = -1, |
| 0 | 64 PIX_FMT_YUV420P, |
| 65 PIX_FMT_YUV422, | |
| 66 PIX_FMT_RGB24, | |
| 67 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
|
68 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
|
69 PIX_FMT_YUV444P, |
| 583 | 70 PIX_FMT_RGBA32, |
| 71 PIX_FMT_BGRA32, | |
| 733 | 72 PIX_FMT_YUV410P, |
|
867
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
73 PIX_FMT_YUV411P, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
74 PIX_FMT_RGB565, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
75 PIX_FMT_RGB555, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
76 // PIX_FMT_RGB5551, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
77 PIX_FMT_BGR565, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
78 PIX_FMT_BGR555, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
79 // PIX_FMT_GBR565, |
|
48215b2c3888
16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
michaelni
parents:
866
diff
changeset
|
80 // PIX_FMT_GBR555 |
| 0 | 81 }; |
| 82 | |
| 92 | 83 /* currently unused, may be used if 24/32 bits samples ever supported */ |
| 84 enum SampleFormat { | |
| 85 SAMPLE_FMT_S16 = 0, /* signed 16 bits */ | |
| 86 }; | |
| 87 | |
| 0 | 88 /* in bytes */ |
| 783 | 89 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 131072 |
| 0 | 90 |
|
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
91 /** |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
92 * Required number of zero bytes at the end of the input bitstream for decoding. |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
93 * to avoid overreading (and possibly segfaulting) |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
94 */ |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
95 #define FF_INPUT_BUFFER_PADDING_SIZE 8 |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
96 |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
97 /* motion estimation type, EPZS by default */ |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
98 enum Motion_Est_ID { |
| 321 | 99 ME_ZERO = 1, |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
100 ME_FULL, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
101 ME_LOG, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
102 ME_PHODS, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
103 ME_EPZS, |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
104 ME_X1 |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
105 }; |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
106 |
| 613 | 107 typedef struct RcOverride{ |
| 108 int start_frame; | |
| 109 int end_frame; | |
| 110 int qscale; // if this is 0 then quality_factor will be used instead | |
| 111 float quality_factor; | |
| 112 } RcOverride; | |
| 113 | |
| 321 | 114 /* only for ME compatiblity with old apps */ |
| 115 extern int motion_estimation_method; | |
| 116 | |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
117 /* ME algos sorted by quality */ |
| 367 | 118 static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, |
| 119 ME_X1, ME_EPZS, ME_FULL }; | |
| 0 | 120 |
|
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
618
diff
changeset
|
121 |
| 324 | 122 #define FF_MAX_B_FRAMES 4 |
| 123 | |
| 681 | 124 /* encoding support |
| 125 these flags can be passed in AVCodecContext.flags before initing | |
| 126 Note: note not everything is supported yet | |
| 127 */ | |
| 0 | 128 |
| 684 | 129 #define CODEC_FLAG_HQ 0x0001 /* brute force MB-type decission mode (slow) */ |
| 130 #define CODEC_FLAG_QSCALE 0x0002 /* use fixed qscale */ | |
| 131 #define CODEC_FLAG_4MV 0x0004 /* 4 MV per MB allowed */ | |
| 132 #define CODEC_FLAG_QPEL 0x0010 /* use qpel MC */ | |
| 133 #define CODEC_FLAG_GMC 0x0020 /* use GMC */ | |
| 134 #define CODEC_FLAG_PART 0x0080 /* use data partitioning */ | |
| 324 | 135 /* parent program gurantees that the input for b-frame containing streams is not written to |
| 136 for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */ | |
| 329 | 137 #define CODEC_FLAG_INPUT_PRESERVED 0x0100 |
| 684 | 138 #define CODEC_FLAG_PASS1 0x0200 /* use internal 2pass ratecontrol in first pass mode */ |
| 139 #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
|
140 #define CODEC_FLAG_EXTERN_HUFF 0x1000 /* use external huffman table (for mjpeg) */ |
| 684 | 141 #define CODEC_FLAG_GRAY 0x2000 /* only decode/encode grayscale */ |
| 553 | 142 #define CODEC_FLAG_EMU_EDGE 0x4000/* dont draw edges */ |
| 684 | 143 #define CODEC_FLAG_DR1 0x8000 /* direct renderig type 1 (store internal frames in external buffers) */ |
|
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
144 #define CODEC_FLAG_TRUNCATED 0x00010000 /* input bitstream might be truncated at a random location instead |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
145 of only at frame boundaries */ |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
146 #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 /* normalize adaptive quantization */ |
| 697 | 147 #define CODEC_FLAG_INTERLACED_DCT 0x00040000 /* use interlaced dct */ |
| 831 | 148 #define CODEC_FLAG_LOW_DELAY 0x00080000 /* force low delay / will fail on b frames */ |
| 880 | 149 #define CODEC_FLAG_ALT_SCAN 0x00100000 /* use alternate scan */ |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
150 |
| 67 | 151 /* codec capabilities */ |
| 152 | |
| 684 | 153 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 /* decoder can use draw_horiz_band callback */ |
| 553 | 154 #define CODEC_CAP_DR1 0x0002 /* direct rendering method 1 */ |
|
581
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
155 /* if 'parse_only' field is true, then avcodec_parse_frame() can be |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
156 used */ |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
157 #define CODEC_CAP_PARSE_ONLY 0x0004 |
|
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
158 #define CODEC_CAP_TRUNCATED 0x0008 |
| 67 | 159 |
| 0 | 160 #define FRAME_RATE_BASE 10000 |
| 161 | |
| 162 typedef struct AVCodecContext { | |
| 684 | 163 /** |
| 164 * the average bitrate | |
| 165 * encoding: set by user. unused for constant quantizer encoding | |
| 166 * decoding: set by lavc. 0 or some bitrate if this info is available in the stream | |
| 167 */ | |
| 0 | 168 int bit_rate; |
| 684 | 169 |
| 170 /** | |
| 171 * number of bits the bitstream is allowed to diverge from the reference | |
| 172 * the reference can be CBR (for CBR pass1) or VBR (for pass2) | |
| 173 * encoding: set by user. unused for constant quantizer encoding | |
| 174 * decoding: unused | |
| 175 */ | |
| 176 int bit_rate_tolerance; | |
| 177 | |
| 178 /** | |
| 179 * CODEC_FLAG_* | |
| 180 * encoding: set by user. | |
| 181 * decoding: set by user. | |
| 182 */ | |
| 0 | 183 int flags; |
| 684 | 184 |
| 185 /** | |
| 186 * some codecs needs additionnal format info. It is stored here | |
| 187 * encoding: set by user. | |
| 188 * decoding: set by lavc. (FIXME is this ok?) | |
| 189 */ | |
| 190 int sub_id; | |
| 191 | |
| 192 /** | |
| 193 * motion estimation algorithm used for video coding | |
| 194 * encoding: set by user. | |
| 195 * decoding: unused | |
| 196 */ | |
| 197 int me_method; | |
| 198 | |
| 199 /** | |
| 200 * some codecs need / can use extra-data like huffman tables | |
| 201 * mjpeg: huffman tables | |
| 202 * rv10: additional flags | |
|
747
3d4377531f6c
mpeg4 header parser clenup (needed for parsing of VOL header in avctx->extradata)
michaelni
parents:
745
diff
changeset
|
203 * mpeg4: global headers (they can be in the bitstream or here) |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
204 * encoding: set/allocated/freed by lavc. |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
205 * decoding: set/allocated/freed by user. |
| 684 | 206 */ |
|
349
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
207 void *extradata; |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
208 int extradata_size; |
|
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
209 |
| 0 | 210 /* video only */ |
| 684 | 211 /** |
| 212 * frames per sec multiplied by FRAME_RATE_BASE | |
| 213 * for variable fps this is the precission, so if the timestamps | |
| 214 * can be specified in msec precssion then this is 1000*FRAME_RATE_BASE | |
| 215 * encoding: set by user | |
| 216 * decoding: set by lavc. 0 or the frame_rate if available | |
| 217 */ | |
| 218 int frame_rate; | |
| 219 | |
| 220 /** | |
| 221 * encoding: set by user. | |
| 222 * decoding: set by user, some codecs might override / change it during playback | |
| 223 */ | |
| 0 | 224 int width, height; |
| 684 | 225 |
| 226 /** | |
| 880 | 227 * Obsolete, will be removed |
| 684 | 228 */ |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
229 int aspect_ratio_info; |
| 282 | 230 #define FF_ASPECT_SQUARE 1 |
| 231 #define FF_ASPECT_4_3_625 2 | |
| 232 #define FF_ASPECT_4_3_525 3 | |
| 233 #define FF_ASPECT_16_9_625 4 | |
| 234 #define FF_ASPECT_16_9_525 5 | |
| 618 | 235 #define FF_ASPECT_EXTENDED 15 |
| 684 | 236 |
| 237 /** | |
| 238 * the number of pictures in a group of pitures, or 0 for intra_only | |
| 239 * encoding: set by user. | |
| 240 * decoding: unused | |
| 241 */ | |
| 242 int gop_size; | |
| 243 | |
| 244 /** | |
| 245 * pixel format, see PIX_FMT_xxx | |
| 246 * encoding: unused | |
| 247 * decoding: set by lavc. | |
| 248 */ | |
| 249 enum PixelFormat pix_fmt; | |
| 250 | |
|
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
382
diff
changeset
|
251 int repeat_pict; /* when decoding, this signal how much the picture */ |
|
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
382
diff
changeset
|
252 /* must be delayed. */ |
|
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
382
diff
changeset
|
253 /* extra_delay = (repeat_pict / 2) * (1/fps) */ |
| 684 | 254 |
| 255 /** | |
| 256 * if non NULL, 'draw_horiz_band' is called by the libavcodec | |
| 257 * decoder to draw an horizontal band. It improve cache usage. Not | |
| 258 * all codecs can do that. You must check the codec capabilities | |
| 259 * before | |
| 260 * encoding: unused | |
| 261 * decoding: set by user. | |
| 262 */ | |
| 67 | 263 void (*draw_horiz_band)(struct AVCodecContext *s, |
| 264 UINT8 **src_ptr, int linesize, | |
| 265 int y, int width, int height); | |
| 266 | |
| 0 | 267 /* audio only */ |
| 268 int sample_rate; /* samples per sec */ | |
| 269 int channels; | |
| 92 | 270 int sample_fmt; /* sample format, currenly unused */ |
| 0 | 271 |
| 272 /* the following data should not be initialized */ | |
| 376 | 273 int frame_size; /* in samples, initialized when calling 'init' */ |
| 274 int frame_number; /* audio or video frame number */ | |
| 275 int real_pict_num; /* returns the real picture number of | |
| 276 previous encoded frame */ | |
| 684 | 277 |
| 278 /** | |
| 279 * 1 -> keyframe, 0-> not | |
| 280 * encoding: set by lavc (for the outputed bitstream, not the input frame) | |
| 281 * decoding: set by lavc (for the decoded bitstream, not the displayed frame) | |
| 282 */ | |
| 283 int key_frame; | |
| 284 | |
| 285 /** | |
| 286 * picture type of the previous en/decoded frame, see ?_TYPE below | |
| 287 * encoding: set by lavc (for the outputed bitstream, not the input frame) | |
| 288 * decoding: set by lavc (for the decoded bitstream, not the displayed frame) | |
| 289 */ | |
| 290 int pict_type; | |
| 376 | 291 /* FIXME: these should have FF_ */ |
| 292 #define I_TYPE 1 // Intra | |
| 293 #define P_TYPE 2 // Predicted | |
| 294 #define B_TYPE 3 // Bi-dir predicted | |
| 295 #define S_TYPE 4 // S(GMC)-VOP MPEG4 | |
| 296 | |
| 684 | 297 /** |
| 298 * number of frames the decoded output will be delayed relative to | |
| 299 * the encoded input | |
| 300 * encoding: set by lavc. | |
| 301 * decoding: unused | |
| 302 */ | |
| 303 int delay; | |
| 304 | |
| 305 /** | |
| 306 * mbskip_table[mb]=1 if MB didnt change, is only valid for I/P frames | |
| 307 * stride= mb_width = (width+15)>>4 (FIXME export stride?) | |
| 308 * encoding: unused | |
| 309 * decoding: set by lavc | |
| 310 */ | |
| 311 uint8_t *mbskip_table; | |
| 336 | 312 |
| 313 /* encoding parameters */ | |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
314 /** |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
315 * quality (between 1 (good) and 31 (bad)) |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
316 * encoding: set by user if CODEC_FLAG_QSCALE is set otherwise set by lavc |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
317 * decoding: set by lavc |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
318 */ |
| 0 | 319 int quality; /* quality of the previous encoded frame |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
320 |
| 329 | 321 this is allso used to set the quality in vbr mode |
| 322 and the per frame quality in CODEC_FLAG_TYPE (second pass mode) */ | |
| 268 | 323 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0)*/ |
| 324 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
| 684 | 325 |
| 326 /** | |
| 327 * minimum quantizer | |
| 328 * encoding: set by user. | |
| 329 * decoding: unused | |
| 330 */ | |
| 331 int qmin; | |
| 332 | |
| 333 /** | |
| 334 * maximum quantizer | |
| 335 * encoding: set by user. | |
| 336 * decoding: unused | |
| 337 */ | |
| 338 int qmax; | |
| 339 | |
| 340 /** | |
| 341 * maximum quantizer difference etween frames | |
| 342 * encoding: set by user. | |
| 343 * decoding: unused | |
| 344 */ | |
| 345 int max_qdiff; | |
| 346 | |
| 347 /** | |
| 348 * maximum number of b frames between non b frames | |
| 349 * note: the output will be delayed by max_b_frames+1 relative to the input | |
| 350 * encoding: set by user. | |
| 351 * decoding: unused | |
| 352 */ | |
| 353 int max_b_frames; | |
| 354 | |
| 355 /** | |
| 356 * qscale factor between ip and b frames | |
| 357 * encoding: set by user. | |
| 358 * decoding: unused | |
| 359 */ | |
| 360 float b_quant_factor; | |
| 361 | |
| 362 /** obsolete FIXME remove */ | |
| 363 int rc_strategy; | |
| 329 | 364 int b_frame_strategy; |
| 324 | 365 |
| 684 | 366 /** |
| 367 * encoding: unused | |
|
845
32de034be20e
hurry_up>=5 -> skip everything except header & set pict_type&key_frame
michaelni
parents:
843
diff
changeset
|
368 * decoding: set by user. 1-> skip b frames, 2-> skip idct/dequant too, 5-> skip everything except header |
| 684 | 369 */ |
| 370 int hurry_up; | |
| 345 | 371 |
| 0 | 372 struct AVCodec *codec; |
| 684 | 373 |
| 0 | 374 void *priv_data; |
| 375 | |
| 162 | 376 /* The following data is for RTP friendly coding */ |
| 460 | 377 /* By now only H.263/H.263+/MPEG4 coder honours this */ |
| 162 | 378 int rtp_mode; /* 1 for activate RTP friendly-mode */ |
| 379 /* highers numbers represent more error-prone */ | |
| 380 /* enviroments, by now just "1" exist */ | |
| 381 | |
| 382 int rtp_payload_size; /* The size of the RTP payload, the coder will */ | |
| 383 /* do it's best to deliver a chunk with size */ | |
| 384 /* below rtp_payload_size, the chunk will start */ | |
| 385 /* with a start code on some codecs like H.263 */ | |
| 386 /* This doesn't take account of any particular */ | |
| 387 /* headers inside the transmited RTP payload */ | |
| 231 | 388 |
| 389 | |
| 390 /* The RTP callcack: This function is called */ | |
| 391 /* every time the encoder as a packet to send */ | |
| 392 /* Depends on the encoder if the data starts */ | |
| 393 /* with a Start Code (it should) H.263 does */ | |
| 394 void (*rtp_callback)(void *data, int size, int packet_number); | |
| 395 | |
| 684 | 396 /** |
| 397 * if you set get_psnr to 1 then after encoding you will have the | |
| 398 * PSNR on psnr_y/cb/cr | |
| 399 * encoding: set by user (1-> on, 0-> off) | |
| 400 * decoding: unused | |
| 401 */ | |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
402 int get_psnr; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
403 float psnr_y; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
404 float psnr_cb; |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
231
diff
changeset
|
405 float psnr_cr; |
| 286 | 406 |
| 407 /* statistics, used for 2-pass encoding */ | |
| 408 int mv_bits; | |
| 409 int header_bits; | |
| 410 int i_tex_bits; | |
| 411 int p_tex_bits; | |
| 412 int i_count; | |
| 413 int p_count; | |
| 414 int skip_count; | |
| 684 | 415 int misc_bits; |
| 416 | |
| 417 /** | |
| 418 * number of bits used for the previously encoded frame | |
| 419 * encoding: set by lavc | |
| 849 | 420 * decoding: - for audio - bits_per_sample |
| 684 | 421 */ |
| 286 | 422 int frame_bits; |
| 162 | 423 |
| 684 | 424 /** |
| 425 * private data of the user, can be used to carry app specific stuff | |
| 426 * encoding: set by user | |
| 427 * decoding: set by user | |
| 428 */ | |
| 429 void *opaque; | |
| 430 | |
| 0 | 431 char codec_name[32]; |
|
371
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
432 enum CodecType codec_type; /* see CODEC_TYPE_xxx */ |
|
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
433 enum CodecID codec_id; /* see CODEC_ID_xxx */ |
| 0 | 434 unsigned int codec_tag; /* codec tag, only used if unknown codec */ |
|
411
5c8b3a717929
workaround dc_scale bug in old ffmpeg msmpeg4v3 encoder (set workaround_bugs=1 for this)
michaelni
parents:
399
diff
changeset
|
435 |
| 684 | 436 /** |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
437 * workaround bugs in encoders which sometimes cannot be detected automatically |
| 684 | 438 * encoding: unused |
| 439 * decoding: set by user | |
| 440 */ | |
| 441 int workaround_bugs; | |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
442 #define FF_BUG_AUTODETECT 1 //autodetection |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
443 #define FF_BUG_OLD_MSMPEG4 2 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
444 #define FF_BUG_XVID_ILACE 4 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
445 #define FF_BUG_UMP4 8 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
446 #define FF_BUG_NO_PADDING 16 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
447 #define FF_BUG_AC_VLC 32 |
| 760 | 448 #define FF_BUG_QPEL_CHROMA 64 |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
449 //#define FF_BUG_FAKE_SCALABILITY 16 //autodetection should work 100% |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
450 |
| 684 | 451 /** |
| 452 * encoding: set by user | |
| 453 * decoding: unused | |
| 454 */ | |
| 460 | 455 int luma_elim_threshold; |
| 684 | 456 |
| 457 /** | |
| 458 * encoding: set by user | |
| 459 * decoding: unused | |
| 460 */ | |
| 460 | 461 int chroma_elim_threshold; |
| 684 | 462 |
| 463 /** | |
| 464 * strictly follow the std (MPEG4, ...) | |
| 465 * encoding: set by user | |
| 466 * decoding: unused | |
| 467 */ | |
| 468 int strict_std_compliance; | |
| 469 | |
| 470 /** | |
| 471 * qscale offset between ip and b frames | |
|
686
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
684
diff
changeset
|
472 * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset) |
|
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
684
diff
changeset
|
473 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset) |
| 684 | 474 * encoding: set by user. |
| 475 * decoding: unused | |
| 476 */ | |
| 477 float b_quant_offset; | |
| 478 | |
| 479 /** | |
| 480 * error resilience {-1,0,1} higher values will detect more errors but may missdetect | |
| 481 * some more or less valid parts as errors | |
| 482 * encoding: unused | |
| 483 * decoding: set by user | |
| 484 */ | |
| 460 | 485 int error_resilience; |
|
466
805714c0c10f
new field for communicating with external postprocessing
nickols_k
parents:
460
diff
changeset
|
486 |
|
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
487 /** |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
488 * obsolete, just here to keep ABI compatible (should be removed perhaps, dunno) |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
489 */ |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
490 int *quant_store; |
| 553 | 491 |
|
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
492 /** |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
493 * QP store stride |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
494 * encoding: unused |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
495 * decoding: set by lavc |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
496 */ |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
497 int qstride; |
| 684 | 498 |
| 499 /** | |
| 500 * buffer, where the next picture should be decoded into | |
| 501 * encoding: unused | |
| 502 * decoding: set by user in get_buffer_callback to a buffer into which the next part | |
| 503 * of the bitstream will be decoded, and set by lavc at end of frame to the | |
| 504 * next frame which needs to be displayed | |
| 505 */ | |
| 553 | 506 uint8_t *dr_buffer[3]; |
| 684 | 507 |
| 508 /** | |
| 509 * stride of the luminance part of the dr buffer | |
| 510 * encoding: unused | |
| 511 * decoding: set by user | |
| 512 */ | |
| 553 | 513 int dr_stride; |
| 684 | 514 |
| 515 /** | |
| 516 * same behavior as dr_buffer, just for some private data of the user | |
| 517 * encoding: unused | |
| 518 * decoding: set by user in get_buffer_callback, and set by lavc at end of frame | |
| 519 */ | |
| 553 | 520 void *dr_opaque_frame; |
| 684 | 521 |
| 522 /** | |
| 523 * called at the beginning of each frame to get a buffer for it | |
| 524 * encoding: unused | |
| 525 * decoding: set by user | |
| 526 */ | |
|
771
d4cc92144266
handle direct rendering buffer allocation failure
michaelni
parents:
760
diff
changeset
|
527 int (*get_buffer_callback)(struct AVCodecContext *c, int width, int height, int pict_type); |
| 556 | 528 |
| 684 | 529 /** |
| 530 * is 1 if the decoded stream contains b frames, 0 otherwise | |
| 531 * encoding: unused | |
| 532 * decoding: set by lavc | |
| 533 */ | |
| 534 int has_b_frames; | |
| 535 | |
| 536 /** | |
| 537 * stride of the chrominance part of the dr buffer | |
| 538 * encoding: unused | |
| 539 * decoding: set by user | |
| 540 */ | |
| 556 | 541 int dr_uvstride; |
| 684 | 542 |
| 543 /** | |
| 544 * number of dr buffers | |
| 545 * encoding: unused | |
| 546 * decoding: set by user | |
| 547 */ | |
| 556 | 548 int dr_ip_buffer_count; |
| 684 | 549 |
| 783 | 550 int block_align; /* used by some WAV based audio codecs */ |
| 613 | 551 |
|
581
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
552 int parse_only; /* decoding only: if true, only parsing is done |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
553 (function avcodec_parse_frame()). The frame |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
554 data is returned. Only MPEG codecs support this now. */ |
| 613 | 555 |
| 684 | 556 /** |
| 557 * 0-> h263 quant 1-> mpeg quant | |
| 558 * encoding: set by user. | |
| 559 * decoding: unused | |
| 560 */ | |
| 561 int mpeg_quant; | |
| 613 | 562 |
| 684 | 563 /** |
| 564 * pass1 encoding statistics output buffer | |
| 565 * encoding: set by lavc | |
| 566 * decoding: unused | |
| 567 */ | |
| 613 | 568 char *stats_out; /* encoding statistics output buffer */ |
| 684 | 569 |
| 570 /** | |
| 571 * pass2 encoding statistics input buffer. | |
| 572 * concatenated stuff from stats_out of pass1 should be placed here | |
| 573 * encoding: allocated/set/freed by user | |
| 574 * decoding: unused | |
| 575 */ | |
| 576 char *stats_in; | |
| 577 | |
| 578 /** | |
| 579 * ratecontrol qmin qmax limiting method | |
| 580 * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax | |
| 581 * encoding: set by user. | |
| 582 * decoding: unused | |
| 583 */ | |
| 613 | 584 float rc_qsquish; |
| 684 | 585 |
| 613 | 586 float rc_qmod_amp; |
| 587 int rc_qmod_freq; | |
| 684 | 588 |
| 589 /** | |
| 590 * ratecontrol override, see RcOverride | |
| 591 * encoding: allocated/set/freed by user. | |
| 592 * decoding: unused | |
| 593 */ | |
| 613 | 594 RcOverride *rc_override; |
| 595 int rc_override_count; | |
| 684 | 596 |
| 597 /** | |
| 598 * rate control equation | |
| 599 * encoding: set by user | |
| 600 * decoding: unused | |
| 601 */ | |
| 613 | 602 char *rc_eq; |
| 684 | 603 |
| 604 /** | |
| 605 * maximum bitrate | |
| 606 * encoding: set by user. | |
| 607 * decoding: unused | |
| 608 */ | |
| 613 | 609 int rc_max_rate; |
| 684 | 610 |
| 611 /** | |
| 612 * minimum bitrate | |
| 613 * encoding: set by user. | |
| 614 * decoding: unused | |
| 615 */ | |
| 613 | 616 int rc_min_rate; |
| 684 | 617 |
| 618 /** | |
| 619 * decoder bitstream buffer size | |
| 620 * encoding: set by user. | |
| 621 * decoding: unused | |
| 622 */ | |
| 613 | 623 int rc_buffer_size; |
| 624 float rc_buffer_aggressivity; | |
| 684 | 625 |
| 626 /** | |
| 627 * qscale factor between p and i frames | |
| 628 * encoding: set by user. | |
| 629 * decoding: unused | |
| 630 */ | |
| 631 float i_quant_factor; | |
| 632 | |
| 633 /** | |
| 634 * qscale offset between p and i frames | |
|
686
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
684
diff
changeset
|
635 * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset) |
|
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
684
diff
changeset
|
636 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset) |
| 684 | 637 * encoding: set by user. |
| 638 * decoding: unused | |
| 639 */ | |
| 640 float i_quant_offset; | |
| 641 | |
| 642 /** | |
| 643 * initial complexity for pass1 ratecontrol | |
| 644 * encoding: set by user. | |
| 645 * decoding: unused | |
| 646 */ | |
| 613 | 647 float rc_initial_cplx; |
|
581
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
648 |
| 684 | 649 /** |
| 880 | 650 * Obsolete, will be removed |
| 684 | 651 */ |
| 618 | 652 int aspected_width; |
| 653 int aspected_height; | |
| 654 | |
| 684 | 655 /** |
| 656 * dct algorithm, see FF_DCT_* below | |
| 657 * encoding: set by user | |
| 658 * decoding: unused | |
| 659 */ | |
|
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
618
diff
changeset
|
660 int dct_algo; |
|
628
f596db4aa871
sun solaris compilation bugfix, patch by (Martin Olschewski <olschewski at zpr dot uni-koeln dot de>)
michaelni
parents:
625
diff
changeset
|
661 #define FF_DCT_AUTO 0 |
|
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
618
diff
changeset
|
662 #define FF_DCT_FASTINT 1 |
|
628
f596db4aa871
sun solaris compilation bugfix, patch by (Martin Olschewski <olschewski at zpr dot uni-koeln dot de>)
michaelni
parents:
625
diff
changeset
|
663 #define FF_DCT_INT 2 |
|
f596db4aa871
sun solaris compilation bugfix, patch by (Martin Olschewski <olschewski at zpr dot uni-koeln dot de>)
michaelni
parents:
625
diff
changeset
|
664 #define FF_DCT_MMX 3 |
|
f596db4aa871
sun solaris compilation bugfix, patch by (Martin Olschewski <olschewski at zpr dot uni-koeln dot de>)
michaelni
parents:
625
diff
changeset
|
665 #define FF_DCT_MLIB 4 |
|
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
666 #define FF_DCT_ALTIVEC 5 |
|
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
618
diff
changeset
|
667 |
| 684 | 668 /** |
| 669 * presentation timestamp in micro seconds (time when frame should be shown to user) | |
| 670 * if 0 then the frame_rate will be used as reference | |
| 671 * encoding: set by user | |
| 672 * decoding; set by lavc | |
| 673 */ | |
| 674 long long int pts; | |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
675 |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
676 /** |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
677 * luminance masking (0-> disabled) |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
678 * encoding: set by user |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
679 * decoding: unused |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
680 */ |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
681 float lumi_masking; |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
682 |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
683 /** |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
684 * temporary complexity masking (0-> disabled) |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
685 * encoding: set by user |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
686 * decoding: unused |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
687 */ |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
688 float temporal_cplx_masking; |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
689 |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
690 /** |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
691 * spatial complexity masking (0-> disabled) |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
692 * encoding: set by user |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
693 * decoding: unused |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
694 */ |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
695 float spatial_cplx_masking; |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
696 |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
697 /** |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
698 * p block masking (0-> disabled) |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
699 * encoding: set by user |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
700 * decoding: unused |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
701 */ |
|
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
702 float p_masking; |
| 654 | 703 |
|
693
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
704 /** |
|
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
705 * darkness masking (0-> disabled) |
|
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
706 * encoding: set by user |
|
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
707 * decoding: unused |
|
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
708 */ |
|
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
709 float dark_masking; |
|
700
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
710 |
|
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
711 /** |
|
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
712 * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A') |
|
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
713 * this is used to workaround some encoder bugs |
|
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
714 * encoding: unused |
| 701 | 715 * decoding: set by user, will be converted to upper case by lavc during init |
|
700
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
716 */ |
|
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
717 int fourcc; |
|
693
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
718 |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
719 /** |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
720 * idct algorithm, see FF_IDCT_* below |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
721 * encoding: set by user |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
722 * decoding: set by user |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
723 */ |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
724 int idct_algo; |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
725 #define FF_IDCT_AUTO 0 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
726 #define FF_IDCT_INT 1 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
727 #define FF_IDCT_SIMPLE 2 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
728 #define FF_IDCT_SIMPLEMMX 3 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
729 #define FF_IDCT_LIBMPEG2MMX 4 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
730 #define FF_IDCT_PS2 5 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
731 #define FF_IDCT_MLIB 6 |
|
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
732 #define FF_IDCT_ARM 7 |
|
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
733 #define FF_IDCT_ALTIVEC 8 |
|
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
734 |
|
713
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
735 /** |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
736 * slice count |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
737 * encoding: set by lavc |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
738 * decoding: set by user (or 0) |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
739 */ |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
740 int slice_count; |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
741 /** |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
742 * slice offsets in the frame in bytes |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
743 * encoding: set/allocated by lavc |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
744 * decoding: set/allocated by user (or NULL) |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
745 */ |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
746 int *slice_offset; |
|
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
747 |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
748 /** |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
749 * error concealment flags |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
750 * encoding: unused |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
751 * decoding: set by user |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
752 */ |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
753 int error_concealment; |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
754 #define FF_EC_GUESS_MVS 1 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
755 #define FF_EC_DEBLOCK 2 |
|
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
756 |
|
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
757 /** |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
758 * QP table of the currently decoded frame |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
759 * encoding; unused |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
760 * decoding: set by lavc |
| 684 | 761 */ |
| 849 | 762 int8_t *current_qscale_table; |
|
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
763 /** |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
764 * QP table of the currently displayed frame |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
765 * encoding; unused |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
766 * decoding: set by lavc |
|
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
767 */ |
| 849 | 768 int8_t *display_qscale_table; |
| 843 | 769 /** |
| 770 * force specific pict_type. | |
| 771 * encoding; set by user (I/P/B_TYPE) | |
| 772 * decoding: unused | |
| 773 */ | |
| 774 int force_type; | |
| 849 | 775 /** |
| 776 * dsp_mask could be used to disable unwanted | |
| 777 * CPU features (i.e. MMX, SSE. ...) | |
| 778 */ | |
| 779 unsigned dsp_mask; | |
| 866 | 780 |
| 781 /** | |
| 782 * bits per sample/pixel from the demuxer (needed for huffyuv) | |
| 783 * encoding; set by lavc | |
| 784 * decoding: set by user | |
| 785 */ | |
| 786 int bits_per_sample; | |
| 787 | |
| 788 /** | |
| 789 * prediction method (needed for huffyuv) | |
| 790 * encoding; set by user | |
| 791 * decoding: unused | |
| 792 */ | |
| 793 int prediction_method; | |
| 794 #define FF_PRED_LEFT 0 | |
| 795 #define FF_PRED_PLANE 1 | |
| 796 #define FF_PRED_MEDIAN 2 | |
| 880 | 797 |
| 798 /** | |
| 799 * aspect ratio. (0 if unknown) | |
| 800 * encoding: set by user. | |
| 801 * decoding: set by lavc. | |
| 802 */ | |
| 803 float aspect_ratio; | |
| 0 | 804 } AVCodecContext; |
| 805 | |
| 806 typedef struct AVCodec { | |
| 862 | 807 const char *name; |
| 0 | 808 int type; |
| 809 int id; | |
| 810 int priv_data_size; | |
| 811 int (*init)(AVCodecContext *); | |
| 812 int (*encode)(AVCodecContext *, UINT8 *buf, int buf_size, void *data); | |
| 813 int (*close)(AVCodecContext *); | |
| 556 | 814 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, |
| 0 | 815 UINT8 *buf, int buf_size); |
| 67 | 816 int capabilities; |
| 0 | 817 struct AVCodec *next; |
| 818 } AVCodec; | |
| 819 | |
|
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
820 /** |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
821 * four components are given, that's all. |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
822 * the last component is alpha |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
823 */ |
| 0 | 824 typedef struct AVPicture { |
|
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
825 UINT8 *data[4]; |
|
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
826 int linesize[4]; |
| 0 | 827 } AVPicture; |
| 828 | |
| 829 extern AVCodec ac3_encoder; | |
| 830 extern AVCodec mp2_encoder; | |
|
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
831 extern AVCodec mp3lame_encoder; |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
630
diff
changeset
|
832 extern AVCodec oggvorbis_encoder; |
| 0 | 833 extern AVCodec mpeg1video_encoder; |
| 834 extern AVCodec h263_encoder; | |
| 835 extern AVCodec h263p_encoder; | |
| 836 extern AVCodec rv10_encoder; | |
| 837 extern AVCodec mjpeg_encoder; | |
| 67 | 838 extern AVCodec mpeg4_encoder; |
| 307 | 839 extern AVCodec msmpeg4v1_encoder; |
| 840 extern AVCodec msmpeg4v2_encoder; | |
| 841 extern AVCodec msmpeg4v3_encoder; | |
| 500 | 842 extern AVCodec wmv1_encoder; |
| 843 extern AVCodec wmv2_encoder; | |
| 866 | 844 extern AVCodec huffyuv_encoder; |
| 0 | 845 |
| 846 extern AVCodec h263_decoder; | |
| 67 | 847 extern AVCodec mpeg4_decoder; |
| 307 | 848 extern AVCodec msmpeg4v1_decoder; |
| 849 extern AVCodec msmpeg4v2_decoder; | |
| 850 extern AVCodec msmpeg4v3_decoder; | |
| 311 | 851 extern AVCodec wmv1_decoder; |
| 500 | 852 extern AVCodec wmv2_decoder; |
| 0 | 853 extern AVCodec mpeg_decoder; |
| 854 extern AVCodec h263i_decoder; | |
| 855 extern AVCodec rv10_decoder; | |
| 521 | 856 extern AVCodec svq1_decoder; |
| 724 | 857 extern AVCodec dvvideo_decoder; |
| 858 extern AVCodec dvaudio_decoder; | |
| 783 | 859 extern AVCodec wmav1_decoder; |
| 860 extern AVCodec wmav2_decoder; | |
| 24 | 861 extern AVCodec mjpeg_decoder; |
| 881 | 862 extern AVCodec mjpegb_decoder; |
| 322 | 863 extern AVCodec mp2_decoder; |
| 92 | 864 extern AVCodec mp3_decoder; |
|
827
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
865 extern AVCodec mace3_decoder; |
|
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
866 extern AVCodec mace6_decoder; |
| 866 | 867 extern AVCodec huffyuv_decoder; |
| 0 | 868 |
| 92 | 869 /* pcm codecs */ |
| 870 #define PCM_CODEC(id, name) \ | |
| 871 extern AVCodec name ## _decoder; \ | |
|
846
ade627a74709
avoid duplicate ";" warnings (based upon a patch by mru at users dot sourceforge dot net (M?ns Rullg?rd))
michaelni
parents:
845
diff
changeset
|
872 extern AVCodec name ## _encoder |
| 92 | 873 |
| 874 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); | |
| 875 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
| 876 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
| 877 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
| 878 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
| 879 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
| 880 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
| 881 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
| 882 | |
|
573
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
883 /* adpcm codecs */ |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
884 |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
885 PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt); |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
886 PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav); |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
887 PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms); |
|
b0f52172f4c5
beos/mov/adpcm patch by Fran?ois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
888 |
| 92 | 889 #undef PCM_CODEC |
| 890 | |
| 891 /* dummy raw video codec */ | |
| 0 | 892 extern AVCodec rawvideo_codec; |
| 893 | |
| 894 /* the following codecs use external GPL libs */ | |
| 895 extern AVCodec ac3_decoder; | |
| 896 | |
| 897 /* resample.c */ | |
| 898 | |
| 899 struct ReSampleContext; | |
| 900 | |
| 901 typedef struct ReSampleContext ReSampleContext; | |
| 902 | |
| 903 ReSampleContext *audio_resample_init(int output_channels, int input_channels, | |
| 904 int output_rate, int input_rate); | |
| 905 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); | |
| 906 void audio_resample_close(ReSampleContext *s); | |
| 907 | |
| 908 /* YUV420 format is assumed ! */ | |
| 909 | |
| 910 struct ImgReSampleContext; | |
| 911 | |
| 912 typedef struct ImgReSampleContext ImgReSampleContext; | |
| 913 | |
| 914 ImgReSampleContext *img_resample_init(int output_width, int output_height, | |
| 915 int input_width, int input_height); | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
916 |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
917 ImgReSampleContext *img_resample_full_init(int owidth, int oheight, |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
918 int iwidth, int iheight, |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
919 int topBand, int bottomBand, |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
920 int leftBand, int rightBand); |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
921 |
| 0 | 922 void img_resample(ImgReSampleContext *s, |
| 923 AVPicture *output, AVPicture *input); | |
| 924 | |
| 925 void img_resample_close(ImgReSampleContext *s); | |
| 926 | |
| 49 | 927 void avpicture_fill(AVPicture *picture, UINT8 *ptr, |
| 928 int pix_fmt, int width, int height); | |
| 929 int avpicture_get_size(int pix_fmt, int width, int height); | |
| 930 | |
| 931 /* convert among pixel formats */ | |
| 932 int img_convert(AVPicture *dst, int dst_pix_fmt, | |
| 933 AVPicture *src, int pix_fmt, | |
| 934 int width, int height); | |
| 935 | |
| 936 /* deinterlace a picture */ | |
| 937 int avpicture_deinterlace(AVPicture *dst, AVPicture *src, | |
| 0 | 938 int pix_fmt, int width, int height); |
| 939 | |
| 940 /* external high level API */ | |
| 941 | |
| 942 extern AVCodec *first_avcodec; | |
| 943 | |
| 362 | 944 /* returns LIBAVCODEC_VERSION_INT constant */ |
| 399 | 945 unsigned avcodec_version(void); |
| 379 | 946 /* returns LIBAVCODEC_BUILD constant */ |
| 399 | 947 unsigned avcodec_build(void); |
| 0 | 948 void avcodec_init(void); |
| 949 | |
| 399 | 950 void avcodec_set_bit_exact(void); |
| 951 | |
| 0 | 952 void register_avcodec(AVCodec *format); |
| 953 AVCodec *avcodec_find_encoder(enum CodecID id); | |
| 177 | 954 AVCodec *avcodec_find_encoder_by_name(const char *name); |
| 0 | 955 AVCodec *avcodec_find_decoder(enum CodecID id); |
| 956 AVCodec *avcodec_find_decoder_by_name(const char *name); | |
| 957 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); | |
| 958 | |
| 703 | 959 AVCodecContext *avcodec_alloc_context(void); |
| 0 | 960 int avcodec_open(AVCodecContext *avctx, AVCodec *codec); |
| 961 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, | |
| 962 int *frame_size_ptr, | |
| 963 UINT8 *buf, int buf_size); | |
| 964 int avcodec_decode_video(AVCodecContext *avctx, AVPicture *picture, | |
| 965 int *got_picture_ptr, | |
| 966 UINT8 *buf, int buf_size); | |
|
581
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
967 int avcodec_parse_frame(AVCodecContext *avctx, UINT8 **pdata, |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
968 int *data_size_ptr, |
|
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
969 UINT8 *buf, int buf_size); |
| 0 | 970 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size, |
| 971 const short *samples); | |
| 972 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
| 973 const AVPicture *pict); | |
| 974 | |
| 975 int avcodec_close(AVCodecContext *avctx); | |
| 976 | |
| 977 void avcodec_register_all(void); | |
| 92 | 978 |
| 341 | 979 void avcodec_flush_buffers(AVCodecContext *avctx); |
| 980 | |
| 382 | 981 /** |
| 982 * Interface for 0.5.0 version | |
| 983 * | |
| 984 * do not even think about it's usage for this moment | |
| 985 */ | |
| 986 | |
| 987 typedef struct { | |
| 988 // compressed size used from given memory buffer | |
| 989 int size; | |
| 990 /// I/P/B frame type | |
| 991 int frame_type; | |
| 992 } avc_enc_result_t; | |
| 993 | |
| 994 /** | |
| 995 * Commands | |
| 996 * order can't be changed - once it was defined | |
| 997 */ | |
| 998 typedef enum { | |
| 999 // general commands | |
| 1000 AVC_OPEN_BY_NAME = 0xACA000, | |
| 1001 AVC_OPEN_BY_CODEC_ID, | |
| 1002 AVC_OPEN_BY_FOURCC, | |
| 1003 AVC_CLOSE, | |
| 1004 | |
| 1005 AVC_FLUSH, | |
| 1006 // pin - struct { uint8_t* src, uint_t src_size } | |
| 1007 // pout - struct { AVPicture* img, consumed_bytes, | |
| 1008 AVC_DECODE, | |
| 1009 // pin - struct { AVPicture* img, uint8_t* dest, uint_t dest_size } | |
| 1010 // pout - uint_t used_from_dest_size | |
| 1011 AVC_ENCODE, | |
| 1012 | |
| 1013 // query/get video commands | |
| 1014 AVC_GET_VERSION = 0xACB000, | |
| 1015 AVC_GET_WIDTH, | |
| 1016 AVC_GET_HEIGHT, | |
| 1017 AVC_GET_DELAY, | |
| 1018 AVC_GET_QUANT_TABLE, | |
| 1019 // ... | |
| 1020 | |
| 1021 // query/get audio commands | |
| 1022 AVC_GET_FRAME_SIZE = 0xABC000, | |
| 1023 | |
| 1024 // maybe define some simple structure which | |
| 1025 // might be passed to the user - but they can't | |
| 1026 // contain any codec specific parts and these | |
| 1027 // calls are usualy necessary only few times | |
| 1028 | |
| 1029 // set video commands | |
| 1030 AVC_SET_WIDTH = 0xACD000, | |
| 1031 AVC_SET_HEIGHT, | |
| 1032 | |
| 1033 // set video encoding commands | |
| 1034 AVC_SET_FRAME_RATE = 0xACD800, | |
| 1035 AVC_SET_QUALITY, | |
| 1036 AVC_SET_HURRY_UP, | |
| 1037 | |
| 1038 // set audio commands | |
| 1039 AVC_SET_SAMPLE_RATE = 0xACE000, | |
| 1040 AVC_SET_CHANNELS, | |
| 1041 | |
| 1042 } avc_cmd_t; | |
| 1043 | |
| 1044 /** | |
| 1045 * \param handle allocated private structure by libavcodec | |
| 1046 * for initialization pass NULL - will be returned pout | |
| 1047 * user is supposed to know nothing about its structure | |
| 1048 * \param cmd type of operation to be performed | |
| 1049 * \param pint input parameter | |
| 1050 * \param pout output parameter | |
| 1051 * | |
| 1052 * \returns command status - eventually for query command it might return | |
| 1053 * integer resulting value | |
| 1054 */ | |
| 1055 int avcodec(void* handle, avc_cmd_t cmd, void* pin, void* pout); | |
| 1056 | |
| 492 | 1057 /* memory */ |
| 862 | 1058 void *av_malloc(unsigned int size); |
| 1059 void *av_mallocz(unsigned int size); | |
| 492 | 1060 void av_free(void *ptr); |
| 1061 void __av_freep(void **ptr); | |
| 1062 #define av_freep(p) __av_freep((void **)(p)) | |
| 1063 | |
| 92 | 1064 #endif /* AVCODEC_H */ |
