This commit is contained in:
bnnm 2023-09-02 19:57:41 +02:00
parent 9e4f23ccaa
commit 61bf0b5d26
4 changed files with 12 additions and 12 deletions

View File

@ -223,7 +223,7 @@ different internally (encrypted, different versions, etc) and not always can be
- Ogg Vorbis header (KOVS) [*OGG_KOVS*] - Ogg Vorbis header (KOVS) [*OGG_KOVS*]
- *ogg_vorbis* - *ogg_vorbis*
- Subfiles: *ogg_vorbis* - Subfiles: *ogg_vorbis*
- *ogg_vorbis_config*: `.ogg .logg .adx .rof .acm .sod .msa .bin .lbin .kvs .kovs .rpgmvo .ogg_ .bgm .gwm .mus .isd .sngw .lse .eno .um3 .u0 + .(external)` - *ogg_vorbis_config*: `.ogg .logg .adx .rof .acm .sod .msa .bin .lbin .kvs .kovs .rpgmvo .ogg_ .bgm .gwm .mus .fish .isd .sngw .lse .eno .um3 .u0 + .(external)`
- Subfiles: *ogg_vorbis_config ogg_vorbis_cfg_ovmi ogg_vorbis_tests ogg_vorbis_common ogg_vorbis_tink ogg_vorbis* - Subfiles: *ogg_vorbis_config ogg_vorbis_cfg_ovmi ogg_vorbis_tests ogg_vorbis_common ogg_vorbis_tink ogg_vorbis*
- Codecs: OGG OGG_VORBIS - Codecs: OGG OGG_VORBIS
- **sfl.c** - **sfl.c**
@ -425,6 +425,12 @@ different internally (encrypted, different versions, etc) and not always can be
- *wvs_xbox*: `.wvs` - *wvs_xbox*: `.wvs`
- *wvs_ngc*: `.wvs` - *wvs_ngc*: `.wvs`
- Codecs: XBOX_IMA NGC_DSP - Codecs: XBOX_IMA NGC_DSP
- **str_sega.c**
- Sega Stream Asset Builder header [*STR_SEGA*]
- Sega Stream Asset Builder header (custom) [*STR_SEGA_custom*]
- *str_sega*: `.str`
- *str_sega_custom*: `.str`
- Codecs: AICA_int PCM8_U PCM16LE
- **dec.c** - **dec.c**
- Falcom .DEC RIFF header [*DEC*] - Falcom .DEC RIFF header [*DEC*]
- *dec*: `.dec .de2 + .(external)` - *dec*: `.dec .de2 + .(external)`
@ -433,12 +439,6 @@ different internally (encrypted, different versions, etc) and not always can be
- Melbourne House .VS header [*VS*] - Melbourne House .VS header [*VS*]
- *vs*: `.vs` - *vs*: `.vs`
- Codecs: PSX - Codecs: PSX
- **dc_str.c**
- Sega Stream Asset Builder header [*DC_STR*]
- variant of Sega Stream Asset Builder header [*DC_STR_V2*]
- *dc_str*: `.str`
- *dc_str_v2*: `.str`
- Codecs: AICA_int PCM16LE
- **xmu.c** - **xmu.c**
- Outrage XMU header [*XMU*] - Outrage XMU header [*XMU*]
- *xmu*: `.xmu` - *xmu*: `.xmu`
@ -1844,7 +1844,7 @@ different internally (encrypted, different versions, etc) and not always can be
- *mpeg*: `.mp3 .mp2 .lmp3 .lmp2 .mus .imf .aix .(extensionless)` - *mpeg*: `.mp3 .mp2 .lmp3 .lmp2 .mus .imf .aix .(extensionless)`
- Codecs: MPEG - Codecs: MPEG
- **btsnd.c** - **btsnd.c**
- Nintendo Wii U Menu Boot Sound [*WIIU_BTSND*] - Nintendo Wii U Menu Boot Sound header [*BTSND*]
- *btsnd*: `.btsnd` - *btsnd*: `.btsnd`
- Codecs: PCM16BE - Codecs: PCM16BE
- **fsb_encrypted.c** - **fsb_encrypted.c**

View File

@ -402,7 +402,6 @@
<ClCompile Include="meta\dc_asd.c" /> <ClCompile Include="meta\dc_asd.c" />
<ClCompile Include="meta\dc_idvi.c" /> <ClCompile Include="meta\dc_idvi.c" />
<ClCompile Include="meta\dc_kcey.c" /> <ClCompile Include="meta\dc_kcey.c" />
<ClCompile Include="meta\dc_str.c" />
<ClCompile Include="meta\deblock_streamfile.c" /> <ClCompile Include="meta\deblock_streamfile.c" />
<ClCompile Include="meta\dec.c" /> <ClCompile Include="meta\dec.c" />
<ClCompile Include="meta\derf.c" /> <ClCompile Include="meta\derf.c" />
@ -649,6 +648,7 @@
<ClCompile Include="meta\sthd.c" /> <ClCompile Include="meta\sthd.c" />
<ClCompile Include="meta\stma.c" /> <ClCompile Include="meta\stma.c" />
<ClCompile Include="meta\strm_abylight.c" /> <ClCompile Include="meta\strm_abylight.c" />
<ClCompile Include="meta\str_sega.c" />
<ClCompile Include="meta\str_snds.c" /> <ClCompile Include="meta\str_snds.c" />
<ClCompile Include="meta\str_wav.c" /> <ClCompile Include="meta\str_wav.c" />
<ClCompile Include="meta\sts.c" /> <ClCompile Include="meta\sts.c" />

View File

@ -1027,9 +1027,6 @@
<ClCompile Include="meta\dc_kcey.c"> <ClCompile Include="meta\dc_kcey.c">
<Filter>meta\Source Files</Filter> <Filter>meta\Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="meta\dc_str.c">
<Filter>meta\Source Files</Filter>
</ClCompile>
<ClCompile Include="meta\deblock_streamfile.c"> <ClCompile Include="meta\deblock_streamfile.c">
<Filter>meta\Source Files</Filter> <Filter>meta\Source Files</Filter>
</ClCompile> </ClCompile>
@ -1768,6 +1765,9 @@
<ClCompile Include="meta\strm_abylight.c"> <ClCompile Include="meta\strm_abylight.c">
<Filter>meta\Source Files</Filter> <Filter>meta\Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="meta\str_sega.c">
<Filter>meta\Source Files</Filter>
</ClCompile>
<ClCompile Include="meta\str_snds.c"> <ClCompile Include="meta\str_snds.c">
<Filter>meta\Source Files</Filter> <Filter>meta\Source Files</Filter>
</ClCompile> </ClCompile>