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 1b991e77b9)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7f05002e05
commit
3a0320e95a
1 changed files with 1 additions and 2 deletions
|
|
@ -2007,8 +2007,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…
Add table
Add a link
Reference in a new issue