Skip to content
Snippets Groups Projects
Commit 7112b56a authored by Andreas Cadhalpun's avatar Andreas Cadhalpun
Browse files

vp9_mc_template: limit assert to SCALED == 0


The handling of the other block sizes was limited to 'SCALED == 0' in
commit dc96c0f9, so this assert should
be disabled, too, as it can now be triggered.

Reviewed-by: default avatarRonald S. Bultje <rsbultje@gmail.com>
Signed-off-by: default avatarAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
parent 0539ff0e
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,9 @@ static void FN(inter_pred)(AVCodecContext *ctx)
} else
#endif
{
#if SCALED == 0
av_assert2(b->bs == BS_4x4);
#endif
// FIXME if two horizontally adjacent blocks have the same MV,
// do a w8 instead of a w4 call
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment