diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-22 20:06:20 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-04-22 20:06:20 +0000 |
commit | 3ade5d56d0138e6069ea3e402c2c9ad050e347c0 (patch) | |
tree | a3a426fdc895fd143f8f8c734de571a88081aa25 | |
parent | 9fa58f19ff427878de67024a56d45d1f02037bd0 (diff) | |
download | ffmpeg-3ade5d56d0138e6069ea3e402c2c9ad050e347c0.tar.gz |
Add supported_samplerates field to AVCodec
Patch by Stefano Sabatini ( stefano sabatini-lala poste it )
Originally committed as revision 12925 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 00c35c0b63..dfdef6732f 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 55 +#define LIBAVCODEC_VERSION_MINOR 56 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ @@ -2241,6 +2241,7 @@ typedef struct AVCodec { const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 const char *long_name; ///< descriptive name for the codec, meant to be more human readable than \p name + const int *supported_samplerates; ///< array of supported audio samplerates, or NULL if unknown, array is terminated by 0 } AVCodec; /** |