Amiga ProTracker / SoundTracker module (MOD) codec for oxideav.
Part of the oxideav framework — a pure-Rust media transcoding and streaming stack. Codec, container, and filter crates are implemented from the spec (no C codec libraries linked or wrapped, no *-sys crates). Optional hardware-engine crates (oxideav-videotoolbox / -audiotoolbox / -vaapi / -vdpau / -nvidia / -vulkan-video) bridge to OS APIs via runtime libloading; pass --no-hwaccel (or omit the hwaccel feature) to opt out.
- Container: reads the whole
.modfile (ProTracker / SoundTracker) into a single packet. Probes the 4-byte signature at offset 1080 (M.K.,M!K!,4CHN/6CHN/8CHN,FLT4/FLT8,OCTA,CD81,xxCHfor 10..=32 channels). Populates stream metadata (title, sample names, pattern / channel counts) and an upper-bound duration. - Decoder: parses the header, patterns, and raw signed-8-bit sample
bodies; drives a
PlayerState(rows → ticks, Paula periods, Protracker sine-table vibrato / tremolo, sample-offset, tone portamento, pattern loop, note-delay / note-cut, pattern-delay, full 16-finetune × 36-note period table); mixes samples with linear interpolation. - Decode only — there is no MOD encoder, by design.
Two decoder implementations are registered with distinct codec IDs:
| Codec id | Output shape | Use case |
|---|---|---|
mod |
Mixed stereo, interleaved S16 at 44.1 kHz |
Drop-in playback |
mod_planar |
Planar S16P at 44.1 kHz, one plane per MOD tracker channel |
Per-channel mixing, analysis, DAW export |
The mixed mode applies the Amiga hard-pan convention (channels 0 & 3 left,
1 & 2 right; the pattern repeats every 4 for >4-channel files) and a
1/(N/2) headroom scale so a fully-saturated 4-channel MOD stays within
-1..1.
The planar mode emits each tracker channel post-volume but pre-pan and pre-mix — consumers get the raw per-channel signal and can apply their own panning / mixing / effects downstream.
Both modes are driven by the same PlayerState tick machinery, so they
sample each channel from the same engine; only the output projection
differs.
[dependencies]
oxideav-mod = "0.0"use oxideav_codec::CodecRegistry;
use oxideav_container::ContainerRegistry;
let mut containers = ContainerRegistry::new();
let mut codecs = CodecRegistry::new();
oxideav_mod::register_containers(&mut containers);
oxideav_mod::register_codecs(&mut codecs);
// Select mixed stereo output:
// CodecId::new(oxideav_mod::CODEC_ID_STR) // "mod"
// Or planar per-channel output:
// CodecId::new(oxideav_mod::CODEC_ID_PLANAR_STR) // "mod_planar"Spec-level effect coverage per Protracker-v1.1B-mod.txt:
| Slot | Effect | Status |
|---|---|---|
| 0xy | Arpeggio | implemented (period-table walk with finetune-aware semitone steps) |
| 1xx / 2xx | Portamento up / down (with last-param memory) | implemented |
| 3xy / 5xy | Tone portamento, with volume slide | implemented; E3x glissando snaps to nearest semitone |
| 4xy / 6xy | Vibrato, with volume slide | implemented (32-entry Protracker sine + ramp-down + square) |
| 7xy | Tremolo | implemented |
| 9xx | Sample offset (param << 8) with memory |
implemented |
| Axy | Volume slide | implemented |
| Bxx | Position jump | implemented |
| Cxx | Set volume | implemented |
| Dxy | Pattern break (decimal x*10 + y) |
implemented |
| Fxx | Speed / BPM split (≤$1F = speed, ≥$20 = BPM) | implemented |
| E0x | Filter on/off | implemented (1-pole IIR lowpass at 11.5 kHz; LED defaults ON) |
| E1x / E2x | Fine portamento up / down (tick-0 one-shot) | implemented |
| E3x | Glissando control | implemented |
| E4x / E7x | Vibrato / tremolo waveform (sine / ramp-down / square / retrig bit) | implemented |
| E5x | Set finetune (also re-derives period on same-row note trigger) | implemented |
| E6x | Pattern loop (per-channel start + count) | implemented |
| E9x | Retrigger note every x ticks | implemented |
| EAx / EBx | Fine volume slide up / down | implemented |
| ECx | Note cut | implemented |
| EDx | Note delay | implemented |
| EEx | Pattern delay | implemented |
| EFx | Invert loop | deliberately not implemented per spec ("don't bother") |
| 8xx | Set pan | not implemented (ProTracker ignores; Amiga uses hard-pan LRRL) |
Loop handling is forward-only per MOD spec — ping-pong / bidi loops are an XM/IT/S3M-era extension and are deliberately not used here.
Spec coverage above is one half of the story; the other half is matching
the Protracker replayer's well-known quirks that real-world MODs target.
The following PT-vs-spec divergences are honoured by this crate (each has
a unit test in src/player.rs):
- Loop boundary — sample playback wraps at
loop_start + loop_length, not atpcm.len(). The data pastloop_endis the one-shot tail that PT discards; reading into it produced audible glitches on samples whose loop region is shorter than the declared length. Cited indocs/audio/trackers/mod/Protracker-effects-MODFIL12.txt§2.2 + §2.8. - Loop metadata clamp — out-of-range repeat start/length in real-world
rips is clamped to
pcm.len()so the mixer never reads past the buffer. - Sample swap without note — when a sample number appears on a row
without a note, PT loads the new sample's default volume + finetune
immediately but defers the actual sample-PCM swap until the next
note-on. Latching the sample index too early caused wrong-instrument
artefacts on common idioms like setting up the next note's volume one
row early. Cited in
Protracker-effects-MODFIL12.txt§3.2 +Pro-Noise-Soundtracker-rev4.txt:113-118. - Amiga LED filter (E00 / E01) — a 1-pole exponential lowpass at
~11.5 kHz is applied to the mixed output (and to each plane in the
per-channel mode) when the LED is on. The Amiga power-on default is
LED on, so the filter is engaged at song start.
E00reconnects /E01disconnects, with last-channel-wins resolution per row (the same idiom asFxx). Cutoff sourced frommultimedia-cx-protracker.htmlE0x ("For a simple 1-pole low-pass filter, 11500Hz gives a fairly decent estimation"). - Period range — the porta effects (
1xx/2xx/E1x/E2x) clamp to[113, 856]perProtracker-v1.1B-mod.txtCmd 1/2 ("you cannot slide higher than B-3 / lower than C-1"). The mixer'seffective_periodand tone-porta storage clamp to the extended range[108, 907]so that finetune ±8 extremes (PERIOD_TABLE[7][35] = 108,PERIOD_TABLE[8][0] = 907) play at the right pitch instead of being snapped back to the standard limits. - Vibrato sign convention — we follow
FireLight §5.5pseudocode: the sine-table value is added to the period (== "AMIGA frequency" in the doc) forvibrato_pos >= 0and subtracted for< 0. Adding to the period lowers the audible pitch, so the first half-cycle of a fresh vibrato dips below the base note. This is the canonical PT interpretation. Fxxspeed/BPM split —< 0x20sets ticks/division (speed),>= 0x20sets BPM, matchingProtracker-v1.1B-mod.txtCmd F and the convention noted inPro-Noise-Soundtracker-rev4.txt:362-365.0x1Fis the largest speed value,0x20(= 32) is the smallest BPM value.E6x/Dxysame-row resolution — both effects write to the samepending_jump; per thePro-Noise-Soundtracker-rev4.txt:375-377channel-priority rule, the higher-numbered channel wins. The regression test pins this down so a future refactor doesn't quietly flip the ordering.
MIT — see LICENSE.