diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/system_archive/system_version.cpp | 12 | ||||
| -rw-r--r-- | src/video_core/command_classes/codecs/codec.cpp | 1 |
2 files changed, 6 insertions, 7 deletions
diff --git a/src/core/file_sys/system_archive/system_version.cpp b/src/core/file_sys/system_archive/system_version.cpp index aa313de66..7bfbc9a67 100644 --- a/src/core/file_sys/system_archive/system_version.cpp +++ b/src/core/file_sys/system_archive/system_version.cpp | |||
| @@ -12,17 +12,17 @@ namespace SystemVersionData { | |||
| 12 | // This section should reflect the best system version to describe yuzu's HLE api. | 12 | // This section should reflect the best system version to describe yuzu's HLE api. |
| 13 | // TODO(DarkLordZach): Update when HLE gets better. | 13 | // TODO(DarkLordZach): Update when HLE gets better. |
| 14 | 14 | ||
| 15 | constexpr u8 VERSION_MAJOR = 10; | 15 | constexpr u8 VERSION_MAJOR = 11; |
| 16 | constexpr u8 VERSION_MINOR = 0; | 16 | constexpr u8 VERSION_MINOR = 0; |
| 17 | constexpr u8 VERSION_MICRO = 2; | 17 | constexpr u8 VERSION_MICRO = 0; |
| 18 | 18 | ||
| 19 | constexpr u8 REVISION_MAJOR = 1; | 19 | constexpr u8 REVISION_MAJOR = 5; |
| 20 | constexpr u8 REVISION_MINOR = 0; | 20 | constexpr u8 REVISION_MINOR = 0; |
| 21 | 21 | ||
| 22 | constexpr char PLATFORM_STRING[] = "NX"; | 22 | constexpr char PLATFORM_STRING[] = "NX"; |
| 23 | constexpr char VERSION_HASH[] = "f90143fa8bbc061d4f68c35f95f04f8080c0ecdc"; | 23 | constexpr char VERSION_HASH[] = "34197eba8810e2edd5e9dfcfbde7b340882e856d"; |
| 24 | constexpr char DISPLAY_VERSION[] = "10.0.2"; | 24 | constexpr char DISPLAY_VERSION[] = "11.0.0"; |
| 25 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 10.0.2-1.0"; | 25 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 11.0.0-5.0"; |
| 26 | 26 | ||
| 27 | } // namespace SystemVersionData | 27 | } // namespace SystemVersionData |
| 28 | 28 | ||
diff --git a/src/video_core/command_classes/codecs/codec.cpp b/src/video_core/command_classes/codecs/codec.cpp index 9a88f64e4..f547f5bd4 100644 --- a/src/video_core/command_classes/codecs/codec.cpp +++ b/src/video_core/command_classes/codecs/codec.cpp | |||
| @@ -67,7 +67,6 @@ void Codec::Decode() { | |||
| 67 | } | 67 | } |
| 68 | 68 | ||
| 69 | av_codec_ctx = avcodec_alloc_context3(av_codec); | 69 | av_codec_ctx = avcodec_alloc_context3(av_codec); |
| 70 | av_codec_ctx->refcounted_frames = 1; | ||
| 71 | av_opt_set(av_codec_ctx->priv_data, "tune", "zerolatency", 0); | 70 | av_opt_set(av_codec_ctx->priv_data, "tune", "zerolatency", 0); |
| 72 | 71 | ||
| 73 | // TODO(ameerj): libavcodec gpu hw acceleration | 72 | // TODO(ameerj): libavcodec gpu hw acceleration |