nx_vid_dur_gate.nx
buildroot/runtime/nx_vid_dur_gate.nx
about
nx_vid_dur_gate.nx -- SOVEREIGN gate for the container-duration parsers (vd_mp4_dur / vd_mkv_dur / vd_sniff).
Crafts minimal mp4 + mkv byte fixtures with KNOWN durations and asserts the parsers recover them. No files,
no external tools -- pure in-memory byte parsing. license_tier: ORIGINAL
dependencies 2 imports · 0 importers
imports: nx_syscalls.nxnx_vid_dur_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 7 | func g_p(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 8 | func g_n(v: i64) -> i64 |
| 14 | func g_eq(label: *u8, got: i64, want: i64, pass: *i64, fail: *i64) -> i64 |
| 19 | func g_str(buf: *u8, off: i64, s: *u8) -> i64 { var i: i64 = 0; while s[i] != (0 as u8) { buf[off + i] = s[i]; i = i + 1 } return off + i } called by 1: main |
| 21 | func main(argc: i64, argv: *i64) -> i64 |