From 9c83462343100901461db1b1caae2fa434c4555f Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Tue, 28 Oct 2014 01:35:31 -0700 Subject: [PATCH] Qt: Fix VBR --- src/platform/qt/VideoView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/VideoView.cpp b/src/platform/qt/VideoView.cpp index 5678f27d1..9a6515e03 100644 --- a/src/platform/qt/VideoView.cpp +++ b/src/platform/qt/VideoView.cpp @@ -141,7 +141,7 @@ void VideoView::setAudioBitrate(int br) { } void VideoView::setVideoBitrate(int br) { - m_abr = br * 1000; + m_vbr = br * 1000; FFmpegEncoderSetVideo(&m_encoder, m_videoCodecCstr, m_vbr); validateSettings(); }