lavfi: change AVFilterBufferRefAudioProps.sample_rate from uint32_t to int

There's no reason for it to be explicitly 32 bits. It's declared as a
plain int in all other places in Libav.

This breaks audio filtering API and ABI in theory, but since it's
unusable right now this shouldn't be a problem.
This commit is contained in:
Anton Khirnov 2012-05-06 10:40:11 +02:00
parent 7ef0adcc2e
commit a6bdfc2a92
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ typedef struct AVFilterBuffer {
typedef struct AVFilterBufferRefAudioProps { typedef struct AVFilterBufferRefAudioProps {
uint64_t channel_layout; ///< channel layout of audio buffer uint64_t channel_layout; ///< channel layout of audio buffer
int nb_samples; ///< number of audio samples int nb_samples; ///< number of audio samples
uint32_t sample_rate; ///< audio buffer sample rate int sample_rate; ///< audio buffer sample rate
int planar; ///< audio buffer - planar or packed int planar; ///< audio buffer - planar or packed
} AVFilterBufferRefAudioProps; } AVFilterBufferRefAudioProps;