diff mbox series

[FFmpeg-devel,2/2] avfilter/vf_tpad: Mark unreachable code by av_assert()

Message ID 20220524000615.5264-2-michael@niedermayer.cc
State New
Headers show
Series [FFmpeg-devel,1/2] avcodec/vc1_loopfilter: Factor duplicate code in vc1_b_h_intfi_loop_filter() | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_armv7_RPi4 success Make finished
andriy/make_fate_armv7_RPi4 success Make fate finished

Commit Message

Michael Niedermayer May 24, 2022, 12:06 a.m. UTC
Helps: CID1440835

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavfilter/vf_tpad.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavfilter/vf_tpad.c b/libavfilter/vf_tpad.c
index c870478158..1a41c3f1a7 100644
--- a/libavfilter/vf_tpad.c
+++ b/libavfilter/vf_tpad.c
@@ -18,6 +18,7 @@ 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "libavutil/avassert.h"
 #include "libavutil/channel_layout.h"
 #include "libavutil/opt.h"
 #include "avfilter.h"
@@ -159,7 +160,8 @@  static int activate(AVFilterContext *ctx)
             frame = av_frame_clone(s->cache_stop);
             if (!frame)
                 return AVERROR(ENOMEM);
-        }
+        } else
+            av_assert1(0);
         frame->pts = s->pts;
         s->pts += av_rescale_q(1, av_inv_q(outlink->frame_rate), outlink->time_base);
         if (s->pad_stop > 0)