all repos — mgba @ 9c83462343100901461db1b1caae2fa434c4555f

mGBA Game Boy Advance Emulator

Qt: Fix VBR
Jeffrey Pfau jeffrey@endrift.com
Tue, 28 Oct 2014 01:35:31 -0700
commit

9c83462343100901461db1b1caae2fa434c4555f

parent

f4f6ff902ca4d5d5b5b8ec092ef4317aaa6de9b9

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/platform/qt/VideoView.cppsrc/platform/qt/VideoView.cpp

@@ -141,7 +141,7 @@ validateSettings();

} void VideoView::setVideoBitrate(int br) { - m_abr = br * 1000; + m_vbr = br * 1000; FFmpegEncoderSetVideo(&m_encoder, m_videoCodecCstr, m_vbr); validateSettings(); }