[FFmpeg-cvslog] Merge commit 'e23190269fb6e8217d080918893641ba3e0e3556'
Mark Thompson
git at videolan.org
Wed Jan 17 00:58:30 EET 2018
ffmpeg | branch: master | Mark Thompson <sw at jkqxz.net> | Tue Jan 16 22:57:02 2018 +0000| [d204b7ff610cb8dac1116e7a4fd3068733cb5adf] | committer: Mark Thompson
Merge commit 'e23190269fb6e8217d080918893641ba3e0e3556'
* commit 'e23190269fb6e8217d080918893641ba3e0e3556':
lavu/qsv: add log message for libmfx version
Merged-by: Mark Thompson <sw at jkqxz.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d204b7ff610cb8dac1116e7a4fd3068733cb5adf
---
libavutil/hwcontext_qsv.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c
index 9b6040ba9e..6228c04de5 100644
--- a/libavutil/hwcontext_qsv.c
+++ b/libavutil/hwcontext_qsv.c
@@ -1035,6 +1035,10 @@ static int qsv_device_derive_from_child(AVHWDeviceContext *ctx,
goto fail;
}
+ av_log(ctx, AV_LOG_VERBOSE,
+ "Initialize MFX session: API version is %d.%d, implementation version is %d.%d\n",
+ MFX_VERSION_MAJOR, MFX_VERSION_MINOR, ver.Major, ver.Minor);
+
MFXClose(hwctx->session);
err = MFXInit(implementation, &ver, &hwctx->session);
======================================================================
More information about the ffmpeg-cvslog
mailing list