summaryrefslogtreecommitdiff
path: root/libavfilter/buffersink.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-02 21:08:38 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-03 17:01:45 +0100
commit03ab1de429a43a99c6de0c0d6ec1d275349dc133 (patch)
tree69b8a70542720dc56fc78c9686e074d4a3782317 /libavfilter/buffersink.c
parent61bbd0cf3c2ae1f8502243a5695d68cbd3b20758 (diff)
avfilter/buffersink: Remove outdated comments
These lists have size fields since e48ded8551172b58a78f30303a81dfce125344e0. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r--libavfilter/buffersink.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c
index b8ddafec35..c0215669e7 100644
--- a/libavfilter/buffersink.c
+++ b/libavfilter/buffersink.c
@@ -43,18 +43,18 @@ typedef struct BufferSinkContext {
unsigned warning_limit;
/* only used for video */
- enum AVPixelFormat *pixel_fmts; ///< list of accepted pixel formats, must be terminated with -1
+ enum AVPixelFormat *pixel_fmts; ///< list of accepted pixel formats
int pixel_fmts_size;
/* only used for audio */
- enum AVSampleFormat *sample_fmts; ///< list of accepted sample formats, terminated by AV_SAMPLE_FMT_NONE
+ enum AVSampleFormat *sample_fmts; ///< list of accepted sample formats
int sample_fmts_size;
- int64_t *channel_layouts; ///< list of accepted channel layouts, terminated by -1
+ int64_t *channel_layouts; ///< list of accepted channel layouts
int channel_layouts_size;
- int *channel_counts; ///< list of accepted channel counts, terminated by -1
+ int *channel_counts; ///< list of accepted channel counts
int channel_counts_size;
int all_channel_counts;
- int *sample_rates; ///< list of accepted sample rates, terminated by -1
+ int *sample_rates; ///< list of accepted sample rates
int sample_rates_size;
AVFrame *peeked_frame;