mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #4958 from RisingFog/avidump_bitrate
Add configurable video dump bitrate to INI
This commit is contained in:
commit
ed6a46a193
3 changed files with 4 additions and 1 deletions
|
@ -138,7 +138,7 @@ bool AVIDump::CreateVideoFile()
|
|||
s_codec_context->codec_tag =
|
||||
MKTAG('X', 'V', 'I', 'D'); // Force XVID FourCC for better compatibility
|
||||
s_codec_context->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
s_codec_context->bit_rate = 400000;
|
||||
s_codec_context->bit_rate = g_Config.iBitrateKbps * 1000;
|
||||
s_codec_context->width = s_width;
|
||||
s_codec_context->height = s_height;
|
||||
s_codec_context->time_base.num = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue