Commit 6bcdfe48 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Martin Storsjö

mpeg4videodec: Disable frame multithreading for GMC, its not implemented at all

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 61cc9974
...@@ -1985,7 +1985,8 @@ int ff_MPV_lowest_referenced_row(MpegEncContext *s, int dir) ...@@ -1985,7 +1985,8 @@ int ff_MPV_lowest_referenced_row(MpegEncContext *s, int dir)
int my_max = INT_MIN, my_min = INT_MAX, qpel_shift = !s->quarter_sample; int my_max = INT_MIN, my_min = INT_MAX, qpel_shift = !s->quarter_sample;
int my, off, i, mvs; int my, off, i, mvs;
if (s->picture_structure != PICT_FRAME) goto unhandled; if (s->picture_structure != PICT_FRAME || s->mcsel)
goto unhandled;
switch (s->mv_type) { switch (s->mv_type) {
case MV_TYPE_16X16: case MV_TYPE_16X16:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment