mirror of https://github.com/mgba-emu/mgba.git
Qt: Re-add Xvid and use YUV libx264 instead of RGB
This commit is contained in:
parent
3878e4b196
commit
c101703b20
|
@ -25,7 +25,8 @@ VideoView::VideoView(QWidget* parent)
|
|||
s_acodecMap["uncompressed"] = "pcm_s16le";
|
||||
}
|
||||
if (s_vcodecMap.empty()) {
|
||||
s_vcodecMap["h264"] = "libx264rgb";
|
||||
s_vcodecMap["h264"] = "libx264";
|
||||
s_vcodecMap["xvid"] = "libxvid";
|
||||
}
|
||||
if (s_containerMap.empty()) {
|
||||
s_containerMap["mkv"] = "matroska";
|
||||
|
|
|
@ -66,6 +66,11 @@
|
|||
<string>h.264</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Xvid</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>FFV1</string>
|
||||
|
|
Loading…
Reference in New Issue