Browse Source

libavcodec/qsvenc.c: fix incorrect loop condition.

For example, the encoder may return MFX_WRN_INCOMPATIBLE_VIDEO_PARAM warning
i.e. ret==5 old loop implementation will repeat several times until output buffer
overflow. New implementation explicitly uses loop only for device busy case.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.8
Ivan Uskov Michael Niedermayer 10 years ago
parent
commit
b409748bc4
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavcodec/qsvenc.c

+ 5
- 2
libavcodec/qsvenc.c View File

@@ -399,9 +399,12 @@ int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q,

do {
ret = MFXVideoENCODE_EncodeFrameAsync(q->session, NULL, surf, &bs, &sync);
if (ret == MFX_WRN_DEVICE_BUSY)
if (ret == MFX_WRN_DEVICE_BUSY) {
av_usleep(1);
} while (ret > 0);
continue;
}
break;
} while ( 1 );

if (ret < 0)
return (ret == MFX_ERR_MORE_DATA) ? 0 : ff_qsv_error(ret);


Loading…
Cancel
Save