diff options
author | Peter Ross <pross@xvid.org> | 2008-08-19 10:36:30 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2008-08-19 10:36:30 +0000 |
commit | e06b00f3b610ae86fdd4e7e95478bb06c2a4021d (patch) | |
tree | f9a7f0e175f708490e7bc84f22ca97ca4c87f5f7 /libavcodec/avcodec.h | |
parent | 4efbd75583ab6462936303f625f389419dc688b4 (diff) | |
download | ffmpeg-e06b00f3b610ae86fdd4e7e95478bb06c2a4021d.tar.gz |
Add SAMPLE_FMT_DBL.
Originally committed as revision 14832 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index ac13087afc..0c8494223d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -30,7 +30,7 @@ #include "libavutil/avutil.h" #define LIBAVCODEC_VERSION_MAJOR 51 -#define LIBAVCODEC_VERSION_MINOR 64 +#define LIBAVCODEC_VERSION_MINOR 65 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ @@ -348,6 +348,7 @@ enum SampleFormat { SAMPLE_FMT_S24, ///< signed 24 bits @deprecated Deprecated in favor of SAMPLE_FMT_S32 SAMPLE_FMT_S32, ///< signed 32 bits SAMPLE_FMT_FLT, ///< float + SAMPLE_FMT_DBL, ///< double SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec }; |