Browse Source

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

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.1
Michael Niedermayer Martin Storsjö 13 years ago
parent
commit
6bcdfe48d0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/mpegvideo.c

+ 2
- 1
libavcodec/mpegvideo.c View File

@@ -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, 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) {
case MV_TYPE_16X16:


Loading…
Cancel
Save