~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/avcodec.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2008-12-26 00:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20081226001006-wd8cuqn8d81smkdp
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 * You should have received a copy of the GNU Lesser General Public
17
17
 * License along with FFmpeg; if not, write to the Free Software
18
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
19
 */
20
20
 
21
 
#ifndef AVCODEC_H
22
 
#define AVCODEC_H
 
21
#ifndef FFMPEG_AVCODEC_H
 
22
#define FFMPEG_AVCODEC_H
23
23
 
24
24
/**
25
25
 * @file avcodec.h
26
 
 * external api header.
 
26
 * external API header
27
27
 */
28
28
 
29
29
 
30
 
#ifdef __cplusplus
31
 
extern "C" {
32
 
#endif
33
 
 
34
 
#include "avutil.h"
35
 
#include <sys/types.h> /* size_t */
36
 
 
37
 
#define AV_STRINGIFY(s)         AV_TOSTRING(s)
38
 
#define AV_TOSTRING(s) #s
39
 
 
40
 
#define LIBAVCODEC_VERSION_INT  ((51<<16)+(35<<8)+0)
41
 
#define LIBAVCODEC_VERSION      51.35.0
 
30
#include "libavutil/avutil.h"
 
31
 
 
32
#define LIBAVCODEC_VERSION_MAJOR 51
 
33
#define LIBAVCODEC_VERSION_MINOR 56
 
34
#define LIBAVCODEC_VERSION_MICRO  0
 
35
 
 
36
#define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
 
37
                                               LIBAVCODEC_VERSION_MINOR, \
 
38
                                               LIBAVCODEC_VERSION_MICRO)
 
39
#define LIBAVCODEC_VERSION      AV_VERSION(LIBAVCODEC_VERSION_MAJOR,    \
 
40
                                           LIBAVCODEC_VERSION_MINOR,    \
 
41
                                           LIBAVCODEC_VERSION_MICRO)
42
42
#define LIBAVCODEC_BUILD        LIBAVCODEC_VERSION_INT
43
43
 
44
44
#define LIBAVCODEC_IDENT        "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
47
47
#define AV_TIME_BASE            1000000
48
48
#define AV_TIME_BASE_Q          (AVRational){1, AV_TIME_BASE}
49
49
 
 
50
/**
 
51
 * Identifies the syntax and semantics of the bitstream.
 
52
 * The principle is roughly:
 
53
 * Two decoders with the same ID can decode the same streams.
 
54
 * Two encoders with the same ID can encode compatible streams.
 
55
 * There may be slight deviations from the principle due to implementation
 
56
 * details.
 
57
 *
 
58
 * If you add a codec ID to this list, add it so that
 
59
 * 1. no value of a existing codec ID changes (that would break ABI),
 
60
 * 2. it is as close as possible to similar codecs.
 
61
 */
50
62
enum CodecID {
51
63
    CODEC_ID_NONE,
 
64
 
 
65
    /* video codecs */
52
66
    CODEC_ID_MPEG1VIDEO,
53
 
    CODEC_ID_MPEG2VIDEO, /* prefered ID for MPEG Video 1 or 2 decoding */
 
67
    CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding
54
68
    CODEC_ID_MPEG2VIDEO_XVMC,
55
69
    CODEC_ID_H261,
56
70
    CODEC_ID_H263,
150
164
    CODEC_ID_TIFF,
151
165
    CODEC_ID_GIF,
152
166
    CODEC_ID_FFH264,
 
167
    CODEC_ID_DXA,
 
168
    CODEC_ID_DNXHD,
 
169
    CODEC_ID_THP,
 
170
    CODEC_ID_SGI,
 
171
    CODEC_ID_C93,
 
172
    CODEC_ID_BETHSOFTVID,
 
173
    CODEC_ID_PTX,
 
174
    CODEC_ID_TXD,
 
175
    CODEC_ID_VP6A,
 
176
    CODEC_ID_AMV,
 
177
    CODEC_ID_VB,
 
178
    CODEC_ID_PCX,
 
179
    CODEC_ID_SUNRAST,
 
180
    CODEC_ID_INDEO4,
 
181
    CODEC_ID_INDEO5,
 
182
    CODEC_ID_MIMIC,
 
183
    CODEC_ID_RL2,
 
184
    CODEC_ID_8SVX_EXP,
 
185
    CODEC_ID_8SVX_FIB,
 
186
    CODEC_ID_ESCAPE124,
 
187
    CODEC_ID_DIRAC,
 
188
    CODEC_ID_BFI,
153
189
 
154
 
    /* various pcm "codecs" */
 
190
    /* various PCM "codecs" */
155
191
    CODEC_ID_PCM_S16LE= 0x10000,
156
192
    CODEC_ID_PCM_S16BE,
157
193
    CODEC_ID_PCM_U16LE,
169
205
    CODEC_ID_PCM_U24LE,
170
206
    CODEC_ID_PCM_U24BE,
171
207
    CODEC_ID_PCM_S24DAUD,
 
208
    CODEC_ID_PCM_ZORK,
 
209
    CODEC_ID_PCM_S16LE_PLANAR,
172
210
 
173
 
    /* various adpcm codecs */
 
211
    /* various ADPCM codecs */
174
212
    CODEC_ID_ADPCM_IMA_QT= 0x11000,
175
213
    CODEC_ID_ADPCM_IMA_WAV,
176
214
    CODEC_ID_ADPCM_IMA_DK3,
189
227
    CODEC_ID_ADPCM_SBPRO_4,
190
228
    CODEC_ID_ADPCM_SBPRO_3,
191
229
    CODEC_ID_ADPCM_SBPRO_2,
 
230
    CODEC_ID_ADPCM_THP,
 
231
    CODEC_ID_ADPCM_IMA_AMV,
 
232
    CODEC_ID_ADPCM_EA_R1,
 
233
    CODEC_ID_ADPCM_EA_R3,
 
234
    CODEC_ID_ADPCM_EA_R2,
 
235
    CODEC_ID_ADPCM_IMA_EA_SEAD,
 
236
    CODEC_ID_ADPCM_IMA_EA_EACS,
 
237
    CODEC_ID_ADPCM_EA_XAS,
 
238
    CODEC_ID_ADPCM_EA_MAXIS_XA,
192
239
 
193
240
    /* AMR */
194
241
    CODEC_ID_AMR_NB= 0x12000,
204
251
    CODEC_ID_XAN_DPCM,
205
252
    CODEC_ID_SOL_DPCM,
206
253
 
 
254
    /* audio codecs */
207
255
    CODEC_ID_MP2= 0x15000,
208
 
    CODEC_ID_MP3, /* prefered ID for MPEG Audio layer 1, 2 or3 decoding */
 
256
    CODEC_ID_MP3, ///< preferred ID for decoding MPEG audio layer 1, 2 or 3
209
257
    CODEC_ID_AAC,
210
258
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
211
259
    CODEC_ID_MPEG4AAC,
227
275
    CODEC_ID_SHORTEN,
228
276
    CODEC_ID_ALAC,
229
277
    CODEC_ID_WESTWOOD_SND1,
230
 
    CODEC_ID_GSM, /* As in Berlin toast format */
 
278
    CODEC_ID_GSM, ///< as in Berlin toast format
231
279
    CODEC_ID_QDM2,
232
280
    CODEC_ID_COOK,
233
281
    CODEC_ID_TRUESPEECH,
239
287
    CODEC_ID_IMC,
240
288
    CODEC_ID_MUSEPACK7,
241
289
    CODEC_ID_MLP,
242
 
    CODEC_ID_GSM_MS, /* As found in WAV */
 
290
    CODEC_ID_GSM_MS, /* as found in WAV */
 
291
    CODEC_ID_ATRAC3,
 
292
    CODEC_ID_VOXWARE,
 
293
    CODEC_ID_APE,
 
294
    CODEC_ID_NELLYMOSER,
 
295
    CODEC_ID_MUSEPACK8,
 
296
    CODEC_ID_SPEEX,
 
297
    CODEC_ID_WMAVOICE,
 
298
    CODEC_ID_WMAPRO,
 
299
    CODEC_ID_WMALOSSLESS,
243
300
 
244
301
    /* subtitle codecs */
245
302
    CODEC_ID_DVD_SUBTITLE= 0x17000,
246
303
    CODEC_ID_DVB_SUBTITLE,
247
 
 
248
 
    CODEC_ID_MPEG2TS= 0x20000, /* _FAKE_ codec to indicate a raw MPEG2 transport
249
 
                         stream (only used by libavformat) */
 
304
    CODEC_ID_TEXT,  ///< raw UTF-8 text
 
305
    CODEC_ID_XSUB,
 
306
    CODEC_ID_SSA,
 
307
    CODEC_ID_MOV_TEXT,
 
308
 
 
309
    /* other specific kind of codecs (generally used for attachments) */
 
310
    CODEC_ID_TTF= 0x18000,
 
311
 
 
312
    CODEC_ID_MPEG2TS= 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS
 
313
                                * stream (only used by libavformat) */
250
314
};
251
315
 
252
316
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
253
 
/* CODEC_ID_MP3LAME is absolete */
 
317
/* CODEC_ID_MP3LAME is obsolete */
254
318
#define CODEC_ID_MP3LAME CODEC_ID_MP3
255
319
#define CODEC_ID_MPEG4AAC CODEC_ID_AAC
256
320
#endif
261
325
    CODEC_TYPE_AUDIO,
262
326
    CODEC_TYPE_DATA,
263
327
    CODEC_TYPE_SUBTITLE,
 
328
    CODEC_TYPE_ATTACHMENT,
264
329
    CODEC_TYPE_NB
265
330
};
266
331
 
267
 
/* currently unused, may be used if 24/32 bits samples ever supported */
268
 
/* all in native endian */
 
332
/**
 
333
 * Currently unused, may be used if 24/32 bits samples are ever supported.
 
334
 * all in native-endian format
 
335
 */
269
336
enum SampleFormat {
270
337
    SAMPLE_FMT_NONE = -1,
271
338
    SAMPLE_FMT_U8,              ///< unsigned 8 bits
280
347
 
281
348
/**
282
349
 * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
283
 
 * this is mainly needed because some optimized bitstream readers read
284
 
 * 32 or 64 bit at once and could read over the end<br>
285
 
 * Note, if the first 23 bits of the additional bytes are not 0 then damaged
286
 
 * MPEG bitstreams could cause overread and segfault
 
350
 * This is mainly needed because some optimized bitstream readers read
 
351
 * 32 or 64 bit at once and could read over the end.<br>
 
352
 * Note: If the first 23 bits of the additional bytes are not 0, then damaged
 
353
 * MPEG bitstreams could cause overread and segfault.
287
354
 */
288
355
#define FF_INPUT_BUFFER_PADDING_SIZE 8
289
356
 
290
357
/**
291
 
 * minimum encoding buffer size.
292
 
 * used to avoid some checks during header writing
 
358
 * minimum encoding buffer size
 
359
 * Used to avoid some checks during header writing.
293
360
 */
294
361
#define FF_MIN_BUFFER_SIZE 16384
295
362
 
296
 
/* motion estimation type, EPZS by default */
 
363
/**
 
364
 * motion estimation type.
 
365
 */
297
366
enum Motion_Est_ID {
298
 
    ME_ZERO = 1,
 
367
    ME_ZERO = 1,    ///< no search, that is use 0,0 vector whenever one is needed
299
368
    ME_FULL,
300
369
    ME_LOG,
301
370
    ME_PHODS,
302
 
    ME_EPZS,
303
 
    ME_X1,
304
 
    ME_HEX,
305
 
    ME_UMH,
306
 
    ME_ITER,
 
371
    ME_EPZS,        ///< enhanced predictive zonal search
 
372
    ME_X1,          ///< reserved for experiments
 
373
    ME_HEX,         ///< hexagon based search
 
374
    ME_UMH,         ///< uneven multi-hexagon search
 
375
    ME_ITER,        ///< iterative search
307
376
};
308
377
 
309
378
enum AVDiscard{
310
 
//we leave some space between them for extensions (drop some keyframes for intra only or drop just some bidir frames)
 
379
    /* We leave some space between them for extensions (drop some
 
380
     * keyframes for intra-only or drop just some bidir frames). */
311
381
    AVDISCARD_NONE   =-16, ///< discard nothing
312
382
    AVDISCARD_DEFAULT=  0, ///< discard useless packets like 0 size packets in avi
313
383
    AVDISCARD_NONREF =  8, ///< discard all non reference
319
389
typedef struct RcOverride{
320
390
    int start_frame;
321
391
    int end_frame;
322
 
    int qscale; // if this is 0 then quality_factor will be used instead
 
392
    int qscale; // If this is 0 then quality_factor will be used instead.
323
393
    float quality_factor;
324
394
} RcOverride;
325
395
 
326
396
#define FF_MAX_B_FRAMES 16
327
397
 
328
398
/* encoding support
329
 
   these flags can be passed in AVCodecContext.flags before initing
330
 
   Note: not everything is supported yet.
 
399
   These flags can be passed in AVCodecContext.flags before initialization.
 
400
   Note: Not everything is supported yet.
331
401
*/
332
402
 
333
 
#define CODEC_FLAG_QSCALE 0x0002  ///< use fixed qscale
334
 
#define CODEC_FLAG_4MV    0x0004  ///< 4 MV per MB allowed / Advanced prediction for H263
335
 
#define CODEC_FLAG_QPEL   0x0010  ///< use qpel MC
336
 
#define CODEC_FLAG_GMC    0x0020  ///< use GMC
337
 
#define CODEC_FLAG_MV0    0x0040  ///< always try a MB with MV=<0,0>
338
 
#define CODEC_FLAG_PART   0x0080  ///< use data partitioning
339
 
/* parent program guarantees that the input for b-frame containing streams is not written to
340
 
   for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */
 
403
#define CODEC_FLAG_QSCALE 0x0002  ///< Use fixed qscale.
 
404
#define CODEC_FLAG_4MV    0x0004  ///< 4 MV per MB allowed / advanced prediction for H.263.
 
405
#define CODEC_FLAG_QPEL   0x0010  ///< Use qpel MC.
 
406
#define CODEC_FLAG_GMC    0x0020  ///< Use GMC.
 
407
#define CODEC_FLAG_MV0    0x0040  ///< Always try a MB with MV=<0,0>.
 
408
#define CODEC_FLAG_PART   0x0080  ///< Use data partitioning.
 
409
/**
 
410
 * The parent program guarantees that the input for B-frames containing
 
411
 * streams is not written to for at least s->max_b_frames+1 frames, if
 
412
 * this is not set the input will be copied.
 
413
 */
341
414
#define CODEC_FLAG_INPUT_PRESERVED 0x0100
342
 
#define CODEC_FLAG_PASS1 0x0200   ///< use internal 2pass ratecontrol in first  pass mode
343
 
#define CODEC_FLAG_PASS2 0x0400   ///< use internal 2pass ratecontrol in second pass mode
344
 
#define CODEC_FLAG_EXTERN_HUFF 0x1000 ///< use external huffman table (for mjpeg)
345
 
#define CODEC_FLAG_GRAY  0x2000   ///< only decode/encode grayscale
346
 
#define CODEC_FLAG_EMU_EDGE 0x4000///< don't draw edges
347
 
#define CODEC_FLAG_PSNR           0x8000 ///< error[?] variables will be set during encoding
348
 
#define CODEC_FLAG_TRUNCATED  0x00010000 /** input bitstream might be truncated at a random location instead
349
 
                                            of only at frame boundaries */
350
 
#define CODEC_FLAG_NORMALIZE_AQP  0x00020000 ///< normalize adaptive quantization
351
 
#define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< use interlaced dct
352
 
#define CODEC_FLAG_LOW_DELAY      0x00080000 ///< force low delay
353
 
#define CODEC_FLAG_ALT_SCAN       0x00100000 ///< use alternate scan
354
 
#define CODEC_FLAG_TRELLIS_QUANT  0x00200000 ///< use trellis quantization
355
 
#define CODEC_FLAG_GLOBAL_HEADER  0x00400000 ///< place global headers in extradata instead of every keyframe
356
 
#define CODEC_FLAG_BITEXACT       0x00800000 ///< use only bitexact stuff (except (i)dct)
 
415
#define CODEC_FLAG_PASS1           0x0200   ///< Use internal 2pass ratecontrol in first pass mode.
 
416
#define CODEC_FLAG_PASS2           0x0400   ///< Use internal 2pass ratecontrol in second pass mode.
 
417
#define CODEC_FLAG_EXTERN_HUFF     0x1000   ///< Use external Huffman table (for MJPEG).
 
418
#define CODEC_FLAG_GRAY            0x2000   ///< Only decode/encode grayscale.
 
419
#define CODEC_FLAG_EMU_EDGE        0x4000   ///< Don't draw edges.
 
420
#define CODEC_FLAG_PSNR            0x8000   ///< error[?] variables will be set during encoding.
 
421
#define CODEC_FLAG_TRUNCATED       0x00010000 /** Input bitstream might be truncated at a random
 
422
                                                  location instead of only at frame boundaries. */
 
423
#define CODEC_FLAG_NORMALIZE_AQP  0x00020000 ///< Normalize adaptive quantization.
 
424
#define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< Use interlaced DCT.
 
425
#define CODEC_FLAG_LOW_DELAY      0x00080000 ///< Force low delay.
 
426
#define CODEC_FLAG_ALT_SCAN       0x00100000 ///< Use alternate scan.
 
427
#define CODEC_FLAG_TRELLIS_QUANT  0x00200000 ///< Use trellis quantization.
 
428
#define CODEC_FLAG_GLOBAL_HEADER  0x00400000 ///< Place global headers in extradata instead of every keyframe.
 
429
#define CODEC_FLAG_BITEXACT       0x00800000 ///< Use only bitexact stuff (except (I)DCT).
357
430
/* Fx : Flag for h263+ extra options */
358
431
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
359
 
#define CODEC_FLAG_H263P_AIC      0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction (remove this)
 
432
#define CODEC_FLAG_H263P_AIC      0x01000000 ///< H.263 advanced intra coding / MPEG-4 AC prediction (remove this)
360
433
#endif
361
 
#define CODEC_FLAG_AC_PRED        0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction
362
 
#define CODEC_FLAG_H263P_UMV      0x02000000 ///< Unlimited motion vector
363
 
#define CODEC_FLAG_CBP_RD         0x04000000 ///< use rate distortion optimization for cbp
364
 
#define CODEC_FLAG_QP_RD          0x08000000 ///< use rate distortion optimization for qp selectioon
365
 
#define CODEC_FLAG_H263P_AIV      0x00000008 ///< H263 Alternative inter vlc
 
434
#define CODEC_FLAG_AC_PRED        0x01000000 ///< H.263 advanced intra coding / MPEG-4 AC prediction
 
435
#define CODEC_FLAG_H263P_UMV      0x02000000 ///< unlimited motion vector
 
436
#define CODEC_FLAG_CBP_RD         0x04000000 ///< Use rate distortion optimization for cbp.
 
437
#define CODEC_FLAG_QP_RD          0x08000000 ///< Use rate distortion optimization for qp selectioon.
 
438
#define CODEC_FLAG_H263P_AIV      0x00000008 ///< H.263 alternative inter VLC
366
439
#define CODEC_FLAG_OBMC           0x00000001 ///< OBMC
367
440
#define CODEC_FLAG_LOOP_FILTER    0x00000800 ///< loop filter
368
441
#define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000
369
442
#define CODEC_FLAG_INTERLACED_ME  0x20000000 ///< interlaced motion estimation
370
 
#define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< will reserve space for SVCD scan offset user data
371
 
#define CODEC_FLAG_CLOSED_GOP     ((int)0x80000000)
372
 
#define CODEC_FLAG2_FAST          0x00000001 ///< allow non spec compliant speedup tricks
373
 
#define CODEC_FLAG2_STRICT_GOP    0x00000002 ///< strictly enforce GOP size
374
 
#define CODEC_FLAG2_NO_OUTPUT     0x00000004 ///< skip bitstream encoding
375
 
#define CODEC_FLAG2_LOCAL_HEADER  0x00000008 ///< place global headers at every keyframe instead of in extradata
376
 
#define CODEC_FLAG2_BPYRAMID      0x00000010 ///< H.264 allow b-frames to be used as references
377
 
#define CODEC_FLAG2_WPRED         0x00000020 ///< H.264 weighted biprediction for b-frames
 
443
#define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< Will reserve space for SVCD scan offset user data.
 
444
#define CODEC_FLAG_CLOSED_GOP     0x80000000
 
445
#define CODEC_FLAG2_FAST          0x00000001 ///< Allow non spec compliant speedup tricks.
 
446
#define CODEC_FLAG2_STRICT_GOP    0x00000002 ///< Strictly enforce GOP size.
 
447
#define CODEC_FLAG2_NO_OUTPUT     0x00000004 ///< Skip bitstream encoding.
 
448
#define CODEC_FLAG2_LOCAL_HEADER  0x00000008 ///< Place global headers at every keyframe instead of in extradata.
 
449
#define CODEC_FLAG2_BPYRAMID      0x00000010 ///< H.264 allow B-frames to be used as references.
 
450
#define CODEC_FLAG2_WPRED         0x00000020 ///< H.264 weighted biprediction for B-frames
378
451
#define CODEC_FLAG2_MIXED_REFS    0x00000040 ///< H.264 one reference per partition, as opposed to one reference per macroblock
379
452
#define CODEC_FLAG2_8X8DCT        0x00000080 ///< H.264 high profile 8x8 transform
380
453
#define CODEC_FLAG2_FASTPSKIP     0x00000100 ///< H.264 fast pskip
381
454
#define CODEC_FLAG2_AUD           0x00000200 ///< H.264 access unit delimiters
382
 
#define CODEC_FLAG2_BRDO          0x00000400 ///< b-frame rate-distortion optimization
383
 
#define CODEC_FLAG2_INTRA_VLC     0x00000800 ///< use MPEG-2 intra VLC table
384
 
#define CODEC_FLAG2_MEMC_ONLY     0x00001000 ///< only do ME/MC (I frames -> ref, P frame -> ME+MC)
385
 
#define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 ///< timecode is in drop frame format
386
 
#define CODEC_FLAG2_SKIP_RD       0x00004000 ///< RD optimal MB level residual skiping
 
455
#define CODEC_FLAG2_BRDO          0x00000400 ///< B-frame rate-distortion optimization
 
456
#define CODEC_FLAG2_INTRA_VLC     0x00000800 ///< Use MPEG-2 intra VLC table.
 
457
#define CODEC_FLAG2_MEMC_ONLY     0x00001000 ///< Only do ME/MC (I frames -> ref, P frame -> ME+MC).
 
458
#define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 ///< timecode is in drop frame format.
 
459
#define CODEC_FLAG2_SKIP_RD       0x00004000 ///< RD optimal MB level residual skipping
 
460
#define CODEC_FLAG2_CHUNKS        0x00008000 ///< Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries.
 
461
#define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 ///< Use MPEG-2 nonlinear quantizer.
 
462
#define CODEC_FLAG2_BIT_RESERVOIR 0x00020000 ///< Use a bit reservoir when encoding if possible
387
463
 
388
464
/* Unsupported options :
389
465
 *              Syntax Arithmetic coding (SAC)
392
468
/* /Fx */
393
469
/* codec capabilities */
394
470
 
395
 
#define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< decoder can use draw_horiz_band callback
 
471
#define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< Decoder can use draw_horiz_band callback.
396
472
/**
397
473
 * Codec uses get_buffer() for allocating buffers.
398
474
 * direct rendering method 1
399
475
 */
400
476
#define CODEC_CAP_DR1             0x0002
401
 
/* if 'parse_only' field is true, then avcodec_parse_frame() can be
402
 
   used */
 
477
/* If 'parse_only' field is true, then avcodec_parse_frame() can be used. */
403
478
#define CODEC_CAP_PARSE_ONLY      0x0004
404
479
#define CODEC_CAP_TRUNCATED       0x0008
405
 
/* codec can export data for HW decoding (XvMC) */
 
480
/* Codec can export data for HW decoding (XvMC). */
406
481
#define CODEC_CAP_HWACCEL         0x0010
407
482
/**
408
 
 * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data.
409
 
 * if this is not set, the codec is guaranteed to never be feeded with NULL data
 
483
 * Codec has a nonzero delay and needs to be fed with NULL at the end to get the delayed data.
 
484
 * If this is not set, the codec is guaranteed to never be fed with NULL data.
410
485
 */
411
486
#define CODEC_CAP_DELAY           0x0020
412
487
/**
415
490
 */
416
491
#define CODEC_CAP_SMALL_LAST_FRAME 0x0040
417
492
 
418
 
//the following defines may change, don't expect compatibility if you use them
 
493
//The following defines may change, don't expect compatibility if you use them.
419
494
#define MB_TYPE_INTRA4x4   0x0001
420
 
#define MB_TYPE_INTRA16x16 0x0002 //FIXME h264 specific
421
 
#define MB_TYPE_INTRA_PCM  0x0004 //FIXME h264 specific
 
495
#define MB_TYPE_INTRA16x16 0x0002 //FIXME H.264-specific
 
496
#define MB_TYPE_INTRA_PCM  0x0004 //FIXME H.264-specific
422
497
#define MB_TYPE_16x16      0x0008
423
498
#define MB_TYPE_16x8       0x0010
424
499
#define MB_TYPE_8x16       0x0020
425
500
#define MB_TYPE_8x8        0x0040
426
501
#define MB_TYPE_INTERLACED 0x0080
427
 
#define MB_TYPE_DIRECT2     0x0100 //FIXME
 
502
#define MB_TYPE_DIRECT2    0x0100 //FIXME
428
503
#define MB_TYPE_ACPRED     0x0200
429
504
#define MB_TYPE_GMC        0x0400
430
505
#define MB_TYPE_SKIP       0x0800
441
516
 
442
517
/**
443
518
 * Pan Scan area.
444
 
 * this specifies the area which should be displayed. Note there may be multiple such areas for one frame
 
519
 * This specifies the area which should be displayed.
 
520
 * Note there may be multiple such areas for one frame.
445
521
 */
446
522
typedef struct AVPanScan{
447
523
    /**
448
 
     * id.
449
 
     * - encoding: set by user.
450
 
     * - decoding: set by lavc
 
524
     * id
 
525
     * - encoding: Set by user.
 
526
     * - decoding: Set by libavcodec.
451
527
     */
452
528
    int id;
453
529
 
454
530
    /**
455
531
     * width and height in 1/16 pel
456
 
     * - encoding: set by user.
457
 
     * - decoding: set by lavc
 
532
     * - encoding: Set by user.
 
533
     * - decoding: Set by libavcodec.
458
534
     */
459
535
    int width;
460
536
    int height;
461
537
 
462
538
    /**
463
 
     * position of the top left corner in 1/16 pel for up to 3 fields/frames.
464
 
     * - encoding: set by user.
465
 
     * - decoding: set by lavc
 
539
     * position of the top left corner in 1/16 pel for up to 3 fields/frames
 
540
     * - encoding: Set by user.
 
541
     * - decoding: Set by libavcodec.
466
542
     */
467
543
    int16_t position[3][2];
468
544
}AVPanScan;
470
546
#define FF_COMMON_FRAME \
471
547
    /**\
472
548
     * pointer to the picture planes.\
473
 
     * this might be different from the first allocated byte\
 
549
     * This might be different from the first allocated byte\
474
550
     * - encoding: \
475
551
     * - decoding: \
476
552
     */\
477
553
    uint8_t *data[4];\
478
554
    int linesize[4];\
479
555
    /**\
480
 
     * pointer to the first allocated byte of the picture. can be used in get_buffer/release_buffer\
481
 
     * this isn't used by lavc unless the default get/release_buffer() is used\
 
556
     * pointer to the first allocated byte of the picture. Can be used in get_buffer/release_buffer.\
 
557
     * This isn't used by libavcodec unless the default get/release_buffer() is used.\
482
558
     * - encoding: \
483
559
     * - decoding: \
484
560
     */\
485
561
    uint8_t *base[4];\
486
562
    /**\
487
563
     * 1 -> keyframe, 0-> not\
488
 
     * - encoding: set by lavc\
489
 
     * - decoding: set by lavc\
 
564
     * - encoding: Set by libavcodec.\
 
565
     * - decoding: Set by libavcodec.\
490
566
     */\
491
567
    int key_frame;\
492
568
\
493
569
    /**\
494
 
     * picture type of the frame, see ?_TYPE below.\
495
 
     * - encoding: set by lavc for coded_picture (and set by user for input)\
496
 
     * - decoding: set by lavc\
 
570
     * Picture type of the frame, see ?_TYPE below.\
 
571
     * - encoding: Set by libavcodec. for coded_picture (and set by user for input).\
 
572
     * - decoding: Set by libavcodec.\
497
573
     */\
498
574
    int pict_type;\
499
575
\
500
576
    /**\
501
577
     * presentation timestamp in time_base units (time when frame should be shown to user)\
502
 
     * if AV_NOPTS_VALUE then frame_rate = 1/time_base will be assumed\
503
 
     * - encoding: MUST be set by user\
504
 
     * - decoding: set by lavc\
 
578
     * If AV_NOPTS_VALUE then frame_rate = 1/time_base will be assumed.\
 
579
     * - encoding: MUST be set by user.\
 
580
     * - decoding: Set by libavcodec.\
505
581
     */\
506
582
    int64_t pts;\
507
583
\
508
584
    /**\
509
 
     * picture number in bitstream order.\
 
585
     * picture number in bitstream order\
510
586
     * - encoding: set by\
511
 
     * - decoding: set by lavc\
 
587
     * - decoding: Set by libavcodec.\
512
588
     */\
513
589
    int coded_picture_number;\
514
590
    /**\
515
 
     * picture number in display order.\
 
591
     * picture number in display order\
516
592
     * - encoding: set by\
517
 
     * - decoding: set by lavc\
 
593
     * - decoding: Set by libavcodec.\
518
594
     */\
519
595
    int display_picture_number;\
520
596
\
521
597
    /**\
522
598
     * quality (between 1 (good) and FF_LAMBDA_MAX (bad)) \
523
 
     * - encoding: set by lavc for coded_picture (and set by user for input)\
524
 
     * - decoding: set by lavc\
 
599
     * - encoding: Set by libavcodec. for coded_picture (and set by user for input).\
 
600
     * - decoding: Set by libavcodec.\
525
601
     */\
526
602
    int quality; \
527
603
\
528
604
    /**\
529
605
     * buffer age (1->was last buffer and dint change, 2->..., ...).\
530
 
     * set to INT_MAX if the buffer has not been used yet \
 
606
     * Set to INT_MAX if the buffer has not been used yet.\
531
607
     * - encoding: unused\
532
 
     * - decoding: MUST be set by get_buffer()\
 
608
     * - decoding: MUST be set by get_buffer().\
533
609
     */\
534
610
    int age;\
535
611
\
536
612
    /**\
537
613
     * is this picture used as reference\
 
614
     * The values for this are the same as the MpegEncContext.picture_structure\
 
615
     * variable, that is 1->top field, 2->bottom field, 3->frame/both fields.\
538
616
     * - encoding: unused\
539
 
     * - decoding: set by lavc (before get_buffer() call))\
 
617
     * - decoding: Set by libavcodec. (before get_buffer() call)).\
540
618
     */\
541
619
    int reference;\
542
620
\
543
621
    /**\
544
622
     * QP table\
545
623
     * - encoding: unused\
546
 
     * - decoding: set by lavc\
 
624
     * - decoding: Set by libavcodec.\
547
625
     */\
548
626
    int8_t *qscale_table;\
549
627
    /**\
550
628
     * QP store stride\
551
629
     * - encoding: unused\
552
 
     * - decoding: set by lavc\
 
630
     * - decoding: Set by libavcodec.\
553
631
     */\
554
632
    int qstride;\
555
633
\
556
634
    /**\
557
 
     * mbskip_table[mb]>=1 if MB didnt change\
 
635
     * mbskip_table[mb]>=1 if MB didn't change\
558
636
     * stride= mb_width = (width+15)>>4\
559
637
     * - encoding: unused\
560
 
     * - decoding: set by lavc\
 
638
     * - decoding: Set by libavcodec.\
561
639
     */\
562
640
    uint8_t *mbskip_table;\
563
641
\
564
642
    /**\
565
 
     * Motion vector table.\
 
643
     * motion vector table\
566
644
     * @code\
567
645
     * example:\
568
646
     * int mv_sample_log2= 4 - motion_subsample_log2;\
570
648
     * int mv_stride= (mb_width << mv_sample_log2) + 1;\
571
649
     * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];\
572
650
     * @endcode\
573
 
     * - encoding: set by user\
574
 
     * - decoding: set by lavc\
 
651
     * - encoding: Set by user.\
 
652
     * - decoding: Set by libavcodec.\
575
653
     */\
576
654
    int16_t (*motion_val[2])[2];\
577
655
\
578
656
    /**\
579
 
     * Macroblock type table\
 
657
     * macroblock type table\
580
658
     * mb_type_base + mb_width + 2\
581
 
     * - encoding: set by user\
582
 
     * - decoding: set by lavc\
 
659
     * - encoding: Set by user.\
 
660
     * - decoding: Set by libavcodec.\
583
661
     */\
584
662
    uint32_t *mb_type;\
585
663
\
587
665
     * log2 of the size of the block which a single vector in motion_val represents: \
588
666
     * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)\
589
667
     * - encoding: unused\
590
 
     * - decoding: set by lavc\
 
668
     * - decoding: Set by libavcodec.\
591
669
     */\
592
670
    uint8_t motion_subsample_log2;\
593
671
\
594
672
    /**\
595
673
     * for some private data of the user\
596
674
     * - encoding: unused\
597
 
     * - decoding: set by user\
 
675
     * - decoding: Set by user.\
598
676
     */\
599
677
    void *opaque;\
600
678
\
601
679
    /**\
602
680
     * error\
603
 
     * - encoding: set by lavc if flags&CODEC_FLAG_PSNR\
 
681
     * - encoding: Set by libavcodec. if flags&CODEC_FLAG_PSNR.\
604
682
     * - decoding: unused\
605
683
     */\
606
684
    uint64_t error[4];\
607
685
\
608
686
    /**\
609
 
     * type of the buffer (to keep track of who has to dealloc data[*])\
610
 
     * - encoding: set by the one who allocs it\
611
 
     * - decoding: set by the one who allocs it\
612
 
     * Note: user allocated (direct rendering) & internal buffers can not coexist currently\
 
687
     * type of the buffer (to keep track of who has to deallocate data[*])\
 
688
     * - encoding: Set by the one who allocates it.\
 
689
     * - decoding: Set by the one who allocates it.\
 
690
     * Note: User allocated (direct rendering) & internal buffers cannot coexist currently.\
613
691
     */\
614
692
    int type;\
615
693
    \
616
694
    /**\
617
 
     * when decoding, this signal how much the picture must be delayed.\
 
695
     * When decoding, this signals how much the picture must be delayed.\
618
696
     * extra_delay = repeat_pict / (2*fps)\
619
697
     * - encoding: unused\
620
 
     * - decoding: set by lavc\
 
698
     * - decoding: Set by libavcodec.\
621
699
     */\
622
700
    int repeat_pict;\
623
701
    \
628
706
    \
629
707
    /**\
630
708
     * The content of the picture is interlaced.\
631
 
     * - encoding: set by user\
632
 
     * - decoding: set by lavc (default 0)\
 
709
     * - encoding: Set by user.\
 
710
     * - decoding: Set by libavcodec. (default 0)\
633
711
     */\
634
712
    int interlaced_frame;\
635
713
    \
636
714
    /**\
637
 
     * if the content is interlaced, is top field displayed first.\
638
 
     * - encoding: set by user\
639
 
     * - decoding: set by lavc\
 
715
     * If the content is interlaced, is top field displayed first.\
 
716
     * - encoding: Set by user.\
 
717
     * - decoding: Set by libavcodec.\
640
718
     */\
641
719
    int top_field_first;\
642
720
    \
643
721
    /**\
644
722
     * Pan scan.\
645
 
     * - encoding: set by user\
646
 
     * - decoding: set by lavc\
 
723
     * - encoding: Set by user.\
 
724
     * - decoding: Set by libavcodec.\
647
725
     */\
648
726
    AVPanScan *pan_scan;\
649
727
    \
650
728
    /**\
651
 
     * tell user application that palette has changed from previous frame.\
 
729
     * Tell user application that palette has changed from previous frame.\
652
730
     * - encoding: ??? (no palette-enabled encoder yet)\
653
 
     * - decoding: set by lavc (default 0)\
 
731
     * - decoding: Set by libavcodec. (default 0).\
654
732
     */\
655
733
    int palette_has_changed;\
656
734
    \
657
735
    /**\
658
 
     * Codec suggestion on buffer type if != 0\
 
736
     * codec suggestion on buffer type if != 0\
659
737
     * - encoding: unused\
660
 
     * - decoding: set by lavc (before get_buffer() call))\
 
738
     * - decoding: Set by libavcodec. (before get_buffer() call)).\
661
739
     */\
662
740
    int buffer_hints;\
663
741
\
664
742
    /**\
665
 
     * DCT coeffitients\
 
743
     * DCT coefficients\
666
744
     * - encoding: unused\
667
 
     * - decoding: set by lavc\
 
745
     * - decoding: Set by libavcodec.\
668
746
     */\
669
747
    short *dct_coeff;\
670
748
\
671
749
    /**\
672
 
     * Motion referece frame index\
673
 
     * - encoding: set by user\
674
 
     * - decoding: set by lavc\
 
750
     * motion referece frame index\
 
751
     * - encoding: Set by user.\
 
752
     * - decoding: Set by libavcodec.\
675
753
     */\
676
754
    int8_t *ref_index[2];
677
755
 
680
758
#define FF_QSCALE_TYPE_H264  2
681
759
 
682
760
#define FF_BUFFER_TYPE_INTERNAL 1
683
 
#define FF_BUFFER_TYPE_USER     2 ///< Direct rendering buffers (image is (de)allocated by user)
684
 
#define FF_BUFFER_TYPE_SHARED   4 ///< buffer from somewhere else, don't dealloc image (data/base), all other tables are not shared
685
 
#define FF_BUFFER_TYPE_COPY     8 ///< just a (modified) copy of some other buffer, don't dealloc anything
686
 
 
687
 
 
688
 
#define FF_I_TYPE 1 // Intra
689
 
#define FF_P_TYPE 2 // Predicted
690
 
#define FF_B_TYPE 3 // Bi-dir predicted
691
 
#define FF_S_TYPE 4 // S(GMC)-VOP MPEG4
692
 
#define FF_SI_TYPE 5
693
 
#define FF_SP_TYPE 6
694
 
 
695
 
#define FF_BUFFER_HINTS_VALID    0x01 // Buffer hints value is meaningful (if 0 ignore)
696
 
#define FF_BUFFER_HINTS_READABLE 0x02 // Codec will read from buffer
697
 
#define FF_BUFFER_HINTS_PRESERVE 0x04 // User must not alter buffer content
698
 
#define FF_BUFFER_HINTS_REUSABLE 0x08 // Codec will reuse the buffer (update)
 
761
#define FF_BUFFER_TYPE_USER     2 ///< direct rendering buffers (image is (de)allocated by user)
 
762
#define FF_BUFFER_TYPE_SHARED   4 ///< Buffer from somewhere else; don't deallocate image (data/base), all other tables are not shared.
 
763
#define FF_BUFFER_TYPE_COPY     8 ///< Just a (modified) copy of some other buffer, don't deallocate anything.
 
764
 
 
765
 
 
766
#define FF_I_TYPE  1 ///< Intra
 
767
#define FF_P_TYPE  2 ///< Predicted
 
768
#define FF_B_TYPE  3 ///< Bi-dir predicted
 
769
#define FF_S_TYPE  4 ///< S(GMC)-VOP MPEG4
 
770
#define FF_SI_TYPE 5 ///< Switching Intra
 
771
#define FF_SP_TYPE 6 ///< Switching Predicted
 
772
#define FF_BI_TYPE 7
 
773
 
 
774
#define FF_BUFFER_HINTS_VALID    0x01 // Buffer hints value is meaningful (if 0 ignore).
 
775
#define FF_BUFFER_HINTS_READABLE 0x02 // Codec will read from buffer.
 
776
#define FF_BUFFER_HINTS_PRESERVE 0x04 // User must not alter buffer content.
 
777
#define FF_BUFFER_HINTS_REUSABLE 0x08 // Codec will reuse the buffer (update).
699
778
 
700
779
/**
701
780
 * Audio Video Frame.
 
781
 * New fields can be added to the end of FF_COMMON_FRAME with minor version
 
782
 * bumps.
 
783
 * Removal, reordering and changes to existing fields require a major
 
784
 * version bump. No fields should be added into AVFrame before or after
 
785
 * FF_COMMON_FRAME!
 
786
 * sizeof(AVFrame) must not be used outside libav*.
702
787
 */
703
788
typedef struct AVFrame {
704
789
    FF_COMMON_FRAME
707
792
#define DEFAULT_FRAME_RATE_BASE 1001000
708
793
 
709
794
/**
710
 
 * main external api structure.
 
795
 * main external API structure.
 
796
 * New fields can be added to the end with minor version bumps.
 
797
 * Removal, reordering and changes to existing fields require a major
 
798
 * version bump.
 
799
 * sizeof(AVCodecContext) must not be used outside libav*.
711
800
 */
712
801
typedef struct AVCodecContext {
713
802
    /**
714
 
     * Info on struct for av_log
 
803
     * information on struct for av_log
715
804
     * - set by avcodec_alloc_context
716
805
     */
717
 
    AVClass *av_class;
 
806
    const AVClass *av_class;
718
807
    /**
719
 
     * the average bitrate.
720
 
     * - encoding: set by user. unused for constant quantizer encoding
721
 
     * - decoding: set by lavc. 0 or some bitrate if this info is available in the stream
 
808
     * the average bitrate
 
809
     * - encoding: Set by user; unused for constant quantizer encoding.
 
810
     * - decoding: Set by libavcodec. 0 or some bitrate if this info is available in the stream.
722
811
     */
723
812
    int bit_rate;
724
813
 
725
814
    /**
726
815
     * number of bits the bitstream is allowed to diverge from the reference.
727
816
     *           the reference can be CBR (for CBR pass1) or VBR (for pass2)
728
 
     * - encoding: set by user. unused for constant quantizer encoding
 
817
     * - encoding: Set by user; unused for constant quantizer encoding.
729
818
     * - decoding: unused
730
819
     */
731
820
    int bit_rate_tolerance;
732
821
 
733
822
    /**
734
823
     * CODEC_FLAG_*.
735
 
     * - encoding: set by user.
736
 
     * - decoding: set by user.
 
824
     * - encoding: Set by user.
 
825
     * - decoding: Set by user.
737
826
     */
738
827
    int flags;
739
828
 
740
829
    /**
741
 
     * some codecs needs additionnal format info. It is stored here
742
 
     * - encoding: set by user.
743
 
     * - decoding: set by lavc. (FIXME is this ok?)
 
830
     * Some codecs need additional format info. It is stored here.
 
831
     * If any muxer uses this then ALL demuxers/parsers AND encoders for the
 
832
     * specific codec MUST set it correctly otherwise stream copy breaks.
 
833
     * In general use of this field by muxers is not recommanded.
 
834
     * - encoding: Set by libavcodec.
 
835
     * - decoding: Set by libavcodec. (FIXME: Is this OK?)
744
836
     */
745
837
    int sub_id;
746
838
 
747
839
    /**
748
 
     * motion estimation algorithm used for video coding.
 
840
     * Motion estimation algorithm used for video coding.
749
841
     * 1 (zero), 2 (full), 3 (log), 4 (phods), 5 (epzs), 6 (x1), 7 (hex),
750
842
     * 8 (umh), 9 (iter) [7, 8 are x264 specific, 9 is snow specific]
751
843
     * - encoding: MUST be set by user.
754
846
    int me_method;
755
847
 
756
848
    /**
757
 
     * some codecs need / can use extra-data like huffman tables.
758
 
     * mjpeg: huffman tables
 
849
     * some codecs need / can use extradata like Huffman tables.
 
850
     * mjpeg: Huffman tables
759
851
     * rv10: additional flags
760
852
     * mpeg4: global headers (they can be in the bitstream or here)
761
 
     * the allocated memory should be FF_INPUT_BUFFER_PADDING_SIZE bytes larger
762
 
     * then extradata_size to avoid prolems if its read with the bitstream reader
763
 
     * the bytewise contents of extradata must not depend on the architecture or cpu endianness
764
 
     * - encoding: set/allocated/freed by lavc.
765
 
     * - decoding: set/allocated/freed by user.
 
853
     * The allocated memory should be FF_INPUT_BUFFER_PADDING_SIZE bytes larger
 
854
     * than extradata_size to avoid prolems if it is read with the bitstream reader.
 
855
     * The bytewise contents of extradata must not depend on the architecture or CPU endianness.
 
856
     * - encoding: Set/allocated/freed by libavcodec.
 
857
     * - decoding: Set/allocated/freed by user.
766
858
     */
767
859
    uint8_t *extradata;
768
860
    int extradata_size;
769
861
 
770
862
    /**
771
 
     * this is the fundamental unit of time (in seconds) in terms
772
 
     * of which frame timestamps are represented. for fixed-fps content,
 
863
     * This is the fundamental unit of time (in seconds) in terms
 
864
     * of which frame timestamps are represented. For fixed-fps content,
773
865
     * timebase should be 1/framerate and timestamp increments should be
774
866
     * identically 1.
775
 
     * - encoding: MUST be set by user
776
 
     * - decoding: set by lavc.
 
867
     * - encoding: MUST be set by user.
 
868
     * - decoding: Set by libavcodec.
777
869
     */
778
870
    AVRational time_base;
779
871
 
781
873
    /**
782
874
     * picture width / height.
783
875
     * - encoding: MUST be set by user.
784
 
     * - decoding: set by lavc.
785
 
     * Note, for compatibility its possible to set this instead of
786
 
     * coded_width/height before decoding
 
876
     * - decoding: Set by libavcodec.
 
877
     * Note: For compatibility it is possible to set this instead of
 
878
     * coded_width/height before decoding.
787
879
     */
788
880
    int width, height;
789
881
 
790
882
#define FF_ASPECT_EXTENDED 15
791
883
 
792
884
    /**
793
 
     * the number of pictures in a group of pitures, or 0 for intra_only.
794
 
     * - encoding: set by user.
 
885
     * the number of pictures in a group of pictures, or 0 for intra_only
 
886
     * - encoding: Set by user.
795
887
     * - decoding: unused
796
888
     */
797
889
    int gop_size;
798
890
 
799
891
    /**
800
 
     * pixel format, see PIX_FMT_xxx.
801
 
     * - encoding: set by user.
802
 
     * - decoding: set by lavc.
 
892
     * Pixel format, see PIX_FMT_xxx.
 
893
     * - encoding: Set by user.
 
894
     * - decoding: Set by libavcodec.
803
895
     */
804
896
    enum PixelFormat pix_fmt;
805
897
 
806
898
    /**
807
 
     * Frame rate emulation. If not zero lower layer (i.e. format handler)
 
899
     * Frame rate emulation. If not zero, the lower layer (i.e. format handler)
808
900
     * has to read frames at native frame rate.
809
 
     * - encoding: set by user.
810
 
     * - decoding: unused.
 
901
     * - encoding: Set by user.
 
902
     * - decoding: unused
811
903
     */
812
904
    int rate_emu;
813
905
 
814
906
    /**
815
 
     * if non NULL, 'draw_horiz_band' is called by the libavcodec
816
 
     * decoder to draw an horizontal band. It improve cache usage. Not
 
907
     * If non NULL, 'draw_horiz_band' is called by the libavcodec
 
908
     * decoder to draw a horizontal band. It improves cache usage. Not
817
909
     * all codecs can do that. You must check the codec capabilities
818
 
     * before
 
910
     * beforehand.
819
911
     * - encoding: unused
820
 
     * - decoding: set by user.
 
912
     * - decoding: Set by user.
821
913
     * @param height the height of the slice
822
914
     * @param y the y position of the slice
823
915
     * @param type 1->top field, 2->bottom field, 3->frame
828
920
                            int y, int type, int height);
829
921
 
830
922
    /* audio only */
831
 
    int sample_rate; ///< samples per sec
 
923
    int sample_rate; ///< samples per second
832
924
    int channels;
833
925
 
834
926
    /**
835
 
     * audio sample format.
836
 
     * - encoding: set by user.
837
 
     * - decoding: set by lavc.
 
927
     * audio sample format
 
928
     * - encoding: Set by user.
 
929
     * - decoding: Set by libavcodec.
838
930
     */
839
 
    enum SampleFormat sample_fmt;  ///< sample format, currenly unused
 
931
    enum SampleFormat sample_fmt;  ///< sample format, currently unused
840
932
 
841
 
    /* the following data should not be initialized */
 
933
    /* The following data should not be initialized. */
842
934
    /**
843
 
     * samples per packet. initialized when calling 'init'
 
935
     * Samples per packet, initialized when calling 'init'.
844
936
     */
845
937
    int frame_size;
846
938
    int frame_number;   ///< audio or video frame number
847
 
    int real_pict_num;  ///< returns the real picture number of previous encoded frame
 
939
    int real_pict_num;  ///< Returns the real picture number of previous encoded frame.
848
940
 
849
941
    /**
850
 
     * number of frames the decoded output will be delayed relative to
 
942
     * Number of frames the decoded output will be delayed relative to
851
943
     * the encoded input.
852
 
     * - encoding: set by lavc.
 
944
     * - encoding: Set by libavcodec.
853
945
     * - decoding: unused
854
946
     */
855
947
    int delay;
859
951
    float qblur;      ///< amount of qscale smoothing over time (0.0-1.0)
860
952
 
861
953
    /**
862
 
     * minimum quantizer.
863
 
     * - encoding: set by user.
 
954
     * minimum quantizer
 
955
     * - encoding: Set by user.
864
956
     * - decoding: unused
865
957
     */
866
958
    int qmin;
867
959
 
868
960
    /**
869
 
     * maximum quantizer.
870
 
     * - encoding: set by user.
 
961
     * maximum quantizer
 
962
     * - encoding: Set by user.
871
963
     * - decoding: unused
872
964
     */
873
965
    int qmax;
874
966
 
875
967
    /**
876
 
     * maximum quantizer difference between frames.
877
 
     * - encoding: set by user.
 
968
     * maximum quantizer difference between frames
 
969
     * - encoding: Set by user.
878
970
     * - decoding: unused
879
971
     */
880
972
    int max_qdiff;
881
973
 
882
974
    /**
883
 
     * maximum number of b frames between non b frames.
884
 
     * note: the output will be delayed by max_b_frames+1 relative to the input
885
 
     * - encoding: set by user.
 
975
     * maximum number of B-frames between non-B-frames
 
976
     * Note: The output will be delayed by max_b_frames+1 relative to the input.
 
977
     * - encoding: Set by user.
886
978
     * - decoding: unused
887
979
     */
888
980
    int max_b_frames;
889
981
 
890
982
    /**
891
 
     * qscale factor between ip and b frames.
892
 
     * - encoding: set by user.
 
983
     * qscale factor between IP and B-frames
 
984
     * - encoding: Set by user.
893
985
     * - decoding: unused
894
986
     */
895
987
    float b_quant_factor;
901
993
    int b_frame_strategy;
902
994
 
903
995
    /**
904
 
     * hurry up amount.
 
996
     * hurry up amount
905
997
     * - encoding: unused
906
 
     * - decoding: set by user. 1-> skip b frames, 2-> skip idct/dequant too, 5-> skip everything except header
 
998
     * - decoding: Set by user. 1-> Skip B-frames, 2-> Skip IDCT/dequant too, 5-> Skip everything except header
907
999
     * @deprecated Deprecated in favor of skip_idct and skip_frame.
908
1000
     */
909
1001
    int hurry_up;
918
1010
#endif
919
1011
 
920
1012
    int rtp_payload_size;   /* The size of the RTP payload: the coder will  */
921
 
                            /* do it's best to deliver a chunk with size    */
 
1013
                            /* do its best to deliver a chunk with size     */
922
1014
                            /* below rtp_payload_size, the chunk will start */
923
 
                            /* with a start code on some codecs like H.263  */
 
1015
                            /* with a start code on some codecs like H.263. */
924
1016
                            /* This doesn't take account of any particular  */
925
 
                            /* headers inside the transmited RTP payload    */
926
 
 
927
 
 
928
 
    /* The RTP callback: This function is called   */
929
 
    /* every time the encoder has a packet to send */
930
 
    /* Depends on the encoder if the data starts   */
931
 
    /* with a Start Code (it should) H.263 does.   */
932
 
    /* mb_nb contains the number of macroblocks    */
933
 
    /* encoded in the RTP payload                  */
 
1017
                            /* headers inside the transmitted RTP payload.  */
 
1018
 
 
1019
 
 
1020
    /* The RTP callback: This function is called    */
 
1021
    /* every time the encoder has a packet to send. */
 
1022
    /* It depends on the encoder if the data starts */
 
1023
    /* with a Start Code (it should). H.263 does.   */
 
1024
    /* mb_nb contains the number of macroblocks     */
 
1025
    /* encoded in the RTP payload.                  */
934
1026
    void (*rtp_callback)(struct AVCodecContext *avctx, void *data, int size, int mb_nb);
935
1027
 
936
1028
    /* statistics, used for 2-pass encoding */
944
1036
    int misc_bits;
945
1037
 
946
1038
    /**
947
 
     * number of bits used for the previously encoded frame.
948
 
     * - encoding: set by lavc
 
1039
     * number of bits used for the previously encoded frame
 
1040
     * - encoding: Set by libavcodec.
949
1041
     * - decoding: unused
950
1042
     */
951
1043
    int frame_bits;
952
1044
 
953
1045
    /**
954
 
     * private data of the user, can be used to carry app specific stuff.
955
 
     * - encoding: set by user
956
 
     * - decoding: set by user
 
1046
     * Private data of the user, can be used to carry app specific stuff.
 
1047
     * - encoding: Set by user.
 
1048
     * - decoding: Set by user.
957
1049
     */
958
1050
    void *opaque;
959
1051
 
963
1055
 
964
1056
    /**
965
1057
     * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
966
 
     * this is used to workaround some encoder bugs
967
 
     * - encoding: set by user, if not then the default based on codec_id will be used
968
 
     * - decoding: set by user, will be converted to upper case by lavc during init
 
1058
     * This is used to work around some encoder bugs.
 
1059
     * A demuxer should set this to what is stored in the field used to identify the codec.
 
1060
     * If there are multiple such fields in a container then the demuxer should choose the one
 
1061
     * which maximizes the information about the used codec.
 
1062
     * If the codec tag field in a container is larger then 32 bits then the demuxer should
 
1063
     * remap the longer ID to 32 bits with a table or other structure. Alternatively a new
 
1064
     * extra_codec_tag + size could be added but for this a clear advantage must be demonstrated
 
1065
     * first.
 
1066
     * - encoding: Set by user, if not then the default based on codec_id will be used.
 
1067
     * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
969
1068
     */
970
1069
    unsigned int codec_tag;
971
1070
 
972
1071
    /**
973
 
     * workaround bugs in encoders which sometimes cannot be detected automatically.
974
 
     * - encoding: set by user
975
 
     * - decoding: set by user
 
1072
     * Work around bugs in encoders which sometimes cannot be detected automatically.
 
1073
     * - encoding: Set by user
 
1074
     * - decoding: Set by user
976
1075
     */
977
1076
    int workaround_bugs;
978
1077
#define FF_BUG_AUTODETECT       1  ///< autodetection
981
1080
#define FF_BUG_UMP4             8
982
1081
#define FF_BUG_NO_PADDING       16
983
1082
#define FF_BUG_AMV              32
984
 
#define FF_BUG_AC_VLC           0  ///< will be removed, libavcodec can now handle these non compliant files by default
 
1083
#define FF_BUG_AC_VLC           0  ///< Will be removed, libavcodec can now handle these non-compliant files by default.
985
1084
#define FF_BUG_QPEL_CHROMA      64
986
1085
#define FF_BUG_STD_QPEL         128
987
1086
#define FF_BUG_QPEL_CHROMA2     256
989
1088
#define FF_BUG_EDGE             1024
990
1089
#define FF_BUG_HPEL_CHROMA      2048
991
1090
#define FF_BUG_DC_CLIP          4096
992
 
#define FF_BUG_MS               8192 ///< workaround various bugs in microsofts broken decoders
993
 
//#define FF_BUG_FAKE_SCALABILITY 16 //autodetection should work 100%
 
1091
#define FF_BUG_MS               8192 ///< Work around various bugs in Microsoft's broken decoders.
 
1092
//#define FF_BUG_FAKE_SCALABILITY 16 //Autodetection should work 100%.
994
1093
 
995
1094
    /**
996
 
     * luma single coeff elimination threshold.
997
 
     * - encoding: set by user
 
1095
     * luma single coefficient elimination threshold
 
1096
     * - encoding: Set by user.
998
1097
     * - decoding: unused
999
1098
     */
1000
1099
    int luma_elim_threshold;
1001
1100
 
1002
1101
    /**
1003
 
     * chroma single coeff elimination threshold.
1004
 
     * - encoding: set by user
 
1102
     * chroma single coeff elimination threshold
 
1103
     * - encoding: Set by user.
1005
1104
     * - decoding: unused
1006
1105
     */
1007
1106
    int chroma_elim_threshold;
1008
1107
 
1009
1108
    /**
1010
 
     * strictly follow the std (MPEG4, ...).
1011
 
     * - encoding: set by user
 
1109
     * strictly follow the standard (MPEG4, ...).
 
1110
     * - encoding: Set by user.
1012
1111
     * - decoding: unused
1013
1112
     */
1014
1113
    int strict_std_compliance;
1015
 
#define FF_COMPLIANCE_VERY_STRICT   2 ///< strictly conform to a older more strict version of the spec or reference software
1016
 
#define FF_COMPLIANCE_STRICT        1 ///< strictly conform to all the things in the spec no matter what consequences
 
1114
#define FF_COMPLIANCE_VERY_STRICT   2 ///< Strictly conform to a older more strict version of the spec or reference software.
 
1115
#define FF_COMPLIANCE_STRICT        1 ///< Strictly conform to all the things in the spec no matter what consequences.
1017
1116
#define FF_COMPLIANCE_NORMAL        0
1018
 
#define FF_COMPLIANCE_INOFFICIAL   -1 ///< allow inofficial extensions
1019
 
#define FF_COMPLIANCE_EXPERIMENTAL -2 ///< allow non standarized experimental things
 
1117
#define FF_COMPLIANCE_INOFFICIAL   -1 ///< Allow inofficial extensions.
 
1118
#define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
1020
1119
 
1021
1120
    /**
1022
 
     * qscale offset between ip and b frames.
1023
 
     * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
1024
 
     * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
1025
 
     * - encoding: set by user.
 
1121
     * qscale offset between IP and B-frames
 
1122
     * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
 
1123
     * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
 
1124
     * - encoding: Set by user.
1026
1125
     * - decoding: unused
1027
1126
     */
1028
1127
    float b_quant_offset;
1029
1128
 
1030
1129
    /**
1031
 
     * error resilience higher values will detect more errors but may missdetect
1032
 
     * some more or less valid parts as errors.
 
1130
     * Error resilience; higher values will detect more errors but may
 
1131
     * misdetect some more or less valid parts as errors.
1033
1132
     * - encoding: unused
1034
 
     * - decoding: set by user
 
1133
     * - decoding: Set by user.
1035
1134
     */
1036
1135
    int error_resilience;
1037
1136
#define FF_ER_CAREFUL         1
1040
1139
#define FF_ER_VERY_AGGRESSIVE 4
1041
1140
 
1042
1141
    /**
1043
 
     * called at the beginning of each frame to get a buffer for it.
1044
 
     * if pic.reference is set then the frame will be read later by lavc
 
1142
     * Called at the beginning of each frame to get a buffer for it.
 
1143
     * If pic.reference is set then the frame will be read later by libavcodec.
1045
1144
     * avcodec_align_dimensions() should be used to find the required width and
1046
 
     * height, as they normally need to be rounded up to the next multiple of 16
 
1145
     * height, as they normally need to be rounded up to the next multiple of 16.
1047
1146
     * - encoding: unused
1048
 
     * - decoding: set by lavc, user can override
 
1147
     * - decoding: Set by libavcodec., user can override.
1049
1148
     */
1050
1149
    int (*get_buffer)(struct AVCodecContext *c, AVFrame *pic);
1051
1150
 
1052
1151
    /**
1053
 
     * called to release buffers which where allocated with get_buffer.
1054
 
     * a released buffer can be reused in get_buffer()
1055
 
     * pic.data[*] must be set to NULL
 
1152
     * Called to release buffers which were allocated with get_buffer.
 
1153
     * A released buffer can be reused in get_buffer().
 
1154
     * pic.data[*] must be set to NULL.
1056
1155
     * - encoding: unused
1057
 
     * - decoding: set by lavc, user can override
 
1156
     * - decoding: Set by libavcodec., user can override.
1058
1157
     */
1059
1158
    void (*release_buffer)(struct AVCodecContext *c, AVFrame *pic);
1060
1159
 
1061
1160
    /**
1062
 
     * if 1 the stream has a 1 frame delay during decoding.
1063
 
     * - encoding: set by lavc
1064
 
     * - decoding: set by lavc
 
1161
     * If 1 the stream has a 1 frame delay during decoding.
 
1162
     * - encoding: Set by libavcodec.
 
1163
     * - decoding: Set by libavcodec.
1065
1164
     */
1066
1165
    int has_b_frames;
1067
1166
 
1068
1167
    /**
1069
1168
     * number of bytes per packet if constant and known or 0
1070
 
     * used by some WAV based audio codecs
 
1169
     * Used by some WAV based audio codecs.
1071
1170
     */
1072
1171
    int block_align;
1073
1172
 
1074
 
    int parse_only; /* - decoding only: if true, only parsing is done
 
1173
    int parse_only; /* - decoding only: If true, only parsing is done
1075
1174
                       (function avcodec_parse_frame()). The frame
1076
1175
                       data is returned. Only MPEG codecs support this now. */
1077
1176
 
1078
1177
    /**
1079
 
     * 0-> h263 quant 1-> mpeg quant.
1080
 
     * - encoding: set by user.
 
1178
     * 0-> h263 quant 1-> mpeg quant
 
1179
     * - encoding: Set by user.
1081
1180
     * - decoding: unused
1082
1181
     */
1083
1182
    int mpeg_quant;
1084
1183
 
1085
1184
    /**
1086
 
     * pass1 encoding statistics output buffer.
1087
 
     * - encoding: set by lavc
 
1185
     * pass1 encoding statistics output buffer
 
1186
     * - encoding: Set by libavcodec.
1088
1187
     * - decoding: unused
1089
1188
     */
1090
1189
    char *stats_out;
1091
1190
 
1092
1191
    /**
1093
 
     * pass2 encoding statistics input buffer.
1094
 
     * concatenated stuff from stats_out of pass1 should be placed here
1095
 
     * - encoding: allocated/set/freed by user
 
1192
     * pass2 encoding statistics input buffer
 
1193
     * Concatenated stuff from stats_out of pass1 should be placed here.
 
1194
     * - encoding: Allocated/set/freed by user.
1096
1195
     * - decoding: unused
1097
1196
     */
1098
1197
    char *stats_in;
1099
1198
 
1100
1199
    /**
1101
 
     * ratecontrol qmin qmax limiting method.
1102
 
     * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax
1103
 
     * - encoding: set by user.
 
1200
     * ratecontrol qmin qmax limiting method
 
1201
     * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax.
 
1202
     * - encoding: Set by user.
1104
1203
     * - decoding: unused
1105
1204
     */
1106
1205
    float rc_qsquish;
1109
1208
    int rc_qmod_freq;
1110
1209
 
1111
1210
    /**
1112
 
     * ratecontrol override, see RcOverride.
1113
 
     * - encoding: allocated/set/freed by user.
 
1211
     * ratecontrol override, see RcOverride
 
1212
     * - encoding: Allocated/set/freed by user.
1114
1213
     * - decoding: unused
1115
1214
     */
1116
1215
    RcOverride *rc_override;
1117
1216
    int rc_override_count;
1118
1217
 
1119
1218
    /**
1120
 
     * rate control equation.
1121
 
     * - encoding: set by user
 
1219
     * rate control equation
 
1220
     * - encoding: Set by user
1122
1221
     * - decoding: unused
1123
1222
     */
1124
 
    char *rc_eq;
 
1223
    const char *rc_eq;
1125
1224
 
1126
1225
    /**
1127
 
     * maximum bitrate.
1128
 
     * - encoding: set by user.
 
1226
     * maximum bitrate
 
1227
     * - encoding: Set by user.
1129
1228
     * - decoding: unused
1130
1229
     */
1131
1230
    int rc_max_rate;
1132
1231
 
1133
1232
    /**
1134
 
     * minimum bitrate.
1135
 
     * - encoding: set by user.
 
1233
     * minimum bitrate
 
1234
     * - encoding: Set by user.
1136
1235
     * - decoding: unused
1137
1236
     */
1138
1237
    int rc_min_rate;
1139
1238
 
1140
1239
    /**
1141
 
     * decoder bitstream buffer size.
1142
 
     * - encoding: set by user.
 
1240
     * decoder bitstream buffer size
 
1241
     * - encoding: Set by user.
1143
1242
     * - decoding: unused
1144
1243
     */
1145
1244
    int rc_buffer_size;
1146
1245
    float rc_buffer_aggressivity;
1147
1246
 
1148
1247
    /**
1149
 
     * qscale factor between p and i frames.
1150
 
     * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
1151
 
     * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
1152
 
     * - encoding: set by user.
 
1248
     * qscale factor between P and I-frames
 
1249
     * If > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset).
 
1250
     * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
 
1251
     * - encoding: Set by user.
1153
1252
     * - decoding: unused
1154
1253
     */
1155
1254
    float i_quant_factor;
1156
1255
 
1157
1256
    /**
1158
 
     * qscale offset between p and i frames.
1159
 
     * - encoding: set by user.
 
1257
     * qscale offset between P and I-frames
 
1258
     * - encoding: Set by user.
1160
1259
     * - decoding: unused
1161
1260
     */
1162
1261
    float i_quant_offset;
1163
1262
 
1164
1263
    /**
1165
 
     * initial complexity for pass1 ratecontrol.
1166
 
     * - encoding: set by user.
 
1264
     * initial complexity for pass1 ratecontrol
 
1265
     * - encoding: Set by user.
1167
1266
     * - decoding: unused
1168
1267
     */
1169
1268
    float rc_initial_cplx;
1170
1269
 
1171
1270
    /**
1172
 
     * dct algorithm, see FF_DCT_* below.
1173
 
     * - encoding: set by user
 
1271
     * DCT algorithm, see FF_DCT_* below
 
1272
     * - encoding: Set by user.
1174
1273
     * - decoding: unused
1175
1274
     */
1176
1275
    int dct_algo;
1183
1282
#define FF_DCT_FAAN    6
1184
1283
 
1185
1284
    /**
1186
 
     * luminance masking (0-> disabled).
1187
 
     * - encoding: set by user
 
1285
     * luminance masking (0-> disabled)
 
1286
     * - encoding: Set by user.
1188
1287
     * - decoding: unused
1189
1288
     */
1190
1289
    float lumi_masking;
1191
1290
 
1192
1291
    /**
1193
 
     * temporary complexity masking (0-> disabled).
1194
 
     * - encoding: set by user
 
1292
     * temporary complexity masking (0-> disabled)
 
1293
     * - encoding: Set by user.
1195
1294
     * - decoding: unused
1196
1295
     */
1197
1296
    float temporal_cplx_masking;
1198
1297
 
1199
1298
    /**
1200
 
     * spatial complexity masking (0-> disabled).
1201
 
     * - encoding: set by user
 
1299
     * spatial complexity masking (0-> disabled)
 
1300
     * - encoding: Set by user.
1202
1301
     * - decoding: unused
1203
1302
     */
1204
1303
    float spatial_cplx_masking;
1205
1304
 
1206
1305
    /**
1207
 
     * p block masking (0-> disabled).
1208
 
     * - encoding: set by user
 
1306
     * p block masking (0-> disabled)
 
1307
     * - encoding: Set by user.
1209
1308
     * - decoding: unused
1210
1309
     */
1211
1310
    float p_masking;
1212
1311
 
1213
1312
    /**
1214
 
     * darkness masking (0-> disabled).
1215
 
     * - encoding: set by user
 
1313
     * darkness masking (0-> disabled)
 
1314
     * - encoding: Set by user.
1216
1315
     * - decoding: unused
1217
1316
     */
1218
1317
    float dark_masking;
1219
1318
 
1220
1319
 
 
1320
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
1221
1321
    /* for binary compatibility */
1222
1322
    int unused;
 
1323
#endif
1223
1324
 
1224
1325
    /**
1225
 
     * idct algorithm, see FF_IDCT_* below.
1226
 
     * - encoding: set by user
1227
 
     * - decoding: set by user
 
1326
     * IDCT algorithm, see FF_IDCT_* below.
 
1327
     * - encoding: Set by user.
 
1328
     * - decoding: Set by user.
1228
1329
     */
1229
1330
    int idct_algo;
1230
 
#define FF_IDCT_AUTO         0
1231
 
#define FF_IDCT_INT          1
1232
 
#define FF_IDCT_SIMPLE       2
1233
 
#define FF_IDCT_SIMPLEMMX    3
1234
 
#define FF_IDCT_LIBMPEG2MMX  4
1235
 
#define FF_IDCT_PS2          5
1236
 
#define FF_IDCT_MLIB         6
1237
 
#define FF_IDCT_ARM          7
1238
 
#define FF_IDCT_ALTIVEC      8
1239
 
#define FF_IDCT_SH4          9
1240
 
#define FF_IDCT_SIMPLEARM    10
1241
 
#define FF_IDCT_H264         11
1242
 
#define FF_IDCT_VP3          12
1243
 
#define FF_IDCT_IPP          13
1244
 
#define FF_IDCT_XVIDMMX      14
1245
 
#define FF_IDCT_CAVS         15
 
1331
#define FF_IDCT_AUTO          0
 
1332
#define FF_IDCT_INT           1
 
1333
#define FF_IDCT_SIMPLE        2
 
1334
#define FF_IDCT_SIMPLEMMX     3
 
1335
#define FF_IDCT_LIBMPEG2MMX   4
 
1336
#define FF_IDCT_PS2           5
 
1337
#define FF_IDCT_MLIB          6
 
1338
#define FF_IDCT_ARM           7
 
1339
#define FF_IDCT_ALTIVEC       8
 
1340
#define FF_IDCT_SH4           9
 
1341
#define FF_IDCT_SIMPLEARM     10
 
1342
#define FF_IDCT_H264          11
 
1343
#define FF_IDCT_VP3           12
 
1344
#define FF_IDCT_IPP           13
 
1345
#define FF_IDCT_XVIDMMX       14
 
1346
#define FF_IDCT_CAVS          15
1246
1347
#define FF_IDCT_SIMPLEARMV5TE 16
1247
 
#define FF_IDCT_SIMPLEARMV6  17
 
1348
#define FF_IDCT_SIMPLEARMV6   17
 
1349
#define FF_IDCT_SIMPLEVIS     18
 
1350
#define FF_IDCT_WMV2          19
 
1351
#define FF_IDCT_FAAN          20
1248
1352
 
1249
1353
    /**
1250
 
     * slice count.
1251
 
     * - encoding: set by lavc
1252
 
     * - decoding: set by user (or 0)
 
1354
     * slice count
 
1355
     * - encoding: Set by libavcodec.
 
1356
     * - decoding: Set by user (or 0).
1253
1357
     */
1254
1358
    int slice_count;
1255
1359
    /**
1256
 
     * slice offsets in the frame in bytes.
1257
 
     * - encoding: set/allocated by lavc
1258
 
     * - decoding: set/allocated by user (or NULL)
 
1360
     * slice offsets in the frame in bytes
 
1361
     * - encoding: Set/allocated by libavcodec.
 
1362
     * - decoding: Set/allocated by user (or NULL).
1259
1363
     */
1260
1364
    int *slice_offset;
1261
1365
 
1262
1366
    /**
1263
 
     * error concealment flags.
 
1367
     * error concealment flags
1264
1368
     * - encoding: unused
1265
 
     * - decoding: set by user
 
1369
     * - decoding: Set by user.
1266
1370
     */
1267
1371
    int error_concealment;
1268
1372
#define FF_EC_GUESS_MVS   1
1272
1376
     * dsp_mask could be add used to disable unwanted CPU features
1273
1377
     * CPU features (i.e. MMX, SSE. ...)
1274
1378
     *
1275
 
     * with FORCE flag you may instead enable given CPU features
1276
 
     * (Dangerous: usable in case of misdetection, improper usage however will
1277
 
     * result into program crash)
 
1379
     * With the FORCE flag you may instead enable given CPU features.
 
1380
     * (Dangerous: Usable in case of misdetection, improper usage however will
 
1381
     * result into program crash.)
1278
1382
     */
1279
1383
    unsigned dsp_mask;
1280
 
#define FF_MM_FORCE    0x80000000 /* force usage of selected flags (OR) */
 
1384
#define FF_MM_FORCE    0x80000000 /* Force usage of selected flags (OR) */
1281
1385
    /* lower 16 bits - CPU features */
1282
 
#ifdef HAVE_MMX
1283
 
#define FF_MM_MMX      0x0001 /* standard MMX */
1284
 
#define FF_MM_3DNOW    0x0004 /* AMD 3DNOW */
1285
 
#define FF_MM_MMXEXT   0x0002 /* SSE integer functions or AMD MMX ext */
1286
 
#define FF_MM_SSE      0x0008 /* SSE functions */
1287
 
#define FF_MM_SSE2     0x0010 /* PIV SSE2 functions */
1288
 
#define FF_MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */
1289
 
#endif /* HAVE_MMX */
1290
 
#ifdef HAVE_IWMMXT
1291
 
#define FF_MM_IWMMXT   0x0100 /* XScale IWMMXT */
1292
 
#endif /* HAVE_IWMMXT */
 
1386
#define FF_MM_MMX      0x0001 ///< standard MMX
 
1387
#define FF_MM_3DNOW    0x0004 ///< AMD 3DNOW
 
1388
#define FF_MM_MMXEXT   0x0002 ///< SSE integer functions or AMD MMX ext
 
1389
#define FF_MM_SSE      0x0008 ///< SSE functions
 
1390
#define FF_MM_SSE2     0x0010 ///< PIV SSE2 functions
 
1391
#define FF_MM_3DNOWEXT 0x0020 ///< AMD 3DNowExt
 
1392
#define FF_MM_SSE3     0x0040 ///< Prescott SSE3 functions
 
1393
#define FF_MM_SSSE3    0x0080 ///< Conroe SSSE3 functions
 
1394
#define FF_MM_IWMMXT   0x0100 ///< XScale IWMMXT
1293
1395
 
1294
1396
    /**
1295
1397
     * bits per sample/pixel from the demuxer (needed for huffyuv).
1296
 
     * - encoding: set by lavc
1297
 
     * - decoding: set by user
 
1398
     * - encoding: Set by libavcodec.
 
1399
     * - decoding: Set by user.
1298
1400
     */
1299
1401
     int bits_per_sample;
1300
1402
 
1301
1403
    /**
1302
 
     * prediction method (needed for huffyuv).
1303
 
     * - encoding: set by user
 
1404
     * prediction method (needed for huffyuv)
 
1405
     * - encoding: Set by user.
1304
1406
     * - decoding: unused
1305
1407
     */
1306
1408
     int prediction_method;
1309
1411
#define FF_PRED_MEDIAN 2
1310
1412
 
1311
1413
    /**
1312
 
     * sample aspect ratio (0 if unknown).
1313
 
     * numerator and denominator must be relative prime and smaller then 256 for some video standards
1314
 
     * - encoding: set by user.
1315
 
     * - decoding: set by lavc.
 
1414
     * sample aspect ratio (0 if unknown)
 
1415
     * Numerator and denominator must be relatively prime and smaller than 256 for some video standards.
 
1416
     * - encoding: Set by user.
 
1417
     * - decoding: Set by libavcodec.
1316
1418
     */
1317
1419
    AVRational sample_aspect_ratio;
1318
1420
 
1319
1421
    /**
1320
 
     * the picture in the bitstream.
1321
 
     * - encoding: set by lavc
1322
 
     * - decoding: set by lavc
 
1422
     * the picture in the bitstream
 
1423
     * - encoding: Set by libavcodec.
 
1424
     * - decoding: Set by libavcodec.
1323
1425
     */
1324
1426
    AVFrame *coded_frame;
1325
1427
 
1326
1428
    /**
1327
 
     * debug.
1328
 
     * - encoding: set by user.
1329
 
     * - decoding: set by user.
 
1429
     * debug
 
1430
     * - encoding: Set by user.
 
1431
     * - decoding: Set by user.
1330
1432
     */
1331
1433
    int debug;
1332
 
#define FF_DEBUG_PICT_INFO 1
1333
 
#define FF_DEBUG_RC        2
1334
 
#define FF_DEBUG_BITSTREAM 4
1335
 
#define FF_DEBUG_MB_TYPE   8
1336
 
#define FF_DEBUG_QP        16
1337
 
#define FF_DEBUG_MV        32
1338
 
#define FF_DEBUG_DCT_COEFF 0x00000040
1339
 
#define FF_DEBUG_SKIP      0x00000080
1340
 
#define FF_DEBUG_STARTCODE 0x00000100
1341
 
#define FF_DEBUG_PTS       0x00000200
1342
 
#define FF_DEBUG_ER        0x00000400
1343
 
#define FF_DEBUG_MMCO      0x00000800
1344
 
#define FF_DEBUG_BUGS      0x00001000
1345
 
#define FF_DEBUG_VIS_QP    0x00002000
 
1434
#define FF_DEBUG_PICT_INFO   1
 
1435
#define FF_DEBUG_RC          2
 
1436
#define FF_DEBUG_BITSTREAM   4
 
1437
#define FF_DEBUG_MB_TYPE     8
 
1438
#define FF_DEBUG_QP          16
 
1439
#define FF_DEBUG_MV          32
 
1440
#define FF_DEBUG_DCT_COEFF   0x00000040
 
1441
#define FF_DEBUG_SKIP        0x00000080
 
1442
#define FF_DEBUG_STARTCODE   0x00000100
 
1443
#define FF_DEBUG_PTS         0x00000200
 
1444
#define FF_DEBUG_ER          0x00000400
 
1445
#define FF_DEBUG_MMCO        0x00000800
 
1446
#define FF_DEBUG_BUGS        0x00001000
 
1447
#define FF_DEBUG_VIS_QP      0x00002000
1346
1448
#define FF_DEBUG_VIS_MB_TYPE 0x00004000
1347
1449
 
1348
1450
    /**
1349
 
     * debug.
1350
 
     * - encoding: set by user.
1351
 
     * - decoding: set by user.
 
1451
     * debug
 
1452
     * - encoding: Set by user.
 
1453
     * - decoding: Set by user.
1352
1454
     */
1353
1455
    int debug_mv;
1354
1456
#define FF_DEBUG_VIS_MV_P_FOR  0x00000001 //visualize forward predicted MVs of P frames
1356
1458
#define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
1357
1459
 
1358
1460
    /**
1359
 
     * error.
1360
 
     * - encoding: set by lavc if flags&CODEC_FLAG_PSNR
 
1461
     * error
 
1462
     * - encoding: Set by libavcodec if flags&CODEC_FLAG_PSNR.
1361
1463
     * - decoding: unused
1362
1464
     */
1363
1465
    uint64_t error[4];
1364
1466
 
1365
1467
    /**
1366
 
     * minimum MB quantizer.
 
1468
     * minimum MB quantizer
1367
1469
     * - encoding: unused
1368
1470
     * - decoding: unused
1369
1471
     */
1370
1472
    int mb_qmin;
1371
1473
 
1372
1474
    /**
1373
 
     * maximum MB quantizer.
 
1475
     * maximum MB quantizer
1374
1476
     * - encoding: unused
1375
1477
     * - decoding: unused
1376
1478
     */
1377
1479
    int mb_qmax;
1378
1480
 
1379
1481
    /**
1380
 
     * motion estimation compare function.
1381
 
     * - encoding: set by user.
 
1482
     * motion estimation comparison function
 
1483
     * - encoding: Set by user.
1382
1484
     * - decoding: unused
1383
1485
     */
1384
1486
    int me_cmp;
1385
1487
    /**
1386
 
     * subpixel motion estimation compare function.
1387
 
     * - encoding: set by user.
 
1488
     * subpixel motion estimation comparison function
 
1489
     * - encoding: Set by user.
1388
1490
     * - decoding: unused
1389
1491
     */
1390
1492
    int me_sub_cmp;
1391
1493
    /**
1392
 
     * macroblock compare function (not supported yet).
1393
 
     * - encoding: set by user.
 
1494
     * macroblock comparison function (not supported yet)
 
1495
     * - encoding: Set by user.
1394
1496
     * - decoding: unused
1395
1497
     */
1396
1498
    int mb_cmp;
1397
1499
    /**
1398
 
     * interlaced dct compare function
1399
 
     * - encoding: set by user.
 
1500
     * interlaced DCT comparison function
 
1501
     * - encoding: Set by user.
1400
1502
     * - decoding: unused
1401
1503
     */
1402
1504
    int ildct_cmp;
1403
 
#define FF_CMP_SAD  0
1404
 
#define FF_CMP_SSE  1
1405
 
#define FF_CMP_SATD 2
1406
 
#define FF_CMP_DCT  3
1407
 
#define FF_CMP_PSNR 4
1408
 
#define FF_CMP_BIT  5
1409
 
#define FF_CMP_RD   6
1410
 
#define FF_CMP_ZERO 7
1411
 
#define FF_CMP_VSAD 8
1412
 
#define FF_CMP_VSSE 9
1413
 
#define FF_CMP_NSSE 10
1414
 
#define FF_CMP_W53  11
1415
 
#define FF_CMP_W97  12
 
1505
#define FF_CMP_SAD    0
 
1506
#define FF_CMP_SSE    1
 
1507
#define FF_CMP_SATD   2
 
1508
#define FF_CMP_DCT    3
 
1509
#define FF_CMP_PSNR   4
 
1510
#define FF_CMP_BIT    5
 
1511
#define FF_CMP_RD     6
 
1512
#define FF_CMP_ZERO   7
 
1513
#define FF_CMP_VSAD   8
 
1514
#define FF_CMP_VSSE   9
 
1515
#define FF_CMP_NSSE   10
 
1516
#define FF_CMP_W53    11
 
1517
#define FF_CMP_W97    12
1416
1518
#define FF_CMP_DCTMAX 13
1417
1519
#define FF_CMP_DCT264 14
1418
1520
#define FF_CMP_CHROMA 256
1419
1521
 
1420
1522
    /**
1421
 
     * ME diamond size & shape.
1422
 
     * - encoding: set by user.
 
1523
     * ME diamond size & shape
 
1524
     * - encoding: Set by user.
1423
1525
     * - decoding: unused
1424
1526
     */
1425
1527
    int dia_size;
1426
1528
 
1427
1529
    /**
1428
 
     * amount of previous MV predictors (2a+1 x 2a+1 square).
1429
 
     * - encoding: set by user.
 
1530
     * amount of previous MV predictors (2a+1 x 2a+1 square)
 
1531
     * - encoding: Set by user.
1430
1532
     * - decoding: unused
1431
1533
     */
1432
1534
    int last_predictor_count;
1433
1535
 
1434
1536
    /**
1435
 
     * pre pass for motion estimation.
1436
 
     * - encoding: set by user.
 
1537
     * prepass for motion estimation
 
1538
     * - encoding: Set by user.
1437
1539
     * - decoding: unused
1438
1540
     */
1439
1541
    int pre_me;
1440
1542
 
1441
1543
    /**
1442
 
     * motion estimation pre pass compare function.
1443
 
     * - encoding: set by user.
 
1544
     * motion estimation prepass comparison function
 
1545
     * - encoding: Set by user.
1444
1546
     * - decoding: unused
1445
1547
     */
1446
1548
    int me_pre_cmp;
1447
1549
 
1448
1550
    /**
1449
 
     * ME pre pass diamond size & shape.
1450
 
     * - encoding: set by user.
 
1551
     * ME prepass diamond size & shape
 
1552
     * - encoding: Set by user.
1451
1553
     * - decoding: unused
1452
1554
     */
1453
1555
    int pre_dia_size;
1454
1556
 
1455
1557
    /**
1456
 
     * subpel ME quality.
1457
 
     * - encoding: set by user.
 
1558
     * subpel ME quality
 
1559
     * - encoding: Set by user.
1458
1560
     * - decoding: unused
1459
1561
     */
1460
1562
    int me_subpel_quality;
1461
1563
 
1462
1564
    /**
1463
 
     * callback to negotiate the pixelFormat.
 
1565
     * callback to negotiate the pixelFormat
1464
1566
     * @param fmt is the list of formats which are supported by the codec,
1465
 
     * its terminated by -1 as 0 is a valid format, the formats are ordered by quality
1466
 
     * the first is allways the native one
1467
 
     * @return the choosen format
 
1567
     * it is terminated by -1 as 0 is a valid format, the formats are ordered by quality.
 
1568
     * The first is always the native one.
 
1569
     * @return the chosen format
1468
1570
     * - encoding: unused
1469
 
     * - decoding: set by user, if not set then the native format will always be choosen
 
1571
     * - decoding: Set by user, if not set the native format will be chosen.
1470
1572
     */
1471
1573
    enum PixelFormat (*get_format)(struct AVCodecContext *s, const enum PixelFormat * fmt);
1472
1574
 
1473
1575
    /**
1474
 
     * DTG active format information (additionnal aspect ratio
1475
 
     * information only used in DVB MPEG2 transport streams). 0 if
1476
 
     * not set.
 
1576
     * DTG active format information (additional aspect ratio
 
1577
     * information only used in DVB MPEG-2 transport streams)
 
1578
     * 0 if not set.
1477
1579
     *
1478
 
     * - encoding: unused.
1479
 
     * - decoding: set by decoder
 
1580
     * - encoding: unused
 
1581
     * - decoding: Set by decoder.
1480
1582
     */
1481
1583
    int dtg_active_format;
1482
1584
#define FF_DTG_AFD_SAME         8
1488
1590
#define FF_DTG_AFD_SP_4_3       15
1489
1591
 
1490
1592
    /**
1491
 
     * Maximum motion estimation search range in subpel units.
1492
 
     * if 0 then no limit
 
1593
     * maximum motion estimation search range in subpel units
 
1594
     * If 0 then no limit.
1493
1595
     *
1494
 
     * - encoding: set by user.
1495
 
     * - decoding: unused.
 
1596
     * - encoding: Set by user.
 
1597
     * - decoding: unused
1496
1598
     */
1497
1599
    int me_range;
1498
1600
 
1499
1601
    /**
1500
 
     * intra quantizer bias.
1501
 
     * - encoding: set by user.
 
1602
     * intra quantizer bias
 
1603
     * - encoding: Set by user.
1502
1604
     * - decoding: unused
1503
1605
     */
1504
1606
    int intra_quant_bias;
1505
1607
#define FF_DEFAULT_QUANT_BIAS 999999
1506
1608
 
1507
1609
    /**
1508
 
     * inter quantizer bias.
1509
 
     * - encoding: set by user.
 
1610
     * inter quantizer bias
 
1611
     * - encoding: Set by user.
1510
1612
     * - decoding: unused
1511
1613
     */
1512
1614
    int inter_quant_bias;
1513
1615
 
1514
1616
    /**
1515
 
     * color table ID.
1516
 
     * - encoding: unused.
1517
 
     * - decoding: which clrtable should be used for 8bit RGB images
1518
 
     *             table have to be stored somewhere FIXME
 
1617
     * color table ID
 
1618
     * - encoding: unused
 
1619
     * - decoding: Which clrtable should be used for 8bit RGB images.
 
1620
     *             Tables have to be stored somewhere. FIXME
1519
1621
     */
1520
1622
    int color_table_id;
1521
1623
 
1522
1624
    /**
1523
 
     * internal_buffer count.
1524
 
     * Don't touch, used by lavc default_get_buffer()
 
1625
     * internal_buffer count
 
1626
     * Don't touch, used by libavcodec default_get_buffer().
1525
1627
     */
1526
1628
    int internal_buffer_count;
1527
1629
 
1528
1630
    /**
1529
 
     * internal_buffers.
1530
 
     * Don't touch, used by lavc default_get_buffer()
 
1631
     * internal_buffers
 
1632
     * Don't touch, used by libavcodec default_get_buffer().
1531
1633
     */
1532
1634
    void *internal_buffer;
1533
1635
 
1538
1640
 
1539
1641
#define FF_QUALITY_SCALE FF_LAMBDA_SCALE //FIXME maybe remove
1540
1642
    /**
1541
 
     * global quality for codecs which cannot change it per frame.
1542
 
     * this should be proportional to MPEG1/2/4 qscale.
1543
 
     * - encoding: set by user.
 
1643
     * Global quality for codecs which cannot change it per frame.
 
1644
     * This should be proportional to MPEG-1/2/4 qscale.
 
1645
     * - encoding: Set by user.
1544
1646
     * - decoding: unused
1545
1647
     */
1546
1648
    int global_quality;
1547
1649
 
1548
 
#define FF_CODER_TYPE_VLC   0
1549
 
#define FF_CODER_TYPE_AC    1
 
1650
#define FF_CODER_TYPE_VLC       0
 
1651
#define FF_CODER_TYPE_AC        1
 
1652
#define FF_CODER_TYPE_RAW       2
 
1653
#define FF_CODER_TYPE_RLE       3
 
1654
#define FF_CODER_TYPE_DEFLATE   4
1550
1655
    /**
1551
1656
     * coder type
1552
 
     * - encoding: set by user.
 
1657
     * - encoding: Set by user.
1553
1658
     * - decoding: unused
1554
1659
     */
1555
1660
    int coder_type;
1556
1661
 
1557
1662
    /**
1558
1663
     * context model
1559
 
     * - encoding: set by user.
 
1664
     * - encoding: Set by user.
1560
1665
     * - decoding: unused
1561
1666
     */
1562
1667
    int context_model;
1564
1669
    /**
1565
1670
     *
1566
1671
     * - encoding: unused
1567
 
     * - decoding: set by user.
 
1672
     * - decoding: Set by user.
1568
1673
     */
1569
1674
    uint8_t * (*realloc)(struct AVCodecContext *s, uint8_t *buf, int buf_size);
1570
1675
#endif
1572
1677
    /**
1573
1678
     * slice flags
1574
1679
     * - encoding: unused
1575
 
     * - decoding: set by user.
 
1680
     * - decoding: Set by user.
1576
1681
     */
1577
1682
    int slice_flags;
1578
1683
#define SLICE_FLAG_CODED_ORDER    0x0001 ///< draw_horiz_band() is called in coded order instead of display
1588
1693
 
1589
1694
    /**
1590
1695
     * macroblock decision mode
1591
 
     * - encoding: set by user.
 
1696
     * - encoding: Set by user.
1592
1697
     * - decoding: unused
1593
1698
     */
1594
1699
    int mb_decision;
1595
1700
#define FF_MB_DECISION_SIMPLE 0        ///< uses mb_cmp
1596
1701
#define FF_MB_DECISION_BITS   1        ///< chooses the one which needs the fewest bits
1597
 
#define FF_MB_DECISION_RD     2        ///< rate distoration
 
1702
#define FF_MB_DECISION_RD     2        ///< rate distortion
1598
1703
 
1599
1704
    /**
1600
1705
     * custom intra quantization matrix
1601
 
     * - encoding: set by user, can be NULL
1602
 
     * - decoding: set by lavc
 
1706
     * - encoding: Set by user, can be NULL.
 
1707
     * - decoding: Set by libavcodec.
1603
1708
     */
1604
1709
    uint16_t *intra_matrix;
1605
1710
 
1606
1711
    /**
1607
1712
     * custom inter quantization matrix
1608
 
     * - encoding: set by user, can be NULL
1609
 
     * - decoding: set by lavc
 
1713
     * - encoding: Set by user, can be NULL.
 
1714
     * - decoding: Set by libavcodec.
1610
1715
     */
1611
1716
    uint16_t *inter_matrix;
1612
1717
 
1613
1718
    /**
1614
1719
     * fourcc from the AVI stream header (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
1615
 
     * this is used to workaround some encoder bugs
 
1720
     * This is used to work around some encoder bugs.
1616
1721
     * - encoding: unused
1617
 
     * - decoding: set by user, will be converted to upper case by lavc during init
 
1722
     * - decoding: Set by user, will be converted to uppercase by libavcodec during init.
1618
1723
     */
1619
1724
    unsigned int stream_codec_tag;
1620
1725
 
1621
1726
    /**
1622
 
     * scene change detection threshold.
1623
 
     * 0 is default, larger means fewer detected scene changes
1624
 
     * - encoding: set by user.
 
1727
     * scene change detection threshold
 
1728
     * 0 is default, larger means fewer detected scene changes.
 
1729
     * - encoding: Set by user.
1625
1730
     * - decoding: unused
1626
1731
     */
1627
1732
    int scenechange_threshold;
1628
1733
 
1629
1734
    /**
1630
 
     * minimum lagrange multipler
1631
 
     * - encoding: set by user.
 
1735
     * minimum Lagrange multipler
 
1736
     * - encoding: Set by user.
1632
1737
     * - decoding: unused
1633
1738
     */
1634
1739
    int lmin;
1635
1740
 
1636
1741
    /**
1637
 
     * maximum lagrange multipler
1638
 
     * - encoding: set by user.
 
1742
     * maximum Lagrange multipler
 
1743
     * - encoding: Set by user.
1639
1744
     * - decoding: unused
1640
1745
     */
1641
1746
    int lmax;
1642
1747
 
1643
1748
    /**
1644
 
     * Palette control structure
 
1749
     * palette control structure
1645
1750
     * - encoding: ??? (no palette-enabled encoder yet)
1646
 
     * - decoding: set by user.
 
1751
     * - decoding: Set by user.
1647
1752
     */
1648
1753
    struct AVPaletteControl *palctrl;
1649
1754
 
1650
1755
    /**
1651
1756
     * noise reduction strength
1652
 
     * - encoding: set by user.
 
1757
     * - encoding: Set by user.
1653
1758
     * - decoding: unused
1654
1759
     */
1655
1760
    int noise_reduction;
1656
1761
 
1657
1762
    /**
1658
 
     * called at the beginning of a frame to get cr buffer for it.
1659
 
     * buffer type (size, hints) must be the same. lavc won't check it.
1660
 
     * lavc will pass previous buffer in pic, function should return
 
1763
     * Called at the beginning of a frame to get cr buffer for it.
 
1764
     * Buffer type (size, hints) must be the same. libavcodec won't check it.
 
1765
     * libavcodec will pass previous buffer in pic, function should return
1661
1766
     * same buffer or new buffer with old frame "painted" into it.
1662
 
     * if pic.data[0] == NULL must behave like get_buffer().
 
1767
     * If pic.data[0] == NULL must behave like get_buffer().
1663
1768
     * - encoding: unused
1664
 
     * - decoding: set by lavc, user can override
 
1769
     * - decoding: Set by libavcodec., user can override
1665
1770
     */
1666
1771
    int (*reget_buffer)(struct AVCodecContext *c, AVFrame *pic);
1667
1772
 
1668
1773
    /**
1669
 
     * number of bits which should be loaded into the rc buffer before decoding starts
1670
 
     * - encoding: set by user.
 
1774
     * Number of bits which should be loaded into the rc buffer before decoding starts.
 
1775
     * - encoding: Set by user.
1671
1776
     * - decoding: unused
1672
1777
     */
1673
1778
    int rc_initial_buffer_occupancy;
1674
1779
 
1675
1780
    /**
1676
1781
     *
1677
 
     * - encoding: set by user.
 
1782
     * - encoding: Set by user.
1678
1783
     * - decoding: unused
1679
1784
     */
1680
1785
    int inter_threshold;
1681
1786
 
1682
1787
    /**
1683
 
     * CODEC_FLAG2_*.
1684
 
     * - encoding: set by user.
1685
 
     * - decoding: set by user.
 
1788
     * CODEC_FLAG2_*
 
1789
     * - encoding: Set by user.
 
1790
     * - decoding: Set by user.
1686
1791
     */
1687
1792
    int flags2;
1688
1793
 
1689
1794
    /**
1690
 
     * simulates errors in the bitstream to test error concealment.
1691
 
     * - encoding: set by user.
1692
 
     * - decoding: unused.
 
1795
     * Simulates errors in the bitstream to test error concealment.
 
1796
     * - encoding: Set by user.
 
1797
     * - decoding: unused
1693
1798
     */
1694
1799
    int error_rate;
1695
1800
 
1696
1801
    /**
1697
1802
     * MP3 antialias algorithm, see FF_AA_* below.
1698
1803
     * - encoding: unused
1699
 
     * - decoding: set by user
 
1804
     * - decoding: Set by user.
1700
1805
     */
1701
1806
    int antialias_algo;
1702
1807
#define FF_AA_AUTO    0
1704
1809
#define FF_AA_INT     2
1705
1810
#define FF_AA_FLOAT   3
1706
1811
    /**
1707
 
     * Quantizer noise shaping.
1708
 
     * - encoding: set by user
 
1812
     * quantizer noise shaping
 
1813
     * - encoding: Set by user.
1709
1814
     * - decoding: unused
1710
1815
     */
1711
1816
    int quantizer_noise_shaping;
1712
1817
 
1713
1818
    /**
1714
 
     * Thread count.
 
1819
     * thread count
1715
1820
     * is used to decide how many independent tasks should be passed to execute()
1716
 
     * - encoding: set by user
1717
 
     * - decoding: set by user
 
1821
     * - encoding: Set by user.
 
1822
     * - decoding: Set by user.
1718
1823
     */
1719
1824
    int thread_count;
1720
1825
 
1721
1826
    /**
1722
 
     * the codec may call this to execute several independent things. it will return only after
1723
 
     * finishing all tasks, the user may replace this with some multithreaded implementation, the
1724
 
     * default implementation will execute the parts serially
 
1827
     * The codec may call this to execute several independent things.
 
1828
     * It will return only after finishing all tasks.
 
1829
     * The user may replace this with some multithreaded implementation,
 
1830
     * the default implementation will execute the parts serially.
1725
1831
     * @param count the number of things to execute
1726
 
     * - encoding: set by lavc, user can override
1727
 
     * - decoding: set by lavc, user can override
 
1832
     * - encoding: Set by libavcodec, user can override.
 
1833
     * - decoding: Set by libavcodec, user can override.
1728
1834
     */
1729
1835
    int (*execute)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg), void **arg2, int *ret, int count);
1730
1836
 
1731
1837
    /**
1732
 
     * Thread opaque.
1733
 
     * can be used by execute() to store some per AVCodecContext stuff.
 
1838
     * thread opaque
 
1839
     * Can be used by execute() to store some per AVCodecContext stuff.
1734
1840
     * - encoding: set by execute()
1735
1841
     * - decoding: set by execute()
1736
1842
     */
1737
1843
    void *thread_opaque;
1738
1844
 
1739
1845
    /**
1740
 
     * Motion estimation threshold. under which no motion estimation is
1741
 
     * performed, but instead the user specified motion vectors are used
 
1846
     * Motion estimation threshold below which no motion estimation is
 
1847
     * performed, but instead the user specified motion vectors are used.
1742
1848
     *
1743
 
     * - encoding: set by user
 
1849
     * - encoding: Set by user.
1744
1850
     * - decoding: unused
1745
1851
     */
1746
1852
     int me_threshold;
1747
1853
 
1748
1854
    /**
1749
 
     * Macroblock threshold. under which the user specified macroblock types will be used
1750
 
     * - encoding: set by user
 
1855
     * Macroblock threshold below which the user specified macroblock types will be used.
 
1856
     * - encoding: Set by user.
1751
1857
     * - decoding: unused
1752
1858
     */
1753
1859
     int mb_threshold;
1754
1860
 
1755
1861
    /**
1756
 
     * precision of the intra dc coefficient - 8.
1757
 
     * - encoding: set by user
 
1862
     * precision of the intra DC coefficient - 8
 
1863
     * - encoding: Set by user.
1758
1864
     * - decoding: unused
1759
1865
     */
1760
1866
     int intra_dc_precision;
1761
1867
 
1762
1868
    /**
1763
 
     * noise vs. sse weight for the nsse comparsion function.
1764
 
     * - encoding: set by user
 
1869
     * noise vs. sse weight for the nsse comparsion function
 
1870
     * - encoding: Set by user.
1765
1871
     * - decoding: unused
1766
1872
     */
1767
1873
     int nsse_weight;
1768
1874
 
1769
1875
    /**
1770
 
     * number of macroblock rows at the top which are skipped.
 
1876
     * Number of macroblock rows at the top which are skipped.
1771
1877
     * - encoding: unused
1772
 
     * - decoding: set by user
 
1878
     * - decoding: Set by user.
1773
1879
     */
1774
1880
     int skip_top;
1775
1881
 
1776
1882
    /**
1777
 
     * number of macroblock rows at the bottom which are skipped.
 
1883
     * Number of macroblock rows at the bottom which are skipped.
1778
1884
     * - encoding: unused
1779
 
     * - decoding: set by user
 
1885
     * - decoding: Set by user.
1780
1886
     */
1781
1887
     int skip_bottom;
1782
1888
 
1783
1889
    /**
1784
1890
     * profile
1785
 
     * - encoding: set by user
1786
 
     * - decoding: set by lavc
 
1891
     * - encoding: Set by user.
 
1892
     * - decoding: Set by libavcodec.
1787
1893
     */
1788
1894
     int profile;
1789
1895
#define FF_PROFILE_UNKNOWN -99
 
1896
#define FF_PROFILE_AAC_MAIN 0
 
1897
#define FF_PROFILE_AAC_LOW  1
 
1898
#define FF_PROFILE_AAC_SSR  2
 
1899
#define FF_PROFILE_AAC_LTP  3
1790
1900
 
1791
1901
    /**
1792
1902
     * level
1793
 
     * - encoding: set by user
1794
 
     * - decoding: set by lavc
 
1903
     * - encoding: Set by user.
 
1904
     * - decoding: Set by libavcodec.
1795
1905
     */
1796
1906
     int level;
1797
1907
#define FF_LEVEL_UNKNOWN -99
1798
1908
 
1799
1909
    /**
1800
 
     * low resolution decoding. 1-> 1/2 size, 2->1/4 size
 
1910
     * low resolution decoding, 1-> 1/2 size, 2->1/4 size
1801
1911
     * - encoding: unused
1802
 
     * - decoding: set by user
 
1912
     * - decoding: Set by user.
1803
1913
     */
1804
1914
     int lowres;
1805
1915
 
1806
1916
    /**
1807
 
     * bitsream width / height. may be different from width/height if lowres
1808
 
     * or other things are used
 
1917
     * Bitstream width / height, may be different from width/height if lowres
 
1918
     * or other things are used.
1809
1919
     * - encoding: unused
1810
 
     * - decoding: set by user before init if known, codec should override / dynamically change if needed
 
1920
     * - decoding: Set by user before init if known. Codec should override / dynamically change if needed.
1811
1921
     */
1812
1922
    int coded_width, coded_height;
1813
1923
 
1814
1924
    /**
1815
1925
     * frame skip threshold
1816
 
     * - encoding: set by user
 
1926
     * - encoding: Set by user.
1817
1927
     * - decoding: unused
1818
1928
     */
1819
1929
    int frame_skip_threshold;
1820
1930
 
1821
1931
    /**
1822
1932
     * frame skip factor
1823
 
     * - encoding: set by user
 
1933
     * - encoding: Set by user.
1824
1934
     * - decoding: unused
1825
1935
     */
1826
1936
    int frame_skip_factor;
1827
1937
 
1828
1938
    /**
1829
1939
     * frame skip exponent
1830
 
     * - encoding: set by user
 
1940
     * - encoding: Set by user.
1831
1941
     * - decoding: unused
1832
1942
     */
1833
1943
    int frame_skip_exp;
1834
1944
 
1835
1945
    /**
1836
 
     * frame skip comparission function
1837
 
     * - encoding: set by user.
 
1946
     * frame skip comparison function
 
1947
     * - encoding: Set by user.
1838
1948
     * - decoding: unused
1839
1949
     */
1840
1950
    int frame_skip_cmp;
1841
1951
 
1842
1952
    /**
1843
 
     * border processing masking. raises the quantizer for mbs on the borders
 
1953
     * Border processing masking, raises the quantizer for mbs on the borders
1844
1954
     * of the picture.
1845
 
     * - encoding: set by user
 
1955
     * - encoding: Set by user.
1846
1956
     * - decoding: unused
1847
1957
     */
1848
1958
    float border_masking;
1849
1959
 
1850
1960
    /**
1851
 
     * minimum MB lagrange multipler.
1852
 
     * - encoding: set by user.
 
1961
     * minimum MB lagrange multipler
 
1962
     * - encoding: Set by user.
1853
1963
     * - decoding: unused
1854
1964
     */
1855
1965
    int mb_lmin;
1856
1966
 
1857
1967
    /**
1858
 
     * maximum MB lagrange multipler.
1859
 
     * - encoding: set by user.
 
1968
     * maximum MB lagrange multipler
 
1969
     * - encoding: Set by user.
1860
1970
     * - decoding: unused
1861
1971
     */
1862
1972
    int mb_lmax;
1863
1973
 
1864
1974
    /**
1865
1975
     *
1866
 
     * - encoding: set by user.
 
1976
     * - encoding: Set by user.
1867
1977
     * - decoding: unused
1868
1978
     */
1869
1979
    int me_penalty_compensation;
1871
1981
    /**
1872
1982
     *
1873
1983
     * - encoding: unused
1874
 
     * - decoding: set by user.
 
1984
     * - decoding: Set by user.
1875
1985
     */
1876
1986
    enum AVDiscard skip_loop_filter;
1877
1987
 
1878
1988
    /**
1879
1989
     *
1880
1990
     * - encoding: unused
1881
 
     * - decoding: set by user.
 
1991
     * - decoding: Set by user.
1882
1992
     */
1883
1993
    enum AVDiscard skip_idct;
1884
1994
 
1885
1995
    /**
1886
1996
     *
1887
1997
     * - encoding: unused
1888
 
     * - decoding: set by user.
 
1998
     * - decoding: Set by user.
1889
1999
     */
1890
2000
    enum AVDiscard skip_frame;
1891
2001
 
1892
2002
    /**
1893
2003
     *
1894
 
     * - encoding: set by user.
 
2004
     * - encoding: Set by user.
1895
2005
     * - decoding: unused
1896
2006
     */
1897
2007
    int bidir_refine;
1898
2008
 
1899
2009
    /**
1900
2010
     *
1901
 
     * - encoding: set by user.
 
2011
     * - encoding: Set by user.
1902
2012
     * - decoding: unused
1903
2013
     */
1904
2014
    int brd_scale;
1905
2015
 
1906
2016
    /**
1907
2017
     * constant rate factor - quality-based VBR - values ~correspond to qps
1908
 
     * - encoding: set by user.
 
2018
     * - encoding: Set by user.
1909
2019
     * - decoding: unused
1910
2020
     */
1911
2021
    float crf;
1912
2022
 
1913
2023
    /**
1914
2024
     * constant quantization parameter rate control method
1915
 
     * - encoding: set by user.
 
2025
     * - encoding: Set by user.
1916
2026
     * - decoding: unused
1917
2027
     */
1918
2028
    int cqp;
1919
2029
 
1920
2030
    /**
1921
 
     * minimum gop size
1922
 
     * - encoding: set by user.
 
2031
     * minimum GOP size
 
2032
     * - encoding: Set by user.
1923
2033
     * - decoding: unused
1924
2034
     */
1925
2035
    int keyint_min;
1926
2036
 
1927
2037
    /**
1928
2038
     * number of reference frames
1929
 
     * - encoding: set by user.
 
2039
     * - encoding: Set by user.
1930
2040
     * - decoding: unused
1931
2041
     */
1932
2042
    int refs;
1933
2043
 
1934
2044
    /**
1935
2045
     * chroma qp offset from luma
1936
 
     * - encoding: set by user.
 
2046
     * - encoding: Set by user.
1937
2047
     * - decoding: unused
1938
2048
     */
1939
2049
    int chromaoffset;
1940
2050
 
1941
2051
    /**
1942
 
     * influences how often b-frames are used
1943
 
     * - encoding: set by user.
 
2052
     * Influences how often B-frames are used.
 
2053
     * - encoding: Set by user.
1944
2054
     * - decoding: unused
1945
2055
     */
1946
2056
    int bframebias;
1947
2057
 
1948
2058
    /**
1949
2059
     * trellis RD quantization
1950
 
     * - encoding: set by user.
 
2060
     * - encoding: Set by user.
1951
2061
     * - decoding: unused
1952
2062
     */
1953
2063
    int trellis;
1954
2064
 
1955
2065
    /**
1956
 
     * reduce fluctuations in qp (before curve compression)
1957
 
     * - encoding: set by user.
 
2066
     * Reduce fluctuations in qp (before curve compression).
 
2067
     * - encoding: Set by user.
1958
2068
     * - decoding: unused
1959
2069
     */
1960
2070
    float complexityblur;
1962
2072
    /**
1963
2073
     * in-loop deblocking filter alphac0 parameter
1964
2074
     * alpha is in the range -6...6
1965
 
     * - encoding: set by user.
 
2075
     * - encoding: Set by user.
1966
2076
     * - decoding: unused
1967
2077
     */
1968
2078
    int deblockalpha;
1970
2080
    /**
1971
2081
     * in-loop deblocking filter beta parameter
1972
2082
     * beta is in the range -6...6
1973
 
     * - encoding: set by user.
 
2083
     * - encoding: Set by user.
1974
2084
     * - decoding: unused
1975
2085
     */
1976
2086
    int deblockbeta;
1977
2087
 
1978
2088
    /**
1979
2089
     * macroblock subpartition sizes to consider - p8x8, p4x4, b8x8, i8x8, i4x4
1980
 
     * - encoding: set by user.
 
2090
     * - encoding: Set by user.
1981
2091
     * - decoding: unused
1982
2092
     */
1983
2093
    int partitions;
1984
 
#define X264_PART_I4X4 0x001  /* Analyse i4x4 */
1985
 
#define X264_PART_I8X8 0x002  /* Analyse i8x8 (requires 8x8 transform) */
1986
 
#define X264_PART_P8X8 0x010  /* Analyse p16x8, p8x16 and p8x8 */
1987
 
#define X264_PART_P4X4 0x020  /* Analyse p8x4, p4x8, p4x4 */
1988
 
#define X264_PART_B8X8 0x100  /* Analyse b16x8, b8x16 and b8x8 */
 
2094
#define X264_PART_I4X4 0x001  /* Analyze i4x4 */
 
2095
#define X264_PART_I8X8 0x002  /* Analyze i8x8 (requires 8x8 transform) */
 
2096
#define X264_PART_P8X8 0x010  /* Analyze p16x8, p8x16 and p8x8 */
 
2097
#define X264_PART_P4X4 0x020  /* Analyze p8x4, p4x8, p4x4 */
 
2098
#define X264_PART_B8X8 0x100  /* Analyze b16x8, b8x16 and b8x8 */
1989
2099
 
1990
2100
    /**
1991
 
     * direct mv prediction mode - 0 (none), 1 (spatial), 2 (temporal)
1992
 
     * - encoding: set by user.
 
2101
     * direct MV prediction mode - 0 (none), 1 (spatial), 2 (temporal)
 
2102
     * - encoding: Set by user.
1993
2103
     * - decoding: unused
1994
2104
     */
1995
2105
    int directpred;
1996
2106
 
1997
2107
    /**
1998
 
     * audio cutoff bandwidth (0 means "automatic") . Currently used only by FAAC
1999
 
     * - encoding: set by user.
 
2108
     * Audio cutoff bandwidth (0 means "automatic")
 
2109
     * - encoding: Set by user.
2000
2110
     * - decoding: unused
2001
2111
     */
2002
2112
    int cutoff;
2003
2113
 
2004
2114
    /**
2005
 
     * multiplied by qscale for each frame and added to scene_change_score
2006
 
     * - encoding: set by user.
 
2115
     * Multiplied by qscale for each frame and added to scene_change_score.
 
2116
     * - encoding: Set by user.
2007
2117
     * - decoding: unused
2008
2118
     */
2009
2119
    int scenechange_factor;
2010
2120
 
2011
2121
    /**
2012
2122
     *
2013
 
     * note: value depends upon the compare functin used for fullpel ME
2014
 
     * - encoding: set by user.
 
2123
     * Note: Value depends upon the compare function used for fullpel ME.
 
2124
     * - encoding: Set by user.
2015
2125
     * - decoding: unused
2016
2126
     */
2017
2127
    int mv0_threshold;
2018
2128
 
2019
2129
    /**
2020
 
     * adjusts sensitivity of b_frame_strategy 1
2021
 
     * - encoding: set by user.
 
2130
     * Adjusts sensitivity of b_frame_strategy 1.
 
2131
     * - encoding: Set by user.
2022
2132
     * - decoding: unused
2023
2133
     */
2024
2134
    int b_sensitivity;
2025
2135
 
2026
2136
    /**
2027
 
     * - encoding: set by user.
 
2137
     * - encoding: Set by user.
2028
2138
     * - decoding: unused
2029
2139
     */
2030
2140
    int compression_level;
2031
2141
#define FF_COMPRESSION_DEFAULT -1
2032
2142
 
2033
2143
    /**
2034
 
     * sets whether to use LPC mode - used by FLAC encoder
2035
 
     * - encoding: set by user.
2036
 
     * - decoding: unused.
 
2144
     * Sets whether to use LPC mode - used by FLAC encoder.
 
2145
     * - encoding: Set by user.
 
2146
     * - decoding: unused
2037
2147
     */
2038
2148
    int use_lpc;
2039
2149
 
2040
2150
    /**
2041
2151
     * LPC coefficient precision - used by FLAC encoder
2042
 
     * - encoding: set by user.
2043
 
     * - decoding: unused.
 
2152
     * - encoding: Set by user.
 
2153
     * - decoding: unused
2044
2154
     */
2045
2155
    int lpc_coeff_precision;
2046
2156
 
2047
2157
    /**
2048
 
     * - encoding: set by user.
2049
 
     * - decoding: unused.
 
2158
     * - encoding: Set by user.
 
2159
     * - decoding: unused
2050
2160
     */
2051
2161
    int min_prediction_order;
2052
2162
 
2053
2163
    /**
2054
 
     * - encoding: set by user.
2055
 
     * - decoding: unused.
 
2164
     * - encoding: Set by user.
 
2165
     * - decoding: unused
2056
2166
     */
2057
2167
    int max_prediction_order;
2058
2168
 
2059
2169
    /**
2060
2170
     * search method for selecting prediction order
2061
 
     * - encoding: set by user.
2062
 
     * - decoding: unused.
 
2171
     * - encoding: Set by user.
 
2172
     * - decoding: unused
2063
2173
     */
2064
2174
    int prediction_order_method;
2065
2175
 
2066
2176
    /**
2067
 
     * - encoding: set by user.
2068
 
     * - decoding: unused.
 
2177
     * - encoding: Set by user.
 
2178
     * - decoding: unused
2069
2179
     */
2070
2180
    int min_partition_order;
2071
2181
 
2072
2182
    /**
2073
 
     * - encoding: set by user.
2074
 
     * - decoding: unused.
 
2183
     * - encoding: Set by user.
 
2184
     * - decoding: unused
2075
2185
     */
2076
2186
    int max_partition_order;
2077
2187
 
2078
2188
    /**
2079
2189
     * GOP timecode frame start number, in non drop frame format
2080
 
     * - encoding: set by user.
2081
 
     * - decoding: unused.
 
2190
     * - encoding: Set by user.
 
2191
     * - decoding: unused
2082
2192
     */
2083
2193
    int64_t timecode_frame_start;
 
2194
 
 
2195
    /**
 
2196
     * Decoder should decode to this many channels if it can (0 for default)
 
2197
     * - encoding: unused
 
2198
     * - decoding: Set by user.
 
2199
     */
 
2200
    int request_channels;
 
2201
 
 
2202
    /**
 
2203
     * Percentage of dynamic range compression to be applied by the decoder.
 
2204
     * The default value is 1.0, corresponding to full compression.
 
2205
     * - encoding: unused
 
2206
     * - decoding: Set by user.
 
2207
     */
 
2208
    float drc_scale;
2084
2209
} AVCodecContext;
2085
2210
 
2086
2211
/**
2087
2212
 * AVCodec.
2088
2213
 */
2089
2214
typedef struct AVCodec {
 
2215
    /**
 
2216
     * Name of the codec implementation.
 
2217
     * The name is globally unique among encoders and among decoders (but an
 
2218
     * encoder and a decoder can share the same name).
 
2219
     * This is the primary way to find a codec from the user perspective.
 
2220
     */
2090
2221
    const char *name;
2091
2222
    enum CodecType type;
2092
2223
    enum CodecID id;
2095
2226
    int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
2096
2227
    int (*close)(AVCodecContext *);
2097
2228
    int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
2098
 
                  uint8_t *buf, int buf_size);
 
2229
                  const uint8_t *buf, int buf_size);
 
2230
    /**
 
2231
     * Codec capabilities.
 
2232
     * see CODEC_CAP_*
 
2233
     */
2099
2234
    int capabilities;
2100
2235
    struct AVCodec *next;
 
2236
    /**
 
2237
     * Flush buffers.
 
2238
     * Will be called when seeking
 
2239
     */
2101
2240
    void (*flush)(AVCodecContext *);
2102
 
    const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
2103
 
    const enum PixelFormat *pix_fmts;       ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
 
2241
    const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
 
2242
    const enum PixelFormat *pix_fmts;       ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
 
2243
    const char *long_name;                  ///< descriptive name for the codec, meant to be more human readable than \p name
 
2244
    const int *supported_samplerates;       ///< array of supported audio samplerates, or NULL if unknown, array is terminated by 0
2104
2245
} AVCodec;
2105
2246
 
2106
2247
/**
2116
2257
 * AVPaletteControl
2117
2258
 * This structure defines a method for communicating palette changes
2118
2259
 * between and demuxer and a decoder.
2119
 
 * this is totally broken, palette changes should be sent as AVPackets
 
2260
 *
 
2261
 * @deprecated Use AVPacket to send palette changes instead.
 
2262
 * This is totally broken.
2120
2263
 */
2121
2264
#define AVPALETTE_SIZE 1024
2122
2265
#define AVPALETTE_COUNT 256
2123
2266
typedef struct AVPaletteControl {
2124
2267
 
2125
 
    /* demuxer sets this to 1 to indicate the palette has changed;
2126
 
     * decoder resets to 0 */
 
2268
    /* Demuxer sets this to 1 to indicate the palette has changed;
 
2269
     * decoder resets to 0. */
2127
2270
    int palette_changed;
2128
2271
 
2129
2272
    /* 4-byte ARGB palette entries, stored in native byte order; note that
2130
2273
     * the individual palette components should be on a 8-bit scale; if
2131
 
     * the palette data comes from a IBM VGA native format, the component
2132
 
     * data is probably 6 bits in size and needs to be scaled */
 
2274
     * the palette data comes from an IBM VGA native format, the component
 
2275
     * data is probably 6 bits in size and needs to be scaled. */
2133
2276
    unsigned int palette[AVPALETTE_COUNT];
2134
2277
 
2135
2278
} AVPaletteControl attribute_deprecated;
2153
2296
    AVSubtitleRect *rects;
2154
2297
} AVSubtitle;
2155
2298
 
2156
 
extern AVCodec ac3_encoder;
2157
 
extern AVCodec amr_nb_encoder;
2158
 
extern AVCodec amr_wb_encoder;
2159
 
extern AVCodec asv1_encoder;
2160
 
extern AVCodec asv2_encoder;
2161
 
extern AVCodec bmp_encoder;
2162
 
extern AVCodec dvvideo_encoder;
2163
 
extern AVCodec faac_encoder;
2164
 
extern AVCodec ffv1_encoder;
2165
 
extern AVCodec ffvhuff_encoder;
2166
 
extern AVCodec flac_encoder;
2167
 
extern AVCodec flashsv_encoder;
2168
 
extern AVCodec flv_encoder;
2169
 
extern AVCodec gif_encoder;
2170
 
extern AVCodec h261_encoder;
2171
 
extern AVCodec h263_encoder;
2172
 
extern AVCodec h263p_encoder;
2173
 
extern AVCodec h264_encoder;
2174
 
extern AVCodec huffyuv_encoder;
2175
 
extern AVCodec jpegls_encoder;
2176
 
extern AVCodec libgsm_encoder;
2177
 
extern AVCodec libgsm_ms_encoder;
2178
 
extern AVCodec libtheora_encoder;
2179
 
extern AVCodec ljpeg_encoder;
2180
 
extern AVCodec mdec_encoder;
2181
 
extern AVCodec mjpeg_encoder;
2182
 
extern AVCodec mp2_encoder;
2183
 
extern AVCodec mp3lame_encoder;
2184
 
extern AVCodec mpeg1video_encoder;
2185
 
extern AVCodec mpeg2video_encoder;
2186
 
extern AVCodec mpeg4_encoder;
2187
 
extern AVCodec msmpeg4v1_encoder;
2188
 
extern AVCodec msmpeg4v2_encoder;
2189
 
extern AVCodec msmpeg4v3_encoder;
2190
 
extern AVCodec oggvorbis_encoder;
2191
 
extern AVCodec pam_encoder;
2192
 
extern AVCodec pbm_encoder;
2193
 
extern AVCodec pgm_encoder;
2194
 
extern AVCodec pgmyuv_encoder;
2195
 
extern AVCodec png_encoder;
2196
 
extern AVCodec ppm_encoder;
2197
 
extern AVCodec rv10_encoder;
2198
 
extern AVCodec rv20_encoder;
2199
 
extern AVCodec snow_encoder;
2200
 
extern AVCodec sonic_encoder;
2201
 
extern AVCodec sonic_ls_encoder;
2202
 
extern AVCodec svq1_encoder;
2203
 
extern AVCodec vcr1_encoder;
2204
 
extern AVCodec vorbis_encoder;
2205
 
extern AVCodec wmav1_encoder;
2206
 
extern AVCodec wmav2_encoder;
2207
 
extern AVCodec wmv1_encoder;
2208
 
extern AVCodec wmv2_encoder;
2209
 
extern AVCodec x264_encoder;
2210
 
extern AVCodec xvid_encoder;
2211
 
extern AVCodec zlib_encoder;
2212
 
extern AVCodec zmbv_encoder;
2213
 
 
2214
 
extern AVCodec aac_decoder;
2215
 
extern AVCodec aasc_decoder;
2216
 
extern AVCodec alac_decoder;
2217
 
extern AVCodec amr_nb_decoder;
2218
 
extern AVCodec amr_wb_decoder;
2219
 
extern AVCodec asv1_decoder;
2220
 
extern AVCodec asv2_decoder;
2221
 
extern AVCodec avs_decoder;
2222
 
extern AVCodec bmp_decoder;
2223
 
extern AVCodec cavs_decoder;
2224
 
extern AVCodec cinepak_decoder;
2225
 
extern AVCodec cljr_decoder;
2226
 
extern AVCodec cook_decoder;
2227
 
extern AVCodec cscd_decoder;
2228
 
extern AVCodec cyuv_decoder;
2229
 
extern AVCodec dca_decoder;
2230
 
extern AVCodec dsicinaudio_decoder;
2231
 
extern AVCodec dsicinvideo_decoder;
2232
 
extern AVCodec dvvideo_decoder;
2233
 
extern AVCodec eightbps_decoder;
2234
 
extern AVCodec ffv1_decoder;
2235
 
extern AVCodec ffvhuff_decoder;
2236
 
extern AVCodec flac_decoder;
2237
 
extern AVCodec flashsv_decoder;
2238
 
extern AVCodec flic_decoder;
2239
 
extern AVCodec flv_decoder;
2240
 
extern AVCodec fourxm_decoder;
2241
 
extern AVCodec fraps_decoder;
2242
 
extern AVCodec gif_decoder;
2243
 
extern AVCodec h261_decoder;
2244
 
extern AVCodec h263_decoder;
2245
 
extern AVCodec h263i_decoder;
2246
 
extern AVCodec h264_decoder;
2247
 
extern AVCodec huffyuv_decoder;
2248
 
extern AVCodec idcin_decoder;
2249
 
extern AVCodec imc_decoder;
2250
 
extern AVCodec indeo2_decoder;
2251
 
extern AVCodec indeo3_decoder;
2252
 
extern AVCodec interplay_dpcm_decoder;
2253
 
extern AVCodec interplay_video_decoder;
2254
 
extern AVCodec kmvc_decoder;
2255
 
extern AVCodec libgsm_decoder;
2256
 
extern AVCodec libgsm_ms_decoder;
2257
 
extern AVCodec loco_decoder;
2258
 
extern AVCodec mace3_decoder;
2259
 
extern AVCodec mace6_decoder;
2260
 
extern AVCodec mdec_decoder;
2261
 
extern AVCodec mjpeg_decoder;
2262
 
extern AVCodec mjpegb_decoder;
2263
 
extern AVCodec mmvideo_decoder;
2264
 
extern AVCodec mp2_decoder;
2265
 
extern AVCodec mp3_decoder;
2266
 
extern AVCodec mp3adu_decoder;
2267
 
extern AVCodec mp3on4_decoder;
2268
 
extern AVCodec mpc7_decoder;
2269
 
extern AVCodec mpeg1video_decoder;
2270
 
extern AVCodec mpeg2video_decoder;
2271
 
extern AVCodec mpeg4_decoder;
2272
 
extern AVCodec mpeg4aac_decoder;
2273
 
extern AVCodec mpeg_xvmc_decoder;
2274
 
extern AVCodec mpegvideo_decoder;
2275
 
extern AVCodec msmpeg4v1_decoder;
2276
 
extern AVCodec msmpeg4v2_decoder;
2277
 
extern AVCodec msmpeg4v3_decoder;
2278
 
extern AVCodec msrle_decoder;
2279
 
extern AVCodec msvideo1_decoder;
2280
 
extern AVCodec mszh_decoder;
2281
 
extern AVCodec nuv_decoder;
2282
 
extern AVCodec oggvorbis_decoder;
2283
 
extern AVCodec png_decoder;
2284
 
extern AVCodec qdm2_decoder;
2285
 
extern AVCodec qdraw_decoder;
2286
 
extern AVCodec qpeg_decoder;
2287
 
extern AVCodec qtrle_decoder;
2288
 
extern AVCodec ra_144_decoder;
2289
 
extern AVCodec ra_288_decoder;
2290
 
extern AVCodec roq_decoder;
2291
 
extern AVCodec roq_dpcm_decoder;
2292
 
extern AVCodec rpza_decoder;
2293
 
extern AVCodec rv10_decoder;
2294
 
extern AVCodec rv20_decoder;
2295
 
extern AVCodec rv30_decoder;
2296
 
extern AVCodec rv40_decoder;
2297
 
extern AVCodec shorten_decoder;
2298
 
extern AVCodec smackaud_decoder;
2299
 
extern AVCodec smacker_decoder;
2300
 
extern AVCodec smc_decoder;
2301
 
extern AVCodec snow_decoder;
2302
 
extern AVCodec sol_dpcm_decoder;
2303
 
extern AVCodec sonic_decoder;
2304
 
extern AVCodec sp5x_decoder;
2305
 
extern AVCodec svq1_decoder;
2306
 
extern AVCodec svq3_decoder;
2307
 
extern AVCodec targa_decoder;
2308
 
extern AVCodec theora_decoder;
2309
 
extern AVCodec tiertexseqvideo_decoder;
2310
 
extern AVCodec tiff_decoder;
2311
 
extern AVCodec truemotion1_decoder;
2312
 
extern AVCodec truemotion2_decoder;
2313
 
extern AVCodec truespeech_decoder;
2314
 
extern AVCodec tscc_decoder;
2315
 
extern AVCodec tta_decoder;
2316
 
extern AVCodec ulti_decoder;
2317
 
extern AVCodec vc1_decoder;
2318
 
extern AVCodec vcr1_decoder;
2319
 
extern AVCodec vmdaudio_decoder;
2320
 
extern AVCodec vmdvideo_decoder;
2321
 
extern AVCodec vmnc_decoder;
2322
 
extern AVCodec vorbis_decoder;
2323
 
extern AVCodec vp3_decoder;
2324
 
extern AVCodec vp5_decoder;
2325
 
extern AVCodec vp6_decoder;
2326
 
extern AVCodec vp6f_decoder;
2327
 
extern AVCodec vqa_decoder;
2328
 
extern AVCodec wavpack_decoder;
2329
 
extern AVCodec wmav1_decoder;
2330
 
extern AVCodec wmav2_decoder;
2331
 
extern AVCodec wmv1_decoder;
2332
 
extern AVCodec wmv2_decoder;
2333
 
extern AVCodec wmv3_decoder;
2334
 
extern AVCodec wnv1_decoder;
2335
 
extern AVCodec ws_snd1_decoder;
2336
 
extern AVCodec xan_dpcm_decoder;
2337
 
extern AVCodec xan_wc3_decoder;
2338
 
extern AVCodec xl_decoder;
2339
 
extern AVCodec zlib_decoder;
2340
 
extern AVCodec zmbv_decoder;
2341
 
 
2342
 
/* pcm codecs */
2343
 
#define PCM_CODEC(id, name) \
2344
 
extern AVCodec name ## _decoder; \
2345
 
extern AVCodec name ## _encoder
2346
 
 
2347
 
PCM_CODEC(CODEC_ID_PCM_ALAW,    pcm_alaw);
2348
 
PCM_CODEC(CODEC_ID_PCM_MULAW,   pcm_mulaw);
2349
 
PCM_CODEC(CODEC_ID_PCM_S8,      pcm_s8);
2350
 
PCM_CODEC(CODEC_ID_PCM_S16BE,   pcm_s16be);
2351
 
PCM_CODEC(CODEC_ID_PCM_S16LE,   pcm_s16le);
2352
 
PCM_CODEC(CODEC_ID_PCM_S24BE,   pcm_s24be);
2353
 
PCM_CODEC(CODEC_ID_PCM_S24DAUD, pcm_s24daud);
2354
 
PCM_CODEC(CODEC_ID_PCM_S24LE,   pcm_s24le);
2355
 
PCM_CODEC(CODEC_ID_PCM_S32BE,   pcm_s32be);
2356
 
PCM_CODEC(CODEC_ID_PCM_S32LE,   pcm_s32le);
2357
 
PCM_CODEC(CODEC_ID_PCM_U8,      pcm_u8);
2358
 
PCM_CODEC(CODEC_ID_PCM_U16BE,   pcm_u16be);
2359
 
PCM_CODEC(CODEC_ID_PCM_U16LE,   pcm_u16le);
2360
 
PCM_CODEC(CODEC_ID_PCM_U24BE,   pcm_u24be);
2361
 
PCM_CODEC(CODEC_ID_PCM_U24LE,   pcm_u24le);
2362
 
PCM_CODEC(CODEC_ID_PCM_U32BE,   pcm_u32be);
2363
 
PCM_CODEC(CODEC_ID_PCM_U32LE,   pcm_u32le);
2364
 
 
2365
 
/* adpcm codecs */
2366
 
 
2367
 
PCM_CODEC(CODEC_ID_ADPCM_4XM,     adpcm_4xm);
2368
 
PCM_CODEC(CODEC_ID_ADPCM_ADX,     adpcm_adx);
2369
 
PCM_CODEC(CODEC_ID_ADPCM_CT,      adpcm_ct);
2370
 
PCM_CODEC(CODEC_ID_ADPCM_EA,      adpcm_ea);
2371
 
PCM_CODEC(CODEC_ID_ADPCM_G726,    adpcm_g726);
2372
 
PCM_CODEC(CODEC_ID_ADPCM_IMA_DK3, adpcm_ima_dk3);
2373
 
PCM_CODEC(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4);
2374
 
PCM_CODEC(CODEC_ID_ADPCM_IMA_QT,  adpcm_ima_qt);
2375
 
PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav);
2376
 
PCM_CODEC(CODEC_ID_ADPCM_IMA_WS,  adpcm_ima_ws);
2377
 
PCM_CODEC(CODEC_ID_ADPCM_MS,      adpcm_ms);
2378
 
PCM_CODEC(CODEC_ID_ADPCM_SBPRO_2, adpcm_sbpro_2);
2379
 
PCM_CODEC(CODEC_ID_ADPCM_SBPRO_3, adpcm_sbpro_3);
2380
 
PCM_CODEC(CODEC_ID_ADPCM_SBPRO_4, adpcm_sbpro_4);
2381
 
PCM_CODEC(CODEC_ID_ADPCM_SMJPEG,  adpcm_ima_smjpeg);
2382
 
PCM_CODEC(CODEC_ID_ADPCM_SWF,     adpcm_swf);
2383
 
PCM_CODEC(CODEC_ID_ADPCM_XA,      adpcm_xa);
2384
 
PCM_CODEC(CODEC_ID_ADPCM_YAMAHA,  adpcm_yamaha);
2385
 
 
2386
 
#undef PCM_CODEC
2387
 
 
2388
 
/* dummy raw video codec */
2389
 
extern AVCodec rawvideo_decoder;
2390
 
extern AVCodec rawvideo_encoder;
2391
 
 
2392
 
/* the following codecs use external GPL libs */
2393
 
extern AVCodec dts_decoder;
2394
 
extern AVCodec liba52_decoder;
2395
 
 
2396
 
/* subtitles */
2397
 
extern AVCodec dvbsub_decoder;
2398
 
extern AVCodec dvbsub_encoder;
2399
 
extern AVCodec dvdsub_decoder;
2400
 
extern AVCodec dvdsub_encoder;
2401
2299
 
2402
2300
/* resample.c */
2403
2301
 
2419
2317
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
2420
2318
/* YUV420 format is assumed ! */
2421
2319
 
2422
 
struct ImgReSampleContext attribute_deprecated;
2423
 
 
 
2320
/**
 
2321
 * @deprecated Use the software scaler (swscale) instead.
 
2322
 */
2424
2323
typedef struct ImgReSampleContext ImgReSampleContext attribute_deprecated;
2425
2324
 
 
2325
/**
 
2326
 * @deprecated Use the software scaler (swscale) instead.
 
2327
 */
2426
2328
attribute_deprecated ImgReSampleContext *img_resample_init(int output_width, int output_height,
2427
2329
                                      int input_width, int input_height);
2428
2330
 
 
2331
/**
 
2332
 * @deprecated Use the software scaler (swscale) instead.
 
2333
 */
2429
2334
attribute_deprecated ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
2430
2335
                                      int iwidth, int iheight,
2431
2336
                                      int topBand, int bottomBand,
2433
2338
                                      int padtop, int padbottom,
2434
2339
                                      int padleft, int padright);
2435
2340
 
2436
 
 
2437
 
attribute_deprecated void img_resample(ImgReSampleContext *s,
 
2341
/**
 
2342
 * @deprecated Use the software scaler (swscale) instead.
 
2343
 */
 
2344
attribute_deprecated void img_resample(struct ImgReSampleContext *s,
2438
2345
                  AVPicture *output, const AVPicture *input);
2439
2346
 
2440
 
attribute_deprecated void img_resample_close(ImgReSampleContext *s);
 
2347
/**
 
2348
 * @deprecated Use the software scaler (swscale) instead.
 
2349
 */
 
2350
attribute_deprecated void img_resample_close(struct ImgReSampleContext *s);
2441
2351
 
2442
2352
#endif
2443
2353
 
2444
2354
/**
2445
2355
 * Allocate memory for a picture.  Call avpicture_free to free it.
2446
2356
 *
2447
 
 * @param picture the picture to be filled in.
2448
 
 * @param pix_fmt the format of the picture.
2449
 
 * @param width the width of the picture.
2450
 
 * @param height the height of the picture.
2451
 
 * @return Zero if successful, a negative value if not.
 
2357
 * @param picture the picture to be filled in
 
2358
 * @param pix_fmt the format of the picture
 
2359
 * @param width the width of the picture
 
2360
 * @param height the height of the picture
 
2361
 * @return zero if successful, a negative value if not
2452
2362
 */
2453
2363
int avpicture_alloc(AVPicture *picture, int pix_fmt, int width, int height);
2454
2364
 
2455
2365
/**
2456
2366
 * Free a picture previously allocated by avpicture_alloc().
2457
2367
 *
2458
 
 * @param picture The AVPicture to be freed.
 
2368
 * @param picture the AVPicture to be freed
2459
2369
 */
2460
2370
void avpicture_free(AVPicture *picture);
2461
2371
 
2462
2372
/**
2463
 
 * Fill in AVPicture's fields.
 
2373
 * Fill in the AVPicture fields.
2464
2374
 * The fields of the given AVPicture are filled in by using the 'ptr' address
2465
2375
 * which points to the image data buffer. Depending on the specified picture
2466
2376
 * format, one or multiple image data pointers and line sizes will be set.
2468
2378
 * the different picture planes and the line sizes of the different planes
2469
2379
 * will be stored in the lines_sizes array.
2470
2380
 *
2471
 
 * @param picture AVPicture who's fields are to be filled in
 
2381
 * @param picture AVPicture whose fields are to be filled in
2472
2382
 * @param ptr Buffer which will contain or contains the actual image data
2473
 
 * @param pix_fmt The format in which the picture data is stored
2474
 
 * @param width The width of the image in pixels
2475
 
 * @param height The height of the image in pixels
2476
 
 * @return Size of the image data in bytes.
 
2383
 * @param pix_fmt The format in which the picture data is stored.
 
2384
 * @param width the width of the image in pixels
 
2385
 * @param height the height of the image in pixels
 
2386
 * @return size of the image data in bytes
2477
2387
 */
2478
2388
int avpicture_fill(AVPicture *picture, uint8_t *ptr,
2479
2389
                   int pix_fmt, int width, int height);
2484
2394
 * Calculate the size in bytes that a picture of the given width and height
2485
2395
 * would occupy if stored in the given picture format.
2486
2396
 *
2487
 
 * @param pix_fmt The given picture format
2488
 
 * @param width The width of the image
2489
 
 * @param height The height of the image
 
2397
 * @param pix_fmt the given picture format
 
2398
 * @param width the width of the image
 
2399
 * @param height the height of the image
2490
2400
 * @return Image data size in bytes
2491
2401
 */
2492
2402
int avpicture_get_size(int pix_fmt, int width, int height);
2512
2422
 * other formats. These losses can involve loss of chroma, but also loss of
2513
2423
 * resolution, loss of color depth, loss due to the color space conversion, loss
2514
2424
 * of the alpha bits or loss due to color quantization.
2515
 
 * avcodec_get_fix_fmt_loss() informs you on the various types of losses which
2516
 
 * will occur when converting from one pixel format to another.
 
2425
 * avcodec_get_fix_fmt_loss() informs you about the various types of losses
 
2426
 * which will occur when converting from one pixel format to another.
2517
2427
 *
2518
 
 * @param[in] dst_pix_fmt Destination pixel format.
2519
 
 * @param[in] src_pix_fmt Source pixel format.
 
2428
 * @param[in] dst_pix_fmt destination pixel format
 
2429
 * @param[in] src_pix_fmt source pixel format
2520
2430
 * @param[in] has_alpha Whether the source pixel format alpha channel is used.
2521
2431
 * @return Combination of flags informing you what kind of losses will occur.
2522
2432
 */
2529
2439
 * may occur.  For example, when converting from RGB24 to GRAY, the color
2530
2440
 * information will be lost. Similarly, other losses occur when converting from
2531
2441
 * some formats to other formats. avcodec_find_best_pix_fmt() searches which of
2532
 
 * the given pixel formats should be used to undergo the least amount of losses.
2533
 
 * The pixel formats from which it choses one, are determined by the
 
2442
 * the given pixel formats should be used to suffer the least amount of loss.
 
2443
 * The pixel formats from which it chooses one, are determined by the
2534
2444
 * \p pix_fmt_mask parameter.
2535
2445
 *
2536
2446
 * @code
2539
2449
 * dst_pix_fmt = avcodec_find_best_pix_fmt(pix_fmt_mask, src_pix_fmt, alpha, &loss);
2540
2450
 * @endcode
2541
2451
 *
2542
 
 * @param[in] pix_fmt_mask Bitmask determining which pixel format to choose from.
2543
 
 * @param[in] src_pix_fmt Source pixel format.
 
2452
 * @param[in] pix_fmt_mask bitmask determining which pixel format to choose from
 
2453
 * @param[in] src_pix_fmt source pixel format
2544
2454
 * @param[in] has_alpha Whether the source pixel format alpha channel is used.
2545
2455
 * @param[out] loss_ptr Combination of flags informing you what kind of losses will occur.
2546
2456
 * @return The best pixel format to convert to or -1 if none was found.
2548
2458
int avcodec_find_best_pix_fmt(int pix_fmt_mask, int src_pix_fmt,
2549
2459
                              int has_alpha, int *loss_ptr);
2550
2460
 
 
2461
 
 
2462
/**
 
2463
 * Print in buf the string corresponding to the pixel format with
 
2464
 * number pix_fmt, or an header if pix_fmt is negative.
 
2465
 *
 
2466
 * @param[in] buf the buffer where to write the string
 
2467
 * @param[in] buf_size the size of buf
 
2468
 * @param[in] pix_fmt the number of the pixel format to print the corresponding info string, or
 
2469
 * a negative value to print the corresponding header.
 
2470
 * Meaningful values for obtaining a pixel format info vary from 0 to PIX_FMT_NB -1.
 
2471
 */
 
2472
void avcodec_pix_fmt_string (char *buf, int buf_size, int pix_fmt);
 
2473
 
2551
2474
#define FF_ALPHA_TRANSP       0x0001 /* image has some totally transparent pixels */
2552
2475
#define FF_ALPHA_SEMI_TRANSP  0x0002 /* image has some transparent pixels */
2553
2476
 
2559
2482
                       int pix_fmt, int width, int height);
2560
2483
 
2561
2484
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
2562
 
/* convert among pixel formats */
 
2485
/**
 
2486
 * convert among pixel formats
 
2487
 * @deprecated Use the software scaler (swscale) instead.
 
2488
 */
2563
2489
attribute_deprecated int img_convert(AVPicture *dst, int dst_pix_fmt,
2564
2490
                const AVPicture *src, int pix_fmt,
2565
2491
                int width, int height);
2572
2498
 
2573
2499
/* external high level API */
2574
2500
 
 
2501
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
2575
2502
extern AVCodec *first_avcodec;
 
2503
#endif
 
2504
AVCodec *av_codec_next(AVCodec *c);
2576
2505
 
2577
2506
/* returns LIBAVCODEC_VERSION_INT constant */
2578
2507
unsigned avcodec_version(void);
2590
2519
void register_avcodec(AVCodec *format);
2591
2520
 
2592
2521
/**
2593
 
 * Finds an encoder with a matching codec ID.
 
2522
 * Finds a registered encoder with a matching codec ID.
2594
2523
 *
2595
 
 * @param id CodecID of the requested encoder.
 
2524
 * @param id CodecID of the requested encoder
2596
2525
 * @return An encoder if one was found, NULL otherwise.
2597
2526
 */
2598
2527
AVCodec *avcodec_find_encoder(enum CodecID id);
2599
2528
 
2600
2529
/**
2601
 
 * Finds an encoder with the specified name.
 
2530
 * Finds a registered encoder with the specified name.
2602
2531
 *
2603
 
 * @param name Name of the requested encoder.
 
2532
 * @param name name of the requested encoder
2604
2533
 * @return An encoder if one was found, NULL otherwise.
2605
2534
 */
2606
2535
AVCodec *avcodec_find_encoder_by_name(const char *name);
2607
2536
 
2608
2537
/**
2609
 
 * Finds a decoder with a matching codec ID.
 
2538
 * Finds a registered decoder with a matching codec ID.
2610
2539
 *
2611
 
 * @param id CodecID of the requested decoder.
 
2540
 * @param id CodecID of the requested decoder
2612
2541
 * @return A decoder if one was found, NULL otherwise.
2613
2542
 */
2614
2543
AVCodec *avcodec_find_decoder(enum CodecID id);
2615
2544
 
2616
2545
/**
2617
 
 * Finds an decoder with the specified name.
 
2546
 * Finds a registered decoder with the specified name.
2618
2547
 *
2619
 
 * @param name Name of the requested decoder.
 
2548
 * @param name name of the requested decoder
2620
2549
 * @return A decoder if one was found, NULL otherwise.
2621
2550
 */
2622
2551
AVCodec *avcodec_find_decoder_by_name(const char *name);
2629
2558
 */
2630
2559
void avcodec_get_context_defaults(AVCodecContext *s);
2631
2560
 
 
2561
/** THIS FUNCTION IS NOT YET PART OF THE PUBLIC API!
 
2562
 *  we WILL change its arguments and name a few times! */
 
2563
void avcodec_get_context_defaults2(AVCodecContext *s, enum CodecType);
 
2564
 
2632
2565
/**
2633
2566
 * Allocates an AVCodecContext and sets its fields to default values.  The
2634
2567
 * resulting struct can be deallocated by simply calling av_free().
2638
2571
 */
2639
2572
AVCodecContext *avcodec_alloc_context(void);
2640
2573
 
 
2574
/** THIS FUNCTION IS NOT YET PART OF THE PUBLIC API!
 
2575
 *  we WILL change its arguments and name a few times! */
 
2576
AVCodecContext *avcodec_alloc_context2(enum CodecType);
 
2577
 
2641
2578
/**
2642
2579
 * Sets the fields of the given AVFrame to default values.
2643
2580
 *
2684
2621
 * avcodec_find_decoder() and avcodec_find_encoder() provide an easy way for
2685
2622
 * retrieving a codec.
2686
2623
 *
2687
 
 * @warning This function is not thread save!
 
2624
 * @warning This function is not thread safe!
2688
2625
 *
2689
2626
 * @code
 
2627
 * avcodec_register_all();
2690
2628
 * codec = avcodec_find_decoder(CODEC_ID_H264);
2691
2629
 * if (!codec)
2692
2630
 *     exit(1);
2697
2635
 *     exit(1);
2698
2636
 * @endcode
2699
2637
 *
2700
 
 * @param avctx The context which will be setup to use the given codec.
 
2638
 * @param avctx The context which will be set up to use the given codec.
2701
2639
 * @param codec The codec to use within the context.
2702
 
 * @return Zero on success, a negative value on error.
 
2640
 * @return zero on success, a negative value on error
2703
2641
 * @see avcodec_alloc_context, avcodec_find_decoder, avcodec_find_encoder
2704
2642
 */
2705
2643
int avcodec_open(AVCodecContext *avctx, AVCodec *codec);
2709
2647
 */
2710
2648
attribute_deprecated int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples,
2711
2649
                         int *frame_size_ptr,
2712
 
                         uint8_t *buf, int buf_size);
 
2650
                         const uint8_t *buf, int buf_size);
2713
2651
 
2714
2652
/**
2715
2653
 * Decodes an audio frame from \p buf into \p samples.
2716
 
 * The avcodec_decode_audio2() function decodes a frame of audio from the input
 
2654
 * The avcodec_decode_audio2() function decodes an audio frame from the input
2717
2655
 * buffer \p buf of size \p buf_size. To decode it, it makes use of the
2718
 
 * audiocodec which was coupled with \p avctx using avcodec_open(). The
 
2656
 * audio codec which was coupled with \p avctx using avcodec_open(). The
2719
2657
 * resulting decoded frame is stored in output buffer \p samples.  If no frame
2720
2658
 * could be decompressed, \p frame_size_ptr is zero. Otherwise, it is the
2721
2659
 * decompressed frame size in \e bytes.
2731
2669
 * no overreading happens for damaged MPEG streams.
2732
2670
 *
2733
2671
 * @note You might have to align the input buffer \p buf and output buffer \p
2734
 
 * samples. The alignment requirements depend on the CPU: on some CPUs it isn't
 
2672
 * samples. The alignment requirements depend on the CPU: On some CPUs it isn't
2735
2673
 * necessary at all, on others it won't work at all if not aligned and on others
2736
2674
 * it will work but it will have an impact on performance. In practice, the
2737
2675
 * bitstream should have 4 byte alignment at minimum and all sample data should
2739
2677
 * the linesize is not a multiple of 16 then there's no sense in aligning the
2740
2678
 * start of the buffer to 16.
2741
2679
 *
2742
 
 * @param avctx The codec context.
2743
 
 * @param[out] samples The output buffer.
2744
 
 * @param[in,out] frame_size_ptr The output buffer size in bytes.
2745
 
 * @param[in] buf The input buffer.
2746
 
 * @param[in] buf_size The input buffer size in bytes.
 
2680
 * @param avctx the codec context
 
2681
 * @param[out] samples the output buffer
 
2682
 * @param[in,out] frame_size_ptr the output buffer size in bytes
 
2683
 * @param[in] buf the input buffer
 
2684
 * @param[in] buf_size the input buffer size in bytes
2747
2685
 * @return On error a negative value is returned, otherwise the number of bytes
2748
2686
 * used or zero if no frame could be decompressed.
2749
2687
 */
2750
2688
int avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples,
2751
2689
                         int *frame_size_ptr,
2752
 
                         uint8_t *buf, int buf_size);
 
2690
                         const uint8_t *buf, int buf_size);
2753
2691
 
2754
2692
/**
2755
2693
 * Decodes a video frame from \p buf into \p picture.
2756
 
 * The avcodec_decode_video() function decodes a frame of video from the input
 
2694
 * The avcodec_decode_video() function decodes a video frame from the input
2757
2695
 * buffer \p buf of size \p buf_size. To decode it, it makes use of the
2758
 
 * videocodec which was coupled with \p avctx using avcodec_open(). The
 
2696
 * video codec which was coupled with \p avctx using avcodec_open(). The
2759
2697
 * resulting decoded frame is stored in \p picture.
2760
2698
 *
2761
2699
 * @warning The input buffer must be \c FF_INPUT_BUFFER_PADDING_SIZE larger than
2774
2712
 * the linesize is not a multiple of 16 then there's no sense in aligning the
2775
2713
 * start of the buffer to 16.
2776
2714
 *
2777
 
 * @param avctx The codec context.
 
2715
 * @param avctx the codec context
2778
2716
 * @param[out] picture The AVFrame in which the decoded video frame will be stored.
2779
 
 * @param[in] buf The input buffer.
2780
 
 * @param[in] buf_size The size of the input buffer in bytes.
2781
 
 * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is non zero.
 
2717
 * @param[in] buf the input buffer
 
2718
 * @param[in] buf_size the size of the input buffer in bytes
 
2719
 * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.
2782
2720
 * @return On error a negative value is returned, otherwise the number of bytes
2783
2721
 * used or zero if no frame could be decompressed.
2784
2722
 */
2785
2723
int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
2786
2724
                         int *got_picture_ptr,
2787
 
                         uint8_t *buf, int buf_size);
 
2725
                         const uint8_t *buf, int buf_size);
2788
2726
 
2789
 
/* decode a subtitle message. return -1 if error, otherwise return the
2790
 
   *number of bytes used. If no subtitle could be decompressed,
2791
 
   *got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */
 
2727
/* Decode a subtitle message. Return -1 if error, otherwise return the
 
2728
 * number of bytes used. If no subtitle could be decompressed,
 
2729
 * got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */
2792
2730
int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub,
2793
2731
                            int *got_sub_ptr,
2794
2732
                            const uint8_t *buf, int buf_size);
2798
2736
 
2799
2737
/**
2800
2738
 * Encodes an audio frame from \p samples into \p buf.
2801
 
 * The avcodec_encode_audio() function encodes a frame of audio from the input
2802
 
 * buffer \p samples. To encode it, it makes use of the audiocodec which was
 
2739
 * The avcodec_encode_audio() function encodes an audio frame from the input
 
2740
 * buffer \p samples. To encode it, it makes use of the audio codec which was
2803
2741
 * coupled with \p avctx using avcodec_open(). The resulting encoded frame is
2804
2742
 * stored in output buffer \p buf.
2805
2743
 *
2806
2744
 * @note The output buffer should be at least \c FF_MIN_BUFFER_SIZE bytes large.
2807
2745
 *
2808
 
 * @param avctx The codec context.
2809
 
 * @param[out] buf The output buffer.
2810
 
 * @param[in] buf_size The output buffer size.
2811
 
 * @param[in] samples The input buffer containing the samples.
2812
 
 * @return On error a negative value is returned, on succes zero or the number
2813
 
 * of bytes used from the input buffer.
 
2746
 * @param avctx the codec context
 
2747
 * @param[out] buf the output buffer
 
2748
 * @param[in] buf_size the output buffer size
 
2749
 * @param[in] samples the input buffer containing the samples
 
2750
 * The number of samples read from this buffer is frame_size*channels,
 
2751
 * both of which are defined in \p avctx.
 
2752
 * @return On error a negative value is returned, on success zero or the number
 
2753
 * of bytes used to encode the data read from the input buffer.
2814
2754
 */
2815
2755
int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
2816
2756
                         const short *samples);
2817
2757
 
2818
2758
/**
2819
2759
 * Encodes a video frame from \p pict into \p buf.
2820
 
 * The avcodec_encode_video() function encodes a frame of video from the input
2821
 
 * \p pict. To encode it, it makes use of the videocodec which was coupled with
 
2760
 * The avcodec_encode_video() function encodes a video frame from the input
 
2761
 * \p pict. To encode it, it makes use of the video codec which was coupled with
2822
2762
 * \p avctx using avcodec_open(). The resulting encoded bytes representing the
2823
2763
 * frame are stored in the output buffer \p buf. The input picture should be
2824
2764
 * stored using a specific format, namely \c avctx.pix_fmt.
2825
2765
 *
2826
 
 * @param avctx The codec context.
2827
 
 * @param[out] buf The output buffer for the bitstream of encoded frame.
2828
 
 * @param[in] buf_size The size of the outputbuffer in bytes.
2829
 
 * @param[in] pict The input picture to encode.
 
2766
 * @param avctx the codec context
 
2767
 * @param[out] buf the output buffer for the bitstream of encoded frame
 
2768
 * @param[in] buf_size the size of the output buffer in bytes
 
2769
 * @param[in] pict the input picture to encode
2830
2770
 * @return On error a negative value is returned, on success zero or the number
2831
2771
 * of bytes used from the input buffer.
2832
2772
 */
2851
2791
/**
2852
2792
 * Returns a single letter to describe the given picture type \p pict_type.
2853
2793
 *
2854
 
 * @param[in] pict_type The picture type.
 
2794
 * @param[in] pict_type the picture type
2855
2795
 * @return A single character representing the picture type.
2856
2796
 */
2857
2797
char av_get_pict_type_char(int pict_type);
2859
2799
/**
2860
2800
 * Returns codec bits per sample.
2861
2801
 *
2862
 
 * @param[in] codec_id The codec.
 
2802
 * @param[in] codec_id the codec
2863
2803
 * @return Number of bits per sample or zero if unknown for the given codec.
2864
2804
 */
2865
2805
int av_get_bits_per_sample(enum CodecID codec_id);
2866
2806
 
 
2807
/**
 
2808
 * Returns sample format bits per sample.
 
2809
 *
 
2810
 * @param[in] sample_fmt the sample format
 
2811
 * @return Number of bits per sample or zero if unknown for the given sample format.
 
2812
 */
 
2813
int av_get_bits_per_sample_format(enum SampleFormat sample_fmt);
 
2814
 
2867
2815
/* frame parsing */
2868
2816
typedef struct AVCodecParserContext {
2869
2817
    void *priv_data;
2873
2821
                           (incremented by each av_parser_parse()) */
2874
2822
    int64_t last_frame_offset; /* offset of the last frame */
2875
2823
    /* video info */
2876
 
    int pict_type; /* XXX: put it back in AVCodecContext */
2877
 
    int repeat_pict; /* XXX: put it back in AVCodecContext */
 
2824
    int pict_type; /* XXX: Put it back in AVCodecContext. */
 
2825
    int repeat_pict; /* XXX: Put it back in AVCodecContext. */
2878
2826
    int64_t pts;     /* pts of the current frame */
2879
2827
    int64_t dts;     /* dts of the current frame */
2880
2828
 
2891
2839
 
2892
2840
    int flags;
2893
2841
#define PARSER_FLAG_COMPLETE_FRAMES           0x0001
 
2842
 
 
2843
    int64_t offset;      ///< byte offset from starting packet start
 
2844
    int64_t last_offset;
2894
2845
} AVCodecParserContext;
2895
2846
 
2896
2847
typedef struct AVCodecParser {
2899
2850
    int (*parser_init)(AVCodecParserContext *s);
2900
2851
    int (*parser_parse)(AVCodecParserContext *s,
2901
2852
                        AVCodecContext *avctx,
2902
 
                        uint8_t **poutbuf, int *poutbuf_size,
 
2853
                        const uint8_t **poutbuf, int *poutbuf_size,
2903
2854
                        const uint8_t *buf, int buf_size);
2904
2855
    void (*parser_close)(AVCodecParserContext *s);
2905
2856
    int (*split)(AVCodecContext *avctx, const uint8_t *buf, int buf_size);
2906
2857
    struct AVCodecParser *next;
2907
2858
} AVCodecParser;
2908
2859
 
 
2860
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
2909
2861
extern AVCodecParser *av_first_parser;
 
2862
#endif
 
2863
AVCodecParser *av_parser_next(AVCodecParser *c);
2910
2864
 
2911
2865
void av_register_codec_parser(AVCodecParser *parser);
2912
2866
AVCodecParserContext *av_parser_init(int codec_id);
2921
2875
                     const uint8_t *buf, int buf_size, int keyframe);
2922
2876
void av_parser_close(AVCodecParserContext *s);
2923
2877
 
2924
 
extern AVCodecParser aac_parser;
2925
 
extern AVCodecParser ac3_parser;
2926
 
extern AVCodecParser cavsvideo_parser;
2927
 
extern AVCodecParser dca_parser;
2928
 
extern AVCodecParser dvbsub_parser;
2929
 
extern AVCodecParser dvdsub_parser;
2930
 
extern AVCodecParser h261_parser;
2931
 
extern AVCodecParser h263_parser;
2932
 
extern AVCodecParser h264_parser;
2933
 
extern AVCodecParser mjpeg_parser;
2934
 
extern AVCodecParser mpeg4video_parser;
2935
 
extern AVCodecParser mpegaudio_parser;
2936
 
extern AVCodecParser mpegvideo_parser;
2937
 
extern AVCodecParser pnm_parser;
2938
 
extern AVCodecParser vc1_parser;
2939
 
 
2940
2878
 
2941
2879
typedef struct AVBitStreamFilterContext {
2942
2880
    void *priv_data;
2953
2891
                  AVCodecContext *avctx, const char *args,
2954
2892
                  uint8_t **poutbuf, int *poutbuf_size,
2955
2893
                  const uint8_t *buf, int buf_size, int keyframe);
 
2894
    void (*close)(AVBitStreamFilterContext *bsfc);
2956
2895
    struct AVBitStreamFilter *next;
2957
2896
} AVBitStreamFilter;
2958
2897
 
2959
 
extern AVBitStreamFilter *av_first_bitstream_filter;
2960
 
 
2961
2898
void av_register_bitstream_filter(AVBitStreamFilter *bsf);
2962
2899
AVBitStreamFilterContext *av_bitstream_filter_init(const char *name);
2963
2900
int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
2966
2903
                               const uint8_t *buf, int buf_size, int keyframe);
2967
2904
void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
2968
2905
 
2969
 
extern AVBitStreamFilter dump_extradata_bsf;
2970
 
extern AVBitStreamFilter remove_extradata_bsf;
2971
 
extern AVBitStreamFilter noise_bsf;
2972
 
extern AVBitStreamFilter mp3_header_compress_bsf;
2973
 
extern AVBitStreamFilter mp3_header_decompress_bsf;
2974
 
extern AVBitStreamFilter mjpega_dump_header_bsf;
2975
 
 
 
2906
AVBitStreamFilter *av_bitstream_filter_next(AVBitStreamFilter *f);
2976
2907
 
2977
2908
/* memory */
2978
2909
 
2987
2918
/* for static data only */
2988
2919
 
2989
2920
/**
2990
 
 * Frees all static arrays and reset their pointers to 0.
 
2921
 * Frees all static arrays and resets their pointers to 0.
2991
2922
 * Call this function to release all statically allocated tables.
 
2923
 *
 
2924
 * @deprecated. Code which uses av_free_static is broken/misdesigned
 
2925
 * and should correctly use static arrays
 
2926
 *
2992
2927
 */
2993
 
void av_free_static(void);
 
2928
attribute_deprecated void av_free_static(void);
2994
2929
 
2995
2930
/**
2996
2931
 * Allocation of static arrays.
2998
2933
 * @warning Do not use for normal allocation.
2999
2934
 *
3000
2935
 * @param[in] size The amount of memory you need in bytes.
3001
 
 * @return Block of memory of the requested size.
 
2936
 * @return block of memory of the requested size
 
2937
 * @deprecated. Code which uses av_mallocz_static is broken/misdesigned
 
2938
 * and should correctly use static arrays
3002
2939
 */
 
2940
attribute_deprecated av_malloc_attrib av_alloc_size(1)
3003
2941
void *av_mallocz_static(unsigned int size);
3004
2942
 
3005
2943
/**
3006
2944
 * Copy image 'src' to 'dst'.
3007
2945
 */
3008
 
void img_copy(AVPicture *dst, const AVPicture *src,
3009
 
              int pix_fmt, int width, int height);
3010
 
 
3011
 
/**
3012
 
 * Crop image top and left side
3013
 
 */
3014
 
int img_crop(AVPicture *dst, const AVPicture *src,
3015
 
             int pix_fmt, int top_band, int left_band);
3016
 
 
3017
 
/**
3018
 
 * Pad image
3019
 
 */
3020
 
int img_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt,
3021
 
            int padtop, int padbottom, int padleft, int padright, int *color);
 
2946
void av_picture_copy(AVPicture *dst, const AVPicture *src,
 
2947
              int pix_fmt, int width, int height);
 
2948
 
 
2949
/**
 
2950
 * Crop image top and left side.
 
2951
 */
 
2952
int av_picture_crop(AVPicture *dst, const AVPicture *src,
 
2953
             int pix_fmt, int top_band, int left_band);
 
2954
 
 
2955
/**
 
2956
 * Pad image.
 
2957
 */
 
2958
int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt,
 
2959
            int padtop, int padbottom, int padleft, int padright, int *color);
 
2960
 
 
2961
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
 
2962
/**
 
2963
 * @deprecated Use the software scaler (swscale) instead.
 
2964
 */
 
2965
attribute_deprecated void img_copy(AVPicture *dst, const AVPicture *src,
 
2966
              int pix_fmt, int width, int height);
 
2967
 
 
2968
/**
 
2969
 * @deprecated Use the software scaler (swscale) instead.
 
2970
 */
 
2971
attribute_deprecated int img_crop(AVPicture *dst, const AVPicture *src,
 
2972
             int pix_fmt, int top_band, int left_band);
 
2973
 
 
2974
/**
 
2975
 * @deprecated Use the software scaler (swscale) instead.
 
2976
 */
 
2977
attribute_deprecated int img_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt,
 
2978
            int padtop, int padbottom, int padleft, int padright, int *color);
 
2979
#endif
3022
2980
 
3023
2981
extern unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
3024
2982
 
 
2983
/**
 
2984
 * Parses \p str and put in \p width_ptr and \p height_ptr the detected values.
 
2985
 *
 
2986
 * @return 0 in case of a successful parsing, a negative value otherwise
 
2987
 * @param[in] str the string to parse: it has to be a string in the format
 
2988
 * <width>x<height> or a valid video frame size abbreviation.
 
2989
 * @param[in,out] width_ptr pointer to the variable which will contain the detected
 
2990
 * frame width value
 
2991
 * @param[in,out] height_ptr pointer to the variable which will contain the detected
 
2992
 * frame height value
 
2993
 */
 
2994
int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str);
 
2995
 
 
2996
/**
 
2997
 * Parses \p str and put in \p frame_rate the detected values.
 
2998
 *
 
2999
 * @return 0 in case of a successful parsing, a negative value otherwise
 
3000
 * @param[in] str the string to parse: it has to be a string in the format
 
3001
 * <frame_rate_nom>/<frame_rate_den>, a float number or a valid video rate abbreviation
 
3002
 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected
 
3003
 * frame rate
 
3004
 */
 
3005
int av_parse_video_frame_rate(AVRational *frame_rate, const char *str);
 
3006
 
3025
3007
/* error handling */
3026
3008
#if EINVAL > 0
3027
 
#define AVERROR(e) (-(e)) /**< returns a negative error code from a POSIX error code, to return from library functions. */
3028
 
#define AVUNERROR(e) (-(e)) /**< returns a POSIX error code from a library function error return value. */
 
3009
#define AVERROR(e) (-(e)) /**< Returns a negative error code from a POSIX error code, to return from library functions. */
 
3010
#define AVUNERROR(e) (-(e)) /**< Returns a POSIX error code from a library function error return value. */
3029
3011
#else
3030
 
/* some platforms have E* and errno already negated. */
 
3012
/* Some platforms have E* and errno already negated. */
3031
3013
#define AVERROR(e) (e)
3032
3014
#define AVUNERROR(e) (e)
3033
3015
#endif
3034
3016
#define AVERROR_UNKNOWN     AVERROR(EINVAL)  /**< unknown error */
3035
 
#define AVERROR_IO          AVERROR(EIO)     /**< i/o error */
3036
 
#define AVERROR_NUMEXPECTED AVERROR(EDOM)    /**< number syntax expected in filename */
 
3017
#define AVERROR_IO          AVERROR(EIO)     /**< I/O error */
 
3018
#define AVERROR_NUMEXPECTED AVERROR(EDOM)    /**< Number syntax expected in filename. */
3037
3019
#define AVERROR_INVALIDDATA AVERROR(EINVAL)  /**< invalid data found */
3038
3020
#define AVERROR_NOMEM       AVERROR(ENOMEM)  /**< not enough memory */
3039
3021
#define AVERROR_NOFMT       AVERROR(EILSEQ)  /**< unknown format */
3040
 
#define AVERROR_NOTSUPP     AVERROR(ENOSYS)  /**< operation not supported */
3041
 
 
3042
 
#ifdef __cplusplus
3043
 
}
3044
 
#endif
3045
 
 
3046
 
#endif /* AVCODEC_H */
 
3022
#define AVERROR_NOTSUPP     AVERROR(ENOSYS)  /**< Operation not supported. */
 
3023
#define AVERROR_NOENT       AVERROR(ENOENT)  /**< No such file or directory. */
 
3024
#define AVERROR_PATCHWELCOME    -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */
 
3025
 
 
3026
#endif /* FFMPEG_AVCODEC_H */