diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-03-02 23:35:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-03-02 23:35:26 +0000 |
commit | 66a4b2c1798d75582c6ef5c96e92ed925b386511 (patch) | |
tree | d564967158dd37828f6df137c5538cfc6442c2af /libavcodec/avcodec.h | |
parent | 700b971156f17b4eb03fc7da89d3d94a46b03169 (diff) | |
download | ffmpeg-66a4b2c1798d75582c6ef5c96e92ed925b386511.tar.gz |
support feeding individual NAL units to the decoder instead of just complete frames
Originally committed as revision 8197 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2b0061c267..21c3f57251 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -37,8 +37,8 @@ extern "C" { #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s -#define LIBAVCODEC_VERSION_INT ((51<<16)+(35<<8)+0) -#define LIBAVCODEC_VERSION 51.35.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(36<<8)+0) +#define LIBAVCODEC_VERSION 51.36.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -384,6 +384,7 @@ typedef struct RcOverride{ #define CODEC_FLAG2_MEMC_ONLY 0x00001000 ///< only do ME/MC (I frames -> ref, P frame -> ME+MC) #define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 ///< timecode is in drop frame format #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skiping +#define CODEC_FLAG2_CHUNKS 0x00008000 ///< input bitstream might be truncated at a packet boundaries instead of only at frame boundaries /* Unsupported options : * Syntax Arithmetic coding (SAC) |