summaryrefslogtreecommitdiffstats
path: root/contrib/ffmpeg
diff options
context:
space:
mode:
authormaxd <[email protected]>2013-10-21 10:35:54 +0000
committermaxd <[email protected]>2013-10-21 10:35:54 +0000
commitd4d367adde4c5e8754965a390d48693e2aa3acfc (patch)
tree149d6d5c9044bec14009d9d264a489bd38cbb663 /contrib/ffmpeg
parent2a07df4f3cdf9fe81c6b5fe6c3f4a2278067ebf6 (diff)
QSV: fix for normal processing
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5848 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/ffmpeg')
-rw-r--r--contrib/ffmpeg/A00-qsv.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ffmpeg/A00-qsv.patch b/contrib/ffmpeg/A00-qsv.patch
index de9c66c89..67203beac 100644
--- a/contrib/ffmpeg/A00-qsv.patch
+++ b/contrib/ffmpeg/A00-qsv.patch
@@ -1418,7 +1418,7 @@ index 0000000..a353c22
+
+ sts = MFXVideoDECODE_DecodeHeader(qsv->mfx_session, &qsv_decode->bs,
+ &qsv_decode->m_mfxVideoParam);
-+ if (sts <= MFX_ERR_NONE && avctx->height && avctx->width)
++ if (sts < MFX_ERR_NONE && avctx->height && avctx->width)
+ {
+ av_log(avctx, AV_LOG_QUIET,"DecodeHeader failed with result:%d\n",sts);
+ sts = MFX_ERR_NONE;