avcodec/vp3: Replace check by assert
Fixes: CID1452425 Logically dead code Sponsored-by: Sovereign Tech Fund Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 1b991e77b9b19392214f6a788541bea5662de337) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
21fd9fb7db
commit
5bc913c235
@ -2016,8 +2016,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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user