mirror of https://github.com/mgba-emu/mgba.git
FFmpeg: Add Ut Video option
This commit is contained in:
parent
aa5f4bc3a4
commit
05d1cff6eb
1
CHANGES
1
CHANGES
|
@ -37,6 +37,7 @@ Misc:
|
|||
- Core: Improve rumble emulation by averaging state over entire frame (fixes mgba.io/i/3232)
|
||||
- Core: Add MD5 hashing for ROMs
|
||||
- Core: Add support for specifying an arbitrary portable directory
|
||||
- FFmpeg: Add Ut Video option
|
||||
- GB: Prevent incompatible BIOSes from being used on differing models
|
||||
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
||||
- GBA: Improve detection of valid ELF ROMs
|
||||
|
|
|
@ -65,6 +65,7 @@ VideoView::VideoView(QWidget* parent)
|
|||
s_vcodecMap["hevc"] = "libx265";
|
||||
s_vcodecMap["hevc nvenc"] = "hevc_nvenc";
|
||||
s_vcodecMap["theora"] = "libtheora";
|
||||
s_vcodecMap["ut video"] = "utvideo";
|
||||
s_vcodecMap["vp8"] = "libvpx";
|
||||
s_vcodecMap["vp9"] = "libvpx-vp9";
|
||||
s_vcodecMap["xvid"] = "libxvid";
|
||||
|
|
|
@ -302,6 +302,11 @@
|
|||
<string notr="true">VP9</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Ut Video</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string notr="true">FFV1</string>
|
||||
|
|
Loading…
Reference in New Issue