Commit 526a7d85 authored by Ramiro Polla's avatar Ramiro Polla Committed by Michael Niedermayer

dshow: don't print min/max values for fps the wrong way around

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e3e96283
......@@ -371,9 +371,9 @@ dshow_cycle_formats(AVFormatContext *avctx, enum dshowDeviceType devtype,
if (!pformat_set) {
av_log(avctx, AV_LOG_INFO, " min s=%ldx%ld fps=%g max s=%ldx%ld fps=%g\n",
vcaps->MinOutputSize.cx, vcaps->MinOutputSize.cy,
1e7 / vcaps->MinFrameInterval,
1e7 / vcaps->MaxFrameInterval,
vcaps->MaxOutputSize.cx, vcaps->MaxOutputSize.cy,
1e7 / vcaps->MaxFrameInterval);
1e7 / vcaps->MinFrameInterval);
continue;
}
if (ctx->framerate) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment