Qt: Fix VBR

This commit is contained in:
Jeffrey Pfau 2014-10-28 01:35:31 -07:00
parent f4f6ff902c
commit 9c83462343
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}