video_decoder removed; fix video regression and updated to no-zstd

This commit is contained in:
minjaesong
2026-05-10 05:56:56 +09:00
parent b27ef0dbf9
commit 2cdd731c3b
63 changed files with 127 additions and 31850 deletions

View File

@@ -1,7 +1,9 @@
const SND_BASE_ADDR = audio.getBaseAddr()
const SND_MEM_ADDR = audio.getMemAddr()
const TAD_INPUT_ADDR = SND_MEM_ADDR - 262144 // TAD input buffer (matches TAV packet 0x24)
const TAD_DECODED_ADDR = SND_MEM_ADDR - 262144 + 65536 // TAD decoded buffer
// tadInputBin lives at audio-local offset 917504 and tadDecodedBin at 983040
// (post-bef85f6 memory map; the old 262144 offset now hits the enlarged sampleBin).
const TAD_INPUT_ADDR = SND_MEM_ADDR - 917504 // TAD input buffer (matches TAV packet 0x24)
const TAD_DECODED_ADDR = SND_MEM_ADDR - 983040 // TAD decoded buffer
if (!SND_BASE_ADDR) return 10

View File

@@ -1746,7 +1746,9 @@ try {
tadInitialised = true
}
seqread.readBytes(payloadLen, SND_MEM_ADDR - 262144)
// tadInputBin lives at audio-local offset 917504 (post-bef85f6 memory map);
// the previous 262144 offset now points into the enlarged sampleBin.
seqread.readBytes(payloadLen, SND_MEM_ADDR - 917504)
audio.tadDecode()
audio.tadUploadDecoded(AUDIO_DEVICE, sampleLen)
}