diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 17:31:34 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 17:31:34 +0000 |
commit | a242ac3620e8610d7efa3852018c79c09546bec4 (patch) | |
tree | 1c2294ed0b86405faaff18bb926228a31fb7904e /libavfilter/avfilter.h | |
parent | 6baf4afa9969eea23cd4ec9b0cec3b7aed1f49af (diff) | |
download | ffmpeg-a242ac3620e8610d7efa3852018c79c09546bec4.tar.gz |
Rename AVFilterBufferRefAudioProps.samples_nb to nb_samples.
More consistent with the rest of FFmpeg and sounds more natural to
English speaking people.
Originally committed as revision 26374 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 5b08941693..22b8b1ca5b 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -27,8 +27,8 @@ #include "libavcore/samplefmt.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 73 -#define LIBAVFILTER_VERSION_MICRO 2 +#define LIBAVFILTER_VERSION_MINOR 74 +#define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ @@ -99,7 +99,7 @@ typedef struct AVFilterBuffer { */ typedef struct AVFilterBufferRefAudioProps { int64_t channel_layout; ///< channel layout of audio buffer - int samples_nb; ///< number of audio samples + int nb_samples; ///< number of audio samples int size; ///< audio buffer size uint32_t sample_rate; ///< audio buffer sample rate int planar; ///< audio buffer - planar or packed |