mirror of https://github.com/mgba-emu/mgba.git
Qt: Add some more video formats
This commit is contained in:
parent
9f5df2a6f2
commit
04af84a1d2
|
@ -25,7 +25,12 @@ VideoView::VideoView(QWidget* parent)
|
||||||
s_acodecMap["uncompressed"] = "pcm_s16le";
|
s_acodecMap["uncompressed"] = "pcm_s16le";
|
||||||
}
|
}
|
||||||
if (s_vcodecMap.empty()) {
|
if (s_vcodecMap.empty()) {
|
||||||
|
s_vcodecMap["dirac"] = "libschroedinger";
|
||||||
s_vcodecMap["h264"] = "libx264";
|
s_vcodecMap["h264"] = "libx264";
|
||||||
|
s_vcodecMap["hevc"] = "libx265";
|
||||||
|
s_vcodecMap["theora"] = "libtheora";
|
||||||
|
s_vcodecMap["vp8"] = "libvpx";
|
||||||
|
s_vcodecMap["vp9"] = "libvpx-vp9";
|
||||||
s_vcodecMap["xvid"] = "libxvid";
|
s_vcodecMap["xvid"] = "libxvid";
|
||||||
}
|
}
|
||||||
if (s_containerMap.empty()) {
|
if (s_containerMap.empty()) {
|
||||||
|
|
|
@ -39,6 +39,11 @@
|
||||||
<string>MKV</string>
|
<string>MKV</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>WebM</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>AVI</string>
|
<string>AVI</string>
|
||||||
|
@ -66,6 +71,11 @@
|
||||||
<string>h.264</string>
|
<string>h.264</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>VP8</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Xvid</string>
|
<string>Xvid</string>
|
||||||
|
|
Loading…
Reference in New Issue