mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
XVID FourCC for MPEG-4 codecs.
This commit is contained in:
parent
d4686aa1a7
commit
a1a9e488a5
1 changed files with 4 additions and 3 deletions
|
@ -140,9 +140,10 @@ bool AVIDump::CreateVideoFile()
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!g_Config.bUseFFV1)
|
||||
s_codec_context->codec_tag =
|
||||
MKTAG('X', 'V', 'I', 'D'); // Force XVID FourCC for better compatibility
|
||||
// Force XVID FourCC for better compatibility
|
||||
if (codec->id == AV_CODEC_ID_MPEG4)
|
||||
s_codec_context->codec_tag = MKTAG('X', 'V', 'I', 'D');
|
||||
|
||||
s_codec_context->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
s_codec_context->bit_rate = g_Config.iBitrateKbps * 1000;
|
||||
s_codec_context->width = s_width;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue