diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-09-11 22:11:46 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-09-11 22:19:25 +0200 |
commit | bf0f996c1283731e56a7986a08002baa8ae5064c (patch) | |
tree | 7efc55a610ce75cc613cf62c5e245d7b22085445 /libavfilter/f_segment.c | |
parent | 0a8a0c96ae2af5886200b06a12d919547ce35954 (diff) | |
download | ffmpeg-bf0f996c1283731e56a7986a08002baa8ae5064c.tar.gz |
avfilter/f_segment: silence compiler warning
Diffstat (limited to 'libavfilter/f_segment.c')
-rw-r--r-- | libavfilter/f_segment.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/f_segment.c b/libavfilter/f_segment.c index e9b574d5bc..70c8393972 100644 --- a/libavfilter/f_segment.c +++ b/libavfilter/f_segment.c @@ -207,6 +207,8 @@ static int activate(AVFilterContext *ctx) } ret = ff_inlink_consume_samples(inlink, 1, max_samples, &frame); break; + default: + return AVERROR_BUG; } if (ret > 0) { |