Mercurial > libavcodec.hg
annotate avcodec.h @ 1031:19de1445beb2 libavcodec
use av_malloc() functions - added av_strdup and av_realloc()
author | bellard |
---|---|
date | Thu, 23 Jan 2003 23:03:09 +0000 |
parents | d6ba0641cc36 |
children | 1d906a29afb6 |
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" | |
991
2fabb7d709e7
build update - avpicture_fill() returns the image size
bellard
parents:
987
diff
changeset
|
8 #define LIBAVCODEC_BUILD 4654 |
2fabb7d709e7
build update - avpicture_fill() returns the image size
bellard
parents:
987
diff
changeset
|
9 #define LIBAVCODEC_BUILD_STR "4654" |
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 Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
49 |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
50 /* various adpcm codecs */ |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
51 CODEC_ID_ADPCM_IMA_QT, |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
52 CODEC_ID_ADPCM_IMA_WAV, |
b0f52172f4c5
beos/mov/adpcm patch by Franois 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 { | |
63 PIX_FMT_YUV420P, | |
64 PIX_FMT_YUV422, | |
987
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
65 PIX_FMT_RGB24, /* 3 bytes, R is first */ |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
66 PIX_FMT_BGR24, /* 3 bytes, B is first */ |
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, |
987
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
69 PIX_FMT_RGBA32, /* always stored in cpu endianness */ |
733 | 70 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
|
71 PIX_FMT_YUV411P, |
987
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
72 PIX_FMT_RGB565, /* always stored in cpu endianness */ |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
73 PIX_FMT_RGB555, /* always stored in cpu endianness, most significant bit to 1 */ |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
74 PIX_FMT_GRAY8, |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
75 PIX_FMT_MONOWHITE, /* 0 is white */ |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
76 PIX_FMT_MONOBLACK, /* 0 is black */ |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
77 PIX_FMT_NB, |
0 | 78 }; |
79 | |
92 | 80 /* currently unused, may be used if 24/32 bits samples ever supported */ |
81 enum SampleFormat { | |
82 SAMPLE_FMT_S16 = 0, /* signed 16 bits */ | |
83 }; | |
84 | |
0 | 85 /* in bytes */ |
783 | 86 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 131072 |
0 | 87 |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
88 /** |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
89 * 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
|
90 * to avoid overreading (and possibly segfaulting) |
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 #define FF_INPUT_BUFFER_PADDING_SIZE 8 |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
93 |
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
94 /* motion estimation type, EPZS by default */ |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
95 enum Motion_Est_ID { |
321 | 96 ME_ZERO = 1, |
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
97 ME_FULL, |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
98 ME_LOG, |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
99 ME_PHODS, |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
100 ME_EPZS, |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
101 ME_X1 |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
102 }; |
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
103 |
613 | 104 typedef struct RcOverride{ |
105 int start_frame; | |
106 int end_frame; | |
107 int qscale; // if this is 0 then quality_factor will be used instead | |
108 float quality_factor; | |
109 } RcOverride; | |
110 | |
321 | 111 /* only for ME compatiblity with old apps */ |
112 extern int motion_estimation_method; | |
113 | |
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
317
diff
changeset
|
114 /* ME algos sorted by quality */ |
367 | 115 static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, |
116 ME_X1, ME_EPZS, ME_FULL }; | |
0 | 117 |
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
|
118 |
924 | 119 #define FF_MAX_B_FRAMES 8 |
324 | 120 |
681 | 121 /* encoding support |
122 these flags can be passed in AVCodecContext.flags before initing | |
123 Note: note not everything is supported yet | |
124 */ | |
0 | 125 |
684 | 126 #define CODEC_FLAG_HQ 0x0001 /* brute force MB-type decission mode (slow) */ |
127 #define CODEC_FLAG_QSCALE 0x0002 /* use fixed qscale */ | |
128 #define CODEC_FLAG_4MV 0x0004 /* 4 MV per MB allowed */ | |
129 #define CODEC_FLAG_QPEL 0x0010 /* use qpel MC */ | |
130 #define CODEC_FLAG_GMC 0x0020 /* use GMC */ | |
131 #define CODEC_FLAG_PART 0x0080 /* use data partitioning */ | |
324 | 132 /* parent program gurantees that the input for b-frame containing streams is not written to |
133 for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */ | |
329 | 134 #define CODEC_FLAG_INPUT_PRESERVED 0x0100 |
684 | 135 #define CODEC_FLAG_PASS1 0x0200 /* use internal 2pass ratecontrol in first pass mode */ |
136 #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
|
137 #define CODEC_FLAG_EXTERN_HUFF 0x1000 /* use external huffman table (for mjpeg) */ |
684 | 138 #define CODEC_FLAG_GRAY 0x2000 /* only decode/encode grayscale */ |
553 | 139 #define CODEC_FLAG_EMU_EDGE 0x4000/* dont draw edges */ |
909
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
140 #define CODEC_FLAG_PSNR 0x8000 /* error[?] variables will be set during encoding */ |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
141 #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
|
142 of only at frame boundaries */ |
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
143 #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 /* normalize adaptive quantization */ |
697 | 144 #define CODEC_FLAG_INTERLACED_DCT 0x00040000 /* use interlaced dct */ |
831 | 145 #define CODEC_FLAG_LOW_DELAY 0x00080000 /* force low delay / will fail on b frames */ |
880 | 146 #define CODEC_FLAG_ALT_SCAN 0x00100000 /* use alternate scan */ |
945 | 147 #define CODEC_FLAG_TRELLIS_QUANT 0x00200000 /* use trellis quantization */ |
953 | 148 #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 /* place global headers in extradata instead of every keyframe */ |
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
149 |
67 | 150 /* codec capabilities */ |
151 | |
684 | 152 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 /* decoder can use draw_horiz_band callback */ |
553 | 153 #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
|
154 /* 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
|
155 used */ |
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
156 #define CODEC_CAP_PARSE_ONLY 0x0004 |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
157 #define CODEC_CAP_TRUNCATED 0x0008 |
67 | 158 |
0 | 159 #define FRAME_RATE_BASE 10000 |
160 | |
925 | 161 #define FF_COMMON_FRAME \ |
903 | 162 uint8_t *data[4];\ |
163 int linesize[4];\ | |
164 /**\ | |
914 | 165 * pointer to the first allocated byte of the picture. can be used in get_buffer/release_buffer\ |
903 | 166 * this isnt used by lavc unless the default get/release_buffer() is used\ |
167 * encoding: \ | |
168 * decoding: \ | |
169 */\ | |
170 uint8_t *base[4];\ | |
171 /**\ | |
172 * 1 -> keyframe, 0-> not\ | |
173 * encoding: set by lavc\ | |
174 * decoding: set by lavc\ | |
175 */\ | |
176 int key_frame;\ | |
177 \ | |
178 /**\ | |
179 * picture type of the frame, see ?_TYPE below\ | |
180 * encoding: set by lavc for coded_picture (and set by user for input)\ | |
181 * decoding: set by lavc\ | |
182 */\ | |
183 int pict_type;\ | |
184 \ | |
185 /**\ | |
186 * presentation timestamp in micro seconds (time when frame should be shown to user)\ | |
187 * if 0 then the frame_rate will be used as reference\ | |
188 * encoding: MUST be set by user\ | |
189 * decoding: set by lavc\ | |
190 */\ | |
191 long long int pts;\ | |
192 \ | |
193 /**\ | |
194 * picture number in bitstream order.\ | |
195 * encoding: set by\ | |
196 * decoding: set by lavc\ | |
197 */\ | |
198 int coded_picture_number;\ | |
199 /**\ | |
200 * encoding: set by\ | |
201 * decoding: set by lavc\ | |
202 * picture number in display order.\ | |
203 */\ | |
204 int display_picture_number;\ | |
205 \ | |
206 /**\ | |
207 * quality (between 1 (good) and 31 (bad)) \ | |
208 * encoding: set by lavc for coded_picture (and set by user for input)\ | |
209 * decoding: set by lavc\ | |
210 */\ | |
211 float quality; \ | |
212 \ | |
213 /**\ | |
214 * buffer age (1->was last buffer and dint change, 2->..., ...).\ | |
215 * set to something large if the buffer has not been used yet \ | |
216 * encoding: unused\ | |
217 * decoding: MUST be set by get_buffer()\ | |
218 */\ | |
219 int age;\ | |
220 \ | |
221 /**\ | |
222 * is this picture used as reference\ | |
223 * encoding: unused\ | |
224 * decoding: set by lavc (before get_buffer() call))\ | |
225 */\ | |
226 int reference;\ | |
227 \ | |
228 /**\ | |
229 * QP table\ | |
230 * encoding: unused\ | |
231 * decoding: set by lavc\ | |
232 */\ | |
233 int8_t *qscale_table;\ | |
234 /**\ | |
235 * QP store stride\ | |
236 * encoding: unused\ | |
237 * decoding: set by lavc\ | |
238 */\ | |
239 int qstride;\ | |
240 \ | |
241 /**\ | |
242 * mbskip_table[mb]>=1 if MB didnt change\ | |
243 * stride= mb_width = (width+15)>>4\ | |
244 * encoding: unused\ | |
245 * decoding: set by lavc\ | |
246 */\ | |
247 uint8_t *mbskip_table;\ | |
248 \ | |
249 /**\ | |
250 * for some private data of the user\ | |
251 * encoding: unused\ | |
252 * decoding: set by user\ | |
253 */\ | |
254 void *opaque;\ | |
909
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
255 \ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
256 /**\ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
257 * error\ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
258 * encoding: set by lavc if flags&CODEC_FLAG_PSNR\ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
259 * decoding: unused\ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
260 */\ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
261 uint64_t error[4];\ |
924 | 262 \ |
263 /**\ | |
264 * type of the buffer (to keep track of who has to dealloc data[*])\ | |
265 * encoding: set by the one who allocs it\ | |
266 * decoding: set by the one who allocs it\ | |
267 * Note: user allocated (direct rendering) & internal buffers can not coexist currently\ | |
268 */\ | |
269 int type;\ | |
270 | |
271 #define FF_BUFFER_TYPE_INTERNAL 1 | |
272 #define FF_BUFFER_TYPE_USER 2 // Direct rendering buffers | |
273 #define FF_BUFFER_TYPE_SHARED 4 // input frame for encoding(wont be dealloced) | |
274 | |
903 | 275 |
909
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
276 #define FF_I_TYPE 1 // Intra |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
277 #define FF_P_TYPE 2 // Predicted |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
278 #define FF_B_TYPE 3 // Bi-dir predicted |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
279 #define FF_S_TYPE 4 // S(GMC)-VOP MPEG4 |
903 | 280 |
925 | 281 typedef struct AVFrame { |
282 FF_COMMON_FRAME | |
283 } AVFrame; | |
903 | 284 |
0 | 285 typedef struct AVCodecContext { |
684 | 286 /** |
287 * the average bitrate | |
288 * encoding: set by user. unused for constant quantizer encoding | |
289 * decoding: set by lavc. 0 or some bitrate if this info is available in the stream | |
290 */ | |
0 | 291 int bit_rate; |
684 | 292 |
293 /** | |
294 * number of bits the bitstream is allowed to diverge from the reference | |
295 * the reference can be CBR (for CBR pass1) or VBR (for pass2) | |
296 * encoding: set by user. unused for constant quantizer encoding | |
297 * decoding: unused | |
298 */ | |
299 int bit_rate_tolerance; | |
300 | |
301 /** | |
302 * CODEC_FLAG_* | |
303 * encoding: set by user. | |
304 * decoding: set by user. | |
305 */ | |
0 | 306 int flags; |
684 | 307 |
308 /** | |
309 * some codecs needs additionnal format info. It is stored here | |
310 * encoding: set by user. | |
311 * decoding: set by lavc. (FIXME is this ok?) | |
312 */ | |
313 int sub_id; | |
314 | |
315 /** | |
316 * motion estimation algorithm used for video coding | |
903 | 317 * encoding: MUST be set by user. |
684 | 318 * decoding: unused |
319 */ | |
320 int me_method; | |
321 | |
322 /** | |
323 * some codecs need / can use extra-data like huffman tables | |
324 * mjpeg: huffman tables | |
325 * rv10: additional flags | |
747
3d4377531f6c
mpeg4 header parser clenup (needed for parsing of VOL header in avctx->extradata)
michaelni
parents:
745
diff
changeset
|
326 * 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
|
327 * encoding: set/allocated/freed by lavc. |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
328 * decoding: set/allocated/freed by user. |
684 | 329 */ |
349
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
330 void *extradata; |
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
331 int extradata_size; |
34f6c77ff01a
Support for external huffman table and various fixes by Alex Beregszaszi <alex@naxine.org>
arpi_esp
parents:
345
diff
changeset
|
332 |
0 | 333 /* video only */ |
684 | 334 /** |
335 * frames per sec multiplied by FRAME_RATE_BASE | |
336 * for variable fps this is the precission, so if the timestamps | |
337 * can be specified in msec precssion then this is 1000*FRAME_RATE_BASE | |
903 | 338 * encoding: MUST be set by user |
684 | 339 * decoding: set by lavc. 0 or the frame_rate if available |
340 */ | |
341 int frame_rate; | |
342 | |
343 /** | |
903 | 344 * encoding: MUST be set by user. |
684 | 345 * decoding: set by user, some codecs might override / change it during playback |
346 */ | |
0 | 347 int width, height; |
684 | 348 |
282 | 349 #define FF_ASPECT_SQUARE 1 |
350 #define FF_ASPECT_4_3_625 2 | |
351 #define FF_ASPECT_4_3_525 3 | |
352 #define FF_ASPECT_16_9_625 4 | |
353 #define FF_ASPECT_16_9_525 5 | |
618 | 354 #define FF_ASPECT_EXTENDED 15 |
684 | 355 |
356 /** | |
357 * the number of pictures in a group of pitures, or 0 for intra_only | |
358 * encoding: set by user. | |
359 * decoding: unused | |
360 */ | |
361 int gop_size; | |
362 | |
363 /** | |
364 * pixel format, see PIX_FMT_xxx | |
365 * encoding: unused | |
366 * decoding: set by lavc. | |
367 */ | |
368 enum PixelFormat pix_fmt; | |
369 | |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
382
diff
changeset
|
370 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
|
371 /* must be delayed. */ |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
382
diff
changeset
|
372 /* extra_delay = (repeat_pict / 2) * (1/fps) */ |
684 | 373 |
374 /** | |
375 * if non NULL, 'draw_horiz_band' is called by the libavcodec | |
376 * decoder to draw an horizontal band. It improve cache usage. Not | |
377 * all codecs can do that. You must check the codec capabilities | |
378 * before | |
379 * encoding: unused | |
380 * decoding: set by user. | |
381 */ | |
67 | 382 void (*draw_horiz_band)(struct AVCodecContext *s, |
383 UINT8 **src_ptr, int linesize, | |
384 int y, int width, int height); | |
385 | |
0 | 386 /* audio only */ |
387 int sample_rate; /* samples per sec */ | |
388 int channels; | |
92 | 389 int sample_fmt; /* sample format, currenly unused */ |
0 | 390 |
391 /* the following data should not be initialized */ | |
376 | 392 int frame_size; /* in samples, initialized when calling 'init' */ |
393 int frame_number; /* audio or video frame number */ | |
394 int real_pict_num; /* returns the real picture number of | |
395 previous encoded frame */ | |
903 | 396 |
684 | 397 /** |
398 * number of frames the decoded output will be delayed relative to | |
399 * the encoded input | |
400 * encoding: set by lavc. | |
401 * decoding: unused | |
402 */ | |
403 int delay; | |
336 | 404 |
405 /* encoding parameters */ | |
268 | 406 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0)*/ |
407 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
684 | 408 |
409 /** | |
410 * minimum quantizer | |
411 * encoding: set by user. | |
412 * decoding: unused | |
413 */ | |
414 int qmin; | |
415 | |
416 /** | |
417 * maximum quantizer | |
418 * encoding: set by user. | |
419 * decoding: unused | |
420 */ | |
421 int qmax; | |
422 | |
423 /** | |
424 * maximum quantizer difference etween frames | |
425 * encoding: set by user. | |
426 * decoding: unused | |
427 */ | |
428 int max_qdiff; | |
429 | |
430 /** | |
431 * maximum number of b frames between non b frames | |
432 * note: the output will be delayed by max_b_frames+1 relative to the input | |
433 * encoding: set by user. | |
434 * decoding: unused | |
435 */ | |
436 int max_b_frames; | |
437 | |
438 /** | |
439 * qscale factor between ip and b frames | |
440 * encoding: set by user. | |
441 * decoding: unused | |
442 */ | |
443 float b_quant_factor; | |
444 | |
445 /** obsolete FIXME remove */ | |
446 int rc_strategy; | |
329 | 447 int b_frame_strategy; |
324 | 448 |
684 | 449 /** |
450 * encoding: unused | |
845
32de034be20e
hurry_up>=5 -> skip everything except header & set pict_type&key_frame
michaelni
parents:
843
diff
changeset
|
451 * decoding: set by user. 1-> skip b frames, 2-> skip idct/dequant too, 5-> skip everything except header |
684 | 452 */ |
453 int hurry_up; | |
345 | 454 |
0 | 455 struct AVCodec *codec; |
684 | 456 |
0 | 457 void *priv_data; |
458 | |
162 | 459 /* The following data is for RTP friendly coding */ |
460 | 460 /* By now only H.263/H.263+/MPEG4 coder honours this */ |
162 | 461 int rtp_mode; /* 1 for activate RTP friendly-mode */ |
462 /* highers numbers represent more error-prone */ | |
463 /* enviroments, by now just "1" exist */ | |
464 | |
465 int rtp_payload_size; /* The size of the RTP payload, the coder will */ | |
466 /* do it's best to deliver a chunk with size */ | |
467 /* below rtp_payload_size, the chunk will start */ | |
468 /* with a start code on some codecs like H.263 */ | |
469 /* This doesn't take account of any particular */ | |
470 /* headers inside the transmited RTP payload */ | |
231 | 471 |
472 | |
473 /* The RTP callcack: This function is called */ | |
474 /* every time the encoder as a packet to send */ | |
475 /* Depends on the encoder if the data starts */ | |
476 /* with a Start Code (it should) H.263 does */ | |
477 void (*rtp_callback)(void *data, int size, int packet_number); | |
478 | |
286 | 479 /* statistics, used for 2-pass encoding */ |
480 int mv_bits; | |
481 int header_bits; | |
482 int i_tex_bits; | |
483 int p_tex_bits; | |
484 int i_count; | |
485 int p_count; | |
486 int skip_count; | |
684 | 487 int misc_bits; |
488 | |
489 /** | |
490 * number of bits used for the previously encoded frame | |
491 * encoding: set by lavc | |
849 | 492 * decoding: - for audio - bits_per_sample |
684 | 493 */ |
286 | 494 int frame_bits; |
162 | 495 |
684 | 496 /** |
497 * private data of the user, can be used to carry app specific stuff | |
498 * encoding: set by user | |
499 * decoding: set by user | |
500 */ | |
501 void *opaque; | |
502 | |
0 | 503 char codec_name[32]; |
371
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
504 enum CodecType codec_type; /* see CODEC_TYPE_xxx */ |
8187bb132d85
* Start using enumerated types (makes debugging much easier)
philipjsg
parents:
367
diff
changeset
|
505 enum CodecID codec_id; /* see CODEC_ID_xxx */ |
0 | 506 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
|
507 |
684 | 508 /** |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
509 * workaround bugs in encoders which sometimes cannot be detected automatically |
684 | 510 * encoding: unused |
511 * decoding: set by user | |
512 */ | |
513 int workaround_bugs; | |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
514 #define FF_BUG_AUTODETECT 1 //autodetection |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
515 #define FF_BUG_OLD_MSMPEG4 2 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
516 #define FF_BUG_XVID_ILACE 4 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
517 #define FF_BUG_UMP4 8 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
518 #define FF_BUG_NO_PADDING 16 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
519 #define FF_BUG_AC_VLC 32 |
760 | 520 #define FF_BUG_QPEL_CHROMA 64 |
984 | 521 #define FF_BUG_STD_QPEL 128 |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
522 //#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
|
523 |
684 | 524 /** |
525 * encoding: set by user | |
526 * decoding: unused | |
527 */ | |
460 | 528 int luma_elim_threshold; |
684 | 529 |
530 /** | |
531 * encoding: set by user | |
532 * decoding: unused | |
533 */ | |
460 | 534 int chroma_elim_threshold; |
684 | 535 |
536 /** | |
537 * strictly follow the std (MPEG4, ...) | |
538 * encoding: set by user | |
539 * decoding: unused | |
540 */ | |
541 int strict_std_compliance; | |
542 | |
543 /** | |
544 * 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
|
545 * 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
|
546 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset) |
684 | 547 * encoding: set by user. |
548 * decoding: unused | |
549 */ | |
550 float b_quant_offset; | |
551 | |
552 /** | |
905
2b93dc762f9a
fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
michaelni
parents:
903
diff
changeset
|
553 * error resilience higher values will detect more errors but may missdetect |
684 | 554 * some more or less valid parts as errors |
555 * encoding: unused | |
556 * decoding: set by user | |
557 */ | |
460 | 558 int error_resilience; |
905
2b93dc762f9a
fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
michaelni
parents:
903
diff
changeset
|
559 #define FF_ER_CAREFULL 1 |
2b93dc762f9a
fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
michaelni
parents:
903
diff
changeset
|
560 #define FF_ER_COMPLIANT 2 |
2b93dc762f9a
fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
michaelni
parents:
903
diff
changeset
|
561 #define FF_ER_AGGRESSIVE 3 |
2b93dc762f9a
fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
michaelni
parents:
903
diff
changeset
|
562 #define FF_ER_VERY_AGGRESSIVE 4 |
466
805714c0c10f
new field for communicating with external postprocessing
nickols_k
parents:
460
diff
changeset
|
563 |
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
564 /** |
903 | 565 * called at the beginning of each frame to get a buffer for it. |
566 * if pic.reference is set then the frame will be read later by lavc | |
567 * encoding: unused | |
568 * decoding: set by lavc, user can override | |
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
569 */ |
925 | 570 int (*get_buffer)(struct AVCodecContext *c, AVFrame *pic); |
684 | 571 |
572 /** | |
903 | 573 * called to release buffers which where allocated with get_buffer. |
574 * a released buffer can be reused in get_buffer() | |
575 * pic.data[*] must be set to NULL | |
684 | 576 * encoding: unused |
903 | 577 * decoding: set by lavc, user can override |
684 | 578 */ |
925 | 579 void (*release_buffer)(struct AVCodecContext *c, AVFrame *pic); |
556 | 580 |
684 | 581 /** |
582 * is 1 if the decoded stream contains b frames, 0 otherwise | |
583 * encoding: unused | |
584 * decoding: set by lavc | |
585 */ | |
586 int has_b_frames; | |
587 | |
783 | 588 int block_align; /* used by some WAV based audio codecs */ |
613 | 589 |
581
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
590 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
|
591 (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
|
592 data is returned. Only MPEG codecs support this now. */ |
613 | 593 |
684 | 594 /** |
595 * 0-> h263 quant 1-> mpeg quant | |
596 * encoding: set by user. | |
597 * decoding: unused | |
598 */ | |
599 int mpeg_quant; | |
613 | 600 |
684 | 601 /** |
602 * pass1 encoding statistics output buffer | |
603 * encoding: set by lavc | |
604 * decoding: unused | |
605 */ | |
613 | 606 char *stats_out; /* encoding statistics output buffer */ |
684 | 607 |
608 /** | |
609 * pass2 encoding statistics input buffer. | |
610 * concatenated stuff from stats_out of pass1 should be placed here | |
611 * encoding: allocated/set/freed by user | |
612 * decoding: unused | |
613 */ | |
614 char *stats_in; | |
615 | |
616 /** | |
617 * ratecontrol qmin qmax limiting method | |
618 * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax | |
619 * encoding: set by user. | |
620 * decoding: unused | |
621 */ | |
613 | 622 float rc_qsquish; |
684 | 623 |
613 | 624 float rc_qmod_amp; |
625 int rc_qmod_freq; | |
684 | 626 |
627 /** | |
628 * ratecontrol override, see RcOverride | |
629 * encoding: allocated/set/freed by user. | |
630 * decoding: unused | |
631 */ | |
613 | 632 RcOverride *rc_override; |
633 int rc_override_count; | |
684 | 634 |
635 /** | |
636 * rate control equation | |
637 * encoding: set by user | |
638 * decoding: unused | |
639 */ | |
613 | 640 char *rc_eq; |
684 | 641 |
642 /** | |
643 * maximum bitrate | |
644 * encoding: set by user. | |
645 * decoding: unused | |
646 */ | |
613 | 647 int rc_max_rate; |
684 | 648 |
649 /** | |
650 * minimum bitrate | |
651 * encoding: set by user. | |
652 * decoding: unused | |
653 */ | |
613 | 654 int rc_min_rate; |
684 | 655 |
656 /** | |
657 * decoder bitstream buffer size | |
658 * encoding: set by user. | |
659 * decoding: unused | |
660 */ | |
613 | 661 int rc_buffer_size; |
662 float rc_buffer_aggressivity; | |
684 | 663 |
664 /** | |
665 * qscale factor between p and i frames | |
666 * encoding: set by user. | |
667 * decoding: unused | |
668 */ | |
669 float i_quant_factor; | |
670 | |
671 /** | |
672 * 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
|
673 * 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
|
674 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset) |
684 | 675 * encoding: set by user. |
676 * decoding: unused | |
677 */ | |
678 float i_quant_offset; | |
679 | |
680 /** | |
681 * initial complexity for pass1 ratecontrol | |
682 * encoding: set by user. | |
683 * decoding: unused | |
684 */ | |
613 | 685 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
|
686 |
684 | 687 /** |
688 * dct algorithm, see FF_DCT_* below | |
689 * encoding: set by user | |
690 * decoding: unused | |
691 */ | |
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
|
692 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
|
693 #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
|
694 #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
|
695 #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
|
696 #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
|
697 #define FF_DCT_MLIB 4 |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
698 #define FF_DCT_ALTIVEC 5 |
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
699 |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
700 /** |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
701 * luminance masking (0-> disabled) |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
702 * encoding: set by user |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
703 * decoding: unused |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
704 */ |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
705 float lumi_masking; |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
706 |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
707 /** |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
708 * temporary complexity masking (0-> disabled) |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
709 * encoding: set by user |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
710 * decoding: unused |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
711 */ |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
712 float temporal_cplx_masking; |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
713 |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
714 /** |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
715 * spatial complexity masking (0-> disabled) |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
716 * encoding: set by user |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
717 * decoding: unused |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
718 */ |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
719 float spatial_cplx_masking; |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
720 |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
721 /** |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
722 * p block masking (0-> disabled) |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
723 * encoding: set by user |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
724 * decoding: unused |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
725 */ |
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
686
diff
changeset
|
726 float p_masking; |
654 | 727 |
693
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
728 /** |
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
729 * darkness masking (0-> disabled) |
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
730 * encoding: set by user |
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
731 * decoding: unused |
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
732 */ |
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
733 float dark_masking; |
700
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
734 |
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
735 /** |
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
736 * 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
|
737 * this is used to workaround some encoder bugs |
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
738 * encoding: unused |
701 | 739 * 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
|
740 */ |
0fb4c66527e1
autodetect UMP4 (by adding a fourcc field to AVCodecContext)
michaelni
parents:
697
diff
changeset
|
741 int fourcc; |
693
b6a7ff92df57
darkness masking (lumi masking does only bright stuff now)
michaelni
parents:
690
diff
changeset
|
742 |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
743 /** |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
744 * idct algorithm, see FF_IDCT_* below |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
745 * encoding: set by user |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
746 * decoding: set by user |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
747 */ |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
748 int idct_algo; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
749 #define FF_IDCT_AUTO 0 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
750 #define FF_IDCT_INT 1 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
751 #define FF_IDCT_SIMPLE 2 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
752 #define FF_IDCT_SIMPLEMMX 3 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
753 #define FF_IDCT_LIBMPEG2MMX 4 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
754 #define FF_IDCT_PS2 5 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
755 #define FF_IDCT_MLIB 6 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
756 #define FF_IDCT_ARM 7 |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
757 #define FF_IDCT_ALTIVEC 8 |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
703
diff
changeset
|
758 |
713
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
759 /** |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
760 * slice count |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
761 * 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
|
762 * 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
|
763 */ |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
764 int slice_count; |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
765 /** |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
766 * 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
|
767 * 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
|
768 * 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
|
769 */ |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
770 int *slice_offset; |
e74a563eb643
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
michaelni
parents:
706
diff
changeset
|
771 |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
772 /** |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
773 * error concealment flags |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
774 * encoding: unused |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
775 * decoding: set by user |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
776 */ |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
777 int error_concealment; |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
778 #define FF_EC_GUESS_MVS 1 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
779 #define FF_EC_DEBLOCK 2 |
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
733
diff
changeset
|
780 |
803
08423289ec57
exporting the internal qscale table, this allso fixes the ordering
michaelni
parents:
783
diff
changeset
|
781 /** |
849 | 782 * dsp_mask could be used to disable unwanted |
783 * CPU features (i.e. MMX, SSE. ...) | |
784 */ | |
785 unsigned dsp_mask; | |
866 | 786 |
787 /** | |
788 * bits per sample/pixel from the demuxer (needed for huffyuv) | |
903 | 789 * encoding: set by lavc |
866 | 790 * decoding: set by user |
791 */ | |
792 int bits_per_sample; | |
793 | |
794 /** | |
795 * prediction method (needed for huffyuv) | |
903 | 796 * encoding: set by user |
866 | 797 * decoding: unused |
798 */ | |
799 int prediction_method; | |
800 #define FF_PRED_LEFT 0 | |
801 #define FF_PRED_PLANE 1 | |
802 #define FF_PRED_MEDIAN 2 | |
880 | 803 |
804 /** | |
805 * aspect ratio. (0 if unknown) | |
806 * encoding: set by user. | |
807 * decoding: set by lavc. | |
808 */ | |
809 float aspect_ratio; | |
903 | 810 |
811 /** | |
812 * the picture in the bitstream | |
813 * encoding: set by lavc | |
814 * decoding: set by lavc | |
815 */ | |
925 | 816 AVFrame *coded_frame; |
906 | 817 |
818 /** | |
819 * debug | |
820 * encoding: set by user. | |
821 * decoding: set by user. | |
822 */ | |
823 int debug; | |
824 #define FF_DEBUG_PICT_INFO 1 | |
825 #define FF_DEBUG_RC 2 | |
826 #define FF_DEBUG_BITSTREAM 4 | |
827 #define FF_DEBUG_MB_TYPE 8 | |
828 #define FF_DEBUG_QP 16 | |
829 #define FF_DEBUG_MV 32 | |
942 | 830 #define FF_DEBUG_VIS_MV 0x00000040 |
831 #define FF_DEBUG_SKIP 0x00000080 | |
832 #define FF_DEBUG_STARTCODE 0x00000100 | |
833 #define FF_DEBUG_PTS 0x00000200 | |
909
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
834 |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
835 /** |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
836 * error |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
837 * encoding: set by lavc if flags&CODEC_FLAG_PSNR |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
838 * decoding: unused |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
839 */ |
8ae1e4c24e91
new PSNR code (now works with chroma, b frames, ...)
michaelni
parents:
906
diff
changeset
|
840 uint64_t error[4]; |
932 | 841 |
842 /** | |
843 * minimum MB quantizer | |
844 * encoding: set by user. | |
845 * decoding: unused | |
846 */ | |
847 int mb_qmin; | |
848 | |
849 /** | |
850 * maximum MB quantizer | |
851 * encoding: set by user. | |
852 * decoding: unused | |
853 */ | |
854 int mb_qmax; | |
936 | 855 |
856 /** | |
857 * motion estimation compare function | |
858 * encoding: set by user. | |
859 * decoding: unused | |
860 */ | |
861 int me_cmp; | |
862 /** | |
863 * subpixel motion estimation compare function | |
864 * encoding: set by user. | |
865 * decoding: unused | |
866 */ | |
867 int me_sub_cmp; | |
868 /** | |
869 * macroblock compare function (not supported yet) | |
870 * encoding: set by user. | |
871 * decoding: unused | |
872 */ | |
873 int mb_cmp; | |
874 #define FF_CMP_SAD 0 | |
875 #define FF_CMP_SSE 1 | |
876 #define FF_CMP_SATD 2 | |
877 #define FF_CMP_DCT 3 | |
878 #define FF_CMP_PSNR 4 | |
879 #define FF_CMP_BIT 5 | |
880 #define FF_CMP_RD 6 | |
881 #define FF_CMP_ZERO 7 | |
882 #define FF_CMP_CHROMA 256 | |
883 | |
884 /** | |
948 | 885 * ME diamond size & shape |
936 | 886 * encoding: set by user. |
887 * decoding: unused | |
888 */ | |
889 int dia_size; | |
948 | 890 |
891 /** | |
892 * amount of previous MV predictors (2a+1 x 2a+1 square) | |
893 * encoding: set by user. | |
894 * decoding: unused | |
895 */ | |
896 int last_predictor_count; | |
953 | 897 |
951 | 898 /** |
899 * pre pass for motion estimation | |
900 * encoding: set by user. | |
901 * decoding: unused | |
902 */ | |
903 int pre_me; | |
948 | 904 |
953 | 905 /** |
906 * motion estimation pre pass compare function | |
907 * encoding: set by user. | |
908 * decoding: unused | |
909 */ | |
910 int me_pre_cmp; | |
954 | 911 |
953 | 912 /** |
913 * ME pre pass diamond size & shape | |
914 * encoding: set by user. | |
915 * decoding: unused | |
916 */ | |
917 int pre_dia_size; | |
918 | |
954 | 919 /** |
920 * subpel ME quality | |
921 * encoding: set by user. | |
922 * decoding: unused | |
923 */ | |
924 int me_subpel_quality; | |
925 | |
998 | 926 /** |
927 * callback to negotiate the pixelFormat | |
928 * @param fmt is the list of formats which are supported by the codec, | |
929 * its terminated by -1 as 0 is a valid format, the formats are ordered by quality | |
930 * the first is allways the native one | |
931 * @return the choosen format | |
932 * encoding: unused | |
933 * decoding: set by user, if not set then the native format will always be choosen | |
934 */ | |
935 enum PixelFormat (*get_format)(struct AVCodecContext *s, enum PixelFormat * fmt); | |
0 | 936 } AVCodecContext; |
937 | |
938 typedef struct AVCodec { | |
862 | 939 const char *name; |
0 | 940 int type; |
941 int id; | |
942 int priv_data_size; | |
943 int (*init)(AVCodecContext *); | |
944 int (*encode)(AVCodecContext *, UINT8 *buf, int buf_size, void *data); | |
945 int (*close)(AVCodecContext *); | |
556 | 946 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, |
0 | 947 UINT8 *buf, int buf_size); |
67 | 948 int capabilities; |
0 | 949 struct AVCodec *next; |
950 } AVCodec; | |
951 | |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
952 /** |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
953 * four components are given, that's all. |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
954 * the last component is alpha |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
955 */ |
0 | 956 typedef struct AVPicture { |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
957 UINT8 *data[4]; |
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
831
diff
changeset
|
958 int linesize[4]; |
0 | 959 } AVPicture; |
960 | |
961 extern AVCodec ac3_encoder; | |
962 extern AVCodec mp2_encoder; | |
260
e1bacfb3f51f
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
963 extern AVCodec mp3lame_encoder; |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
630
diff
changeset
|
964 extern AVCodec oggvorbis_encoder; |
0 | 965 extern AVCodec mpeg1video_encoder; |
966 extern AVCodec h263_encoder; | |
967 extern AVCodec h263p_encoder; | |
968 extern AVCodec rv10_encoder; | |
969 extern AVCodec mjpeg_encoder; | |
67 | 970 extern AVCodec mpeg4_encoder; |
307 | 971 extern AVCodec msmpeg4v1_encoder; |
972 extern AVCodec msmpeg4v2_encoder; | |
973 extern AVCodec msmpeg4v3_encoder; | |
500 | 974 extern AVCodec wmv1_encoder; |
975 extern AVCodec wmv2_encoder; | |
866 | 976 extern AVCodec huffyuv_encoder; |
0 | 977 |
978 extern AVCodec h263_decoder; | |
67 | 979 extern AVCodec mpeg4_decoder; |
307 | 980 extern AVCodec msmpeg4v1_decoder; |
981 extern AVCodec msmpeg4v2_decoder; | |
982 extern AVCodec msmpeg4v3_decoder; | |
311 | 983 extern AVCodec wmv1_decoder; |
500 | 984 extern AVCodec wmv2_decoder; |
0 | 985 extern AVCodec mpeg_decoder; |
986 extern AVCodec h263i_decoder; | |
987 extern AVCodec rv10_decoder; | |
521 | 988 extern AVCodec svq1_decoder; |
724 | 989 extern AVCodec dvvideo_decoder; |
990 extern AVCodec dvaudio_decoder; | |
783 | 991 extern AVCodec wmav1_decoder; |
992 extern AVCodec wmav2_decoder; | |
24 | 993 extern AVCodec mjpeg_decoder; |
881 | 994 extern AVCodec mjpegb_decoder; |
322 | 995 extern AVCodec mp2_decoder; |
92 | 996 extern AVCodec mp3_decoder; |
827
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
997 extern AVCodec mace3_decoder; |
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
803
diff
changeset
|
998 extern AVCodec mace6_decoder; |
866 | 999 extern AVCodec huffyuv_decoder; |
883 | 1000 extern AVCodec oggvorbis_decoder; |
0 | 1001 |
92 | 1002 /* pcm codecs */ |
1003 #define PCM_CODEC(id, name) \ | |
1004 extern AVCodec name ## _decoder; \ | |
846
ade627a74709
avoid duplicate ";" warnings (based upon a patch by mru at users dot sourceforge dot net (Mns Rullgrd))
michaelni
parents:
845
diff
changeset
|
1005 extern AVCodec name ## _encoder |
92 | 1006 |
1007 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); | |
1008 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
1009 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
1010 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
1011 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
1012 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
1013 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
1014 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
1015 | |
573
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1016 /* adpcm codecs */ |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1017 |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1018 PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt); |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1019 PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav); |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1020 PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms); |
b0f52172f4c5
beos/mov/adpcm patch by Franois Revol <revol at free dot fr>
michaelni
parents:
556
diff
changeset
|
1021 |
92 | 1022 #undef PCM_CODEC |
1023 | |
1024 /* dummy raw video codec */ | |
0 | 1025 extern AVCodec rawvideo_codec; |
1026 | |
1027 /* the following codecs use external GPL libs */ | |
1028 extern AVCodec ac3_decoder; | |
1029 | |
1030 /* resample.c */ | |
1031 | |
1032 struct ReSampleContext; | |
1033 | |
1034 typedef struct ReSampleContext ReSampleContext; | |
1035 | |
1036 ReSampleContext *audio_resample_init(int output_channels, int input_channels, | |
1037 int output_rate, int input_rate); | |
1038 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); | |
1039 void audio_resample_close(ReSampleContext *s); | |
1040 | |
1041 /* YUV420 format is assumed ! */ | |
1042 | |
1043 struct ImgReSampleContext; | |
1044 | |
1045 typedef struct ImgReSampleContext ImgReSampleContext; | |
1046 | |
1047 ImgReSampleContext *img_resample_init(int output_width, int output_height, | |
1048 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
|
1049 |
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
1050 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
|
1051 int iwidth, int iheight, |
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
1052 int topBand, int bottomBand, |
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
1053 int leftBand, int rightBand); |
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
628
diff
changeset
|
1054 |
0 | 1055 void img_resample(ImgReSampleContext *s, |
1056 AVPicture *output, AVPicture *input); | |
1057 | |
1058 void img_resample_close(ImgReSampleContext *s); | |
1059 | |
991
2fabb7d709e7
build update - avpicture_fill() returns the image size
bellard
parents:
987
diff
changeset
|
1060 int avpicture_fill(AVPicture *picture, UINT8 *ptr, |
2fabb7d709e7
build update - avpicture_fill() returns the image size
bellard
parents:
987
diff
changeset
|
1061 int pix_fmt, int width, int height); |
49 | 1062 int avpicture_get_size(int pix_fmt, int width, int height); |
987
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
1063 void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift); |
295ec9bebf93
new image formats - suppressed ill defined formats (endianness, unless specified, is always the one of the CPU) - added avcodec_get_pix_fmt_name()
bellard
parents:
984
diff
changeset
|
1064 const char *avcodec_get_pix_fmt_name(int pix_fmt); |
49 | 1065 |
1066 /* convert among pixel formats */ | |
1067 int img_convert(AVPicture *dst, int dst_pix_fmt, | |
1068 AVPicture *src, int pix_fmt, | |
1069 int width, int height); | |
1070 | |
1071 /* deinterlace a picture */ | |
1072 int avpicture_deinterlace(AVPicture *dst, AVPicture *src, | |
0 | 1073 int pix_fmt, int width, int height); |
1074 | |
1075 /* external high level API */ | |
1076 | |
1077 extern AVCodec *first_avcodec; | |
1078 | |
362 | 1079 /* returns LIBAVCODEC_VERSION_INT constant */ |
399 | 1080 unsigned avcodec_version(void); |
379 | 1081 /* returns LIBAVCODEC_BUILD constant */ |
399 | 1082 unsigned avcodec_build(void); |
0 | 1083 void avcodec_init(void); |
1084 | |
399 | 1085 void avcodec_set_bit_exact(void); |
1086 | |
0 | 1087 void register_avcodec(AVCodec *format); |
1088 AVCodec *avcodec_find_encoder(enum CodecID id); | |
177 | 1089 AVCodec *avcodec_find_encoder_by_name(const char *name); |
0 | 1090 AVCodec *avcodec_find_decoder(enum CodecID id); |
1091 AVCodec *avcodec_find_decoder_by_name(const char *name); | |
1092 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); | |
1093 | |
903 | 1094 void avcodec_get_context_defaults(AVCodecContext *s); |
703 | 1095 AVCodecContext *avcodec_alloc_context(void); |
925 | 1096 AVFrame *avcodec_alloc_frame(void); |
903 | 1097 |
925 | 1098 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic); |
1099 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic); | |
903 | 1100 |
0 | 1101 int avcodec_open(AVCodecContext *avctx, AVCodec *codec); |
1102 int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, | |
1103 int *frame_size_ptr, | |
1104 UINT8 *buf, int buf_size); | |
925 | 1105 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
0 | 1106 int *got_picture_ptr, |
1107 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
|
1108 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
|
1109 int *data_size_ptr, |
8adda0af04e2
added proposed API for parse_only mode to extract compressed frames from compressed streams
bellard
parents:
573
diff
changeset
|
1110 UINT8 *buf, int buf_size); |
0 | 1111 int avcodec_encode_audio(AVCodecContext *avctx, UINT8 *buf, int buf_size, |
1112 const short *samples); | |
1113 int avcodec_encode_video(AVCodecContext *avctx, UINT8 *buf, int buf_size, | |
925 | 1114 const AVFrame *pict); |
0 | 1115 |
1116 int avcodec_close(AVCodecContext *avctx); | |
1117 | |
1118 void avcodec_register_all(void); | |
92 | 1119 |
341 | 1120 void avcodec_flush_buffers(AVCodecContext *avctx); |
1121 | |
962
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1122 typedef struct { |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1123 /** options' name with default value*/ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1124 const char* name; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1125 /** English text help */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1126 const char* help; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1127 /** type of variable */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1128 int type; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1129 #define FF_CONF_TYPE_BOOL 1 // boolean - true,1,on (or simply presence) |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1130 #define FF_CONF_TYPE_DOUBLE 2 // double |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1131 #define FF_CONF_TYPE_INT 3 // integer |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1132 #define FF_CONF_TYPE_STRING 4 // string (finished with \0) |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1133 #define FF_CONF_TYPE_MASK 0x1f // mask for types - upper bits are various flags |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1134 #define FF_CONF_TYPE_EXPERT 0x20 // flag for expert option |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1135 #define FF_CONF_TYPE_FLAG (FF_CONF_TYPE_BOOL | 0x40) |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1136 #define FF_CONF_TYPE_RCOVERIDE (FF_CONF_TYPE_STRING | 0x80) |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1137 /** where the parsed value should be stored */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1138 void* val; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1139 /** min value (min == max -> no limits) */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1140 double min; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1141 /** maximum value for double/int */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1142 double max; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1143 /** default boo [0,1]l/double/int value */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1144 double defval; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1145 /** |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1146 * default string value (with optional semicolon delimited extra option-list |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1147 * i.e. option1;option2;option3 |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1148 * defval might select other then first argument as default |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1149 */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1150 const char* defstr; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1151 /** char* list of supported codecs (i.e. ",msmpeg4,h263," NULL - everything */ |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1152 const char* supported; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1153 } avc_config_t; |
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1154 |
1019 | 1155 void avcodec_getopt(AVCodecContext* avctx, const char* str, avc_config_t** config); |
962
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1156 |
382 | 1157 /** |
1158 * Interface for 0.5.0 version | |
1159 * | |
1160 * do not even think about it's usage for this moment | |
1161 */ | |
1162 | |
1163 typedef struct { | |
1164 // compressed size used from given memory buffer | |
1165 int size; | |
1166 /// I/P/B frame type | |
1167 int frame_type; | |
1168 } avc_enc_result_t; | |
1169 | |
1170 /** | |
1171 * Commands | |
1172 * order can't be changed - once it was defined | |
1173 */ | |
1174 typedef enum { | |
1175 // general commands | |
1176 AVC_OPEN_BY_NAME = 0xACA000, | |
1177 AVC_OPEN_BY_CODEC_ID, | |
1178 AVC_OPEN_BY_FOURCC, | |
1179 AVC_CLOSE, | |
1180 | |
1181 AVC_FLUSH, | |
1182 // pin - struct { uint8_t* src, uint_t src_size } | |
1183 // pout - struct { AVPicture* img, consumed_bytes, | |
1184 AVC_DECODE, | |
1185 // pin - struct { AVPicture* img, uint8_t* dest, uint_t dest_size } | |
1186 // pout - uint_t used_from_dest_size | |
1187 AVC_ENCODE, | |
1188 | |
1189 // query/get video commands | |
1190 AVC_GET_VERSION = 0xACB000, | |
1191 AVC_GET_WIDTH, | |
1192 AVC_GET_HEIGHT, | |
1193 AVC_GET_DELAY, | |
1194 AVC_GET_QUANT_TABLE, | |
1195 // ... | |
1196 | |
1197 // query/get audio commands | |
1198 AVC_GET_FRAME_SIZE = 0xABC000, | |
1199 | |
1200 // maybe define some simple structure which | |
1201 // might be passed to the user - but they can't | |
1202 // contain any codec specific parts and these | |
1203 // calls are usualy necessary only few times | |
1204 | |
1205 // set video commands | |
1206 AVC_SET_WIDTH = 0xACD000, | |
1207 AVC_SET_HEIGHT, | |
1208 | |
1209 // set video encoding commands | |
1210 AVC_SET_FRAME_RATE = 0xACD800, | |
1211 AVC_SET_QUALITY, | |
1212 AVC_SET_HURRY_UP, | |
1213 | |
1214 // set audio commands | |
1215 AVC_SET_SAMPLE_RATE = 0xACE000, | |
1216 AVC_SET_CHANNELS, | |
1217 | |
1218 } avc_cmd_t; | |
1219 | |
1220 /** | |
1221 * \param handle allocated private structure by libavcodec | |
1222 * for initialization pass NULL - will be returned pout | |
1223 * user is supposed to know nothing about its structure | |
1224 * \param cmd type of operation to be performed | |
1225 * \param pint input parameter | |
1226 * \param pout output parameter | |
1227 * | |
1228 * \returns command status - eventually for query command it might return | |
1229 * integer resulting value | |
1230 */ | |
1231 int avcodec(void* handle, avc_cmd_t cmd, void* pin, void* pout); | |
1232 | |
492 | 1233 /* memory */ |
862 | 1234 void *av_malloc(unsigned int size); |
1235 void *av_mallocz(unsigned int size); | |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
1236 void *av_realloc(void *ptr, unsigned int size); |
492 | 1237 void av_free(void *ptr); |
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
1238 char *av_strdup(const char *s); |
492 | 1239 void __av_freep(void **ptr); |
1240 #define av_freep(p) __av_freep((void **)(p)) | |
1026 | 1241 void *av_fast_realloc(void *ptr, int *size, int min_size); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
883
diff
changeset
|
1242 /* for static data only */ |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
883
diff
changeset
|
1243 /* call av_free_static to release all staticaly allocated tables */ |
962
c5aef83c6a3f
* first shot for generaly usable option parser for codecs
kabi
parents:
954
diff
changeset
|
1244 void av_free_static(void); |
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
883
diff
changeset
|
1245 void *__av_mallocz_static(void** location, unsigned int size); |
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
883
diff
changeset
|
1246 #define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s) |
492 | 1247 |
92 | 1248 #endif /* AVCODEC_H */ |