]> git.sesse.net Git - ffmpeg/commitdiff
lavc/qsvenc: Fix format specifiers for two variables of type int.
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 1 Apr 2020 14:52:19 +0000 (16:52 +0200)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Sat, 4 Apr 2020 21:18:08 +0000 (23:18 +0200)
libavcodec/qsvenc.c

index 52b4e43979ce2ebe6dad05666397f6999d79f49a..afab8fd7151f46f53638945170559931f684dba3 100644 (file)
@@ -218,9 +218,9 @@ static void dump_video_param(AVCodecContext *avctx, QSVEncContext *q,
            "RecoveryPointSEI: %s IntRefType: %"PRIu16"; IntRefCycleSize: %"PRIu16"; IntRefQPDelta: %"PRId16"\n",
            print_threestate(co->RecoveryPointSEI), co2->IntRefType, co2->IntRefCycleSize, co2->IntRefQPDelta);
 
-    av_log(avctx, AV_LOG_VERBOSE, "MaxFrameSize: %"PRIu16"; ", co2->MaxFrameSize);
+    av_log(avctx, AV_LOG_VERBOSE, "MaxFrameSize: %d; ", co2->MaxFrameSize);
 #if QSV_HAVE_MAX_SLICE_SIZE
-    av_log(avctx, AV_LOG_VERBOSE, "MaxSliceSize: %"PRIu16"; ", co2->MaxSliceSize);
+    av_log(avctx, AV_LOG_VERBOSE, "MaxSliceSize: %d; ", co2->MaxSliceSize);
 #endif
     av_log(avctx, AV_LOG_VERBOSE, "\n");