diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-04 02:59:11 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-04 02:59:11 +0000 |
commit | 92d6b7fda2ed4017212b1603aeabfd7b37286d56 (patch) | |
tree | f588d3f0ec3cbeb8c16cada2ca7dc1affe263bdb /libavcodec/avcodec.h | |
parent | 895c2c005e1ac27a0685060205372e854dc1e622 (diff) | |
download | ffmpeg-92d6b7fda2ed4017212b1603aeabfd7b37286d56.tar.gz |
imx dump header bitstream filter, modifies bitstream to fit in mov and be decoded by final cut pro decoder
Originally committed as revision 8218 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 836307ae71..78897ce1dd 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)+(37<<8)+0) -#define LIBAVCODEC_VERSION 51.37.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(38<<8)+0) +#define LIBAVCODEC_VERSION 51.38.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -2974,6 +2974,7 @@ extern AVBitStreamFilter noise_bsf; extern AVBitStreamFilter mp3_header_compress_bsf; extern AVBitStreamFilter mp3_header_decompress_bsf; extern AVBitStreamFilter mjpega_dump_header_bsf; +extern AVBitStreamFilter imx_dump_header_bsf; /* memory */ |