From a0a46150cb9dd7ec15c0b2a14673bcf336439b7d Mon Sep 17 00:00:00 2001 From: Michael <15317421+ActualMandM@users.noreply.github.com> Date: Sat, 11 Nov 2023 01:01:59 -0800 Subject: [PATCH] Add OPUS & M4A encode types. (#14) * Add OPUS encode type. Uses a fake extension, but all the encoding and decoding software use this extension anyway so might as well. * Add M4A encode type. https://github.com/vgmstream/vgmstream/blob/479117fbc2251e5083c3dfd65597f31372021ba5/src/meta/awb.c#L124 --- Source/AcbEditor/Program.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Source/AcbEditor/Program.cs b/Source/AcbEditor/Program.cs index 77136cc..a475845 100644 --- a/Source/AcbEditor/Program.cs +++ b/Source/AcbEditor/Program.cs @@ -404,20 +404,24 @@ namespace AcbEditor return ".dsadpcm"; case 6: return ".hcamx"; - case 10: case 7: + case 10: return ".vag"; case 8: return ".at3"; case 9: return ".bcwav"; - case 18: case 11: + case 18: return ".at9"; case 12: return ".xma"; case 13: return ".dsp"; + case 19: + return ".m4a"; + case 24: + return ".lopus"; default: return ".bin"; }