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