Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
avfilter/vf_mpdecimate: Add missing emms_c()
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 997de2e)

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
michaelni committed Dec 17, 2015
1 parent 748d5fa commit e4a6a85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libavfilter/vf_mpdecimate.c
Expand Up @@ -131,10 +131,13 @@ static int decimate_frame(AVFilterContext *ctx,
cur->data[plane], cur->linesize[plane],
ref->data[plane], ref->linesize[plane],
FF_CEIL_RSHIFT(ref->width, hsub),
FF_CEIL_RSHIFT(ref->height, vsub)))
FF_CEIL_RSHIFT(ref->height, vsub))) {
emms_c();
return 0;
}
}

emms_c();
return 1;
}

Expand Down

0 comments on commit e4a6a85

Please sign in to comment.