[FFmpeg-devel] [PATCH 9/9] avcodec/vp3: Replace check by assert
Michael Niedermayer
michael at niedermayer.cc
Sat May 18 06:57:43 EEST 2024
Fixes: CID1452425 Logically dead code
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/vp3.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 09527607767..d03a1c9dbc1 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -2001,8 +2001,7 @@ static int vp4_mc_loop_filter(Vp3DecodeContext *s, int plane, int motion_x, int
x_offset = (-(x + 2) & 7) + 2;
y_offset = (-(y + 2) & 7) + 2;
- if (x_offset > 8 + x_subpel && y_offset > 8 + y_subpel)
- return 0;
+ av_assert1(!(x_offset > 8 + x_subpel && y_offset > 8 + y_subpel));
s->vdsp.emulated_edge_mc(loop, motion_source - stride - 1,
loop_stride, stride,
--
2.45.1
More information about the ffmpeg-devel
mailing list