comparison avcodec.h @ 4621:5464e5021a67 libavcodec

dummy support for mpeg2 non linear quant
author bcoudurier
date Sun, 04 Mar 2007 02:26:20 +0000
parents 8036b117ae26
children e541c0dd35dd
comparison
equal deleted inserted replaced
4620:f23c20cf7579 4621:5464e5021a67
35 #include <sys/types.h> /* size_t */ 35 #include <sys/types.h> /* size_t */
36 36
37 #define AV_STRINGIFY(s) AV_TOSTRING(s) 37 #define AV_STRINGIFY(s) AV_TOSTRING(s)
38 #define AV_TOSTRING(s) #s 38 #define AV_TOSTRING(s) #s
39 39
40 #define LIBAVCODEC_VERSION_INT ((51<<16)+(36<<8)+0) 40 #define LIBAVCODEC_VERSION_INT ((51<<16)+(37<<8)+0)
41 #define LIBAVCODEC_VERSION 51.36.0 41 #define LIBAVCODEC_VERSION 51.37.0
42 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT 42 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
43 43
44 #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) 44 #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
45 45
46 #define AV_NOPTS_VALUE INT64_C(0x8000000000000000) 46 #define AV_NOPTS_VALUE INT64_C(0x8000000000000000)
383 #define CODEC_FLAG2_INTRA_VLC 0x00000800 ///< use MPEG-2 intra VLC table 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) 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 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 386 #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skiping
387 #define CODEC_FLAG2_CHUNKS 0x00008000 ///< input bitstream might be truncated at a packet boundaries instead of only at frame boundaries 387 #define CODEC_FLAG2_CHUNKS 0x00008000 ///< input bitstream might be truncated at a packet boundaries instead of only at frame boundaries
388 #define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 ///< use MPEG-2 non linear quantizer
388 389
389 /* Unsupported options : 390 /* Unsupported options :
390 * Syntax Arithmetic coding (SAC) 391 * Syntax Arithmetic coding (SAC)
391 * Reference Picture Selection 392 * Reference Picture Selection
392 * Independent Segment Decoding */ 393 * Independent Segment Decoding */