diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-03 19:33:58 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-24 23:21:28 +0100 |
commit | b59cd089ffd6fc976dca28649ad6c5d9f03b4569 (patch) | |
tree | 250699964f4c879b09a9bf3c653364467f252d4a /libavfilter/buffersink.h | |
parent | 5085b46496f0df5f4f7259d03f21d3f814aa28e2 (diff) | |
download | ffmpeg-b59cd089ffd6fc976dca28649ad6c5d9f03b4569.tar.gz |
lavfi/abuffersink: add sample_rates field to AVABufferSinkParams
Allow to select sample rates.
Diffstat (limited to 'libavfilter/buffersink.h')
-rw-r--r-- | libavfilter/buffersink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/buffersink.h b/libavfilter/buffersink.h index 825a36a0a4..6f8ac5cdf1 100644 --- a/libavfilter/buffersink.h +++ b/libavfilter/buffersink.h @@ -48,6 +48,7 @@ typedef struct { const int64_t *channel_layouts; ///< list of allowed channel layouts, terminated by -1 const int *channel_counts; ///< list of allowed channel counts, terminated by -1 int all_channel_counts; ///< if not 0, accept any channel count or layout + int *sample_rates; ///< list of allowed sample rates, terminated by -1 } AVABufferSinkParams; /** |