aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-12-31 21:08:02 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit0dbfe3c23ee072ec9dbc477f955a163107af2be1 (patch)
treef7f3501ef32891e80197717ab18b22a8d88fdb9f /Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs
parent6e092c05584ccbbd548ac26c056c1a7edfa6c1a0 (diff)
Re-add NVDEC project (not integrated)
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs b/Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs
new file mode 100644
index 00000000..4f17d8d1
--- /dev/null
+++ b/Ryujinx.Graphics.Nvdec/VDec/DecoderHelper.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace Ryujinx.Graphics.VDec
+{
+ static class DecoderHelper
+ {
+ public static byte[] Combine(byte[] arr0, byte[] arr1)
+ {
+ byte[] output = new byte[arr0.Length + arr1.Length];
+
+ Buffer.BlockCopy(arr0, 0, output, 0, arr0.Length);
+ Buffer.BlockCopy(arr1, 0, output, arr0.Length, arr1.Length);
+
+ return output;
+ }
+ }
+} \ No newline at end of file