You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vp9_mc_template: limit assert to SCALED == 0
The handling of the other block sizes was limited to 'SCALED == 0' in
commit dc96c0f9fc
, so this assert should
be disabled, too, as it can now be triggered.
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
@@ -205,7 +205,9 @@ static void FN(inter_pred)(AVCodecContext *ctx)
|
|||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
#if SCALED == 0
|
||||||
av_assert2(b->bs == BS_4x4);
|
av_assert2(b->bs == BS_4x4);
|
||||||
|
#endif
|
||||||
|
|
||||||
// FIXME if two horizontally adjacent blocks have the same MV,
|
// FIXME if two horizontally adjacent blocks have the same MV,
|
||||||
// do a w8 instead of a w4 call
|
// do a w8 instead of a w4 call
|
||||||
|
Reference in New Issue
Block a user