mux: reconcile fvi:// video-index sink onto rc6
Port + adapt the freemkv native per-picture video index (FVI) from the
old feat/fvi-sink branch onto rc6's codec-agnostic PictureInfo model.
This is a surgical adaptation, not a merge.
Adaptations (fvi_sink.rs, videomap.rs, tests/fvi_pipeline.rs):
- Retarget from the removed crate::mux::codec::mpeg2::PictureInfo (raw
public fields) to rc6's authoritative crate::mux::codec::PictureInfo
in codec/coding.rs, via its accessors.
- type from coding_type() -> CodingType{I,P,B}; emitted for ANY frame
that carries coding (every video codec now fills it), with the
keyframe-flag I/P fallback only when coding is absent.
- Replace the mpeg2-only tff/rff/progressive members with codec-agnostic
members derived through the accessors: field_order (tff/bff/progressive)
and progressive, emitted ONLY when the codec measured the signal
(Option::Some) and omitted otherwise; plus nb_fields.
- Test fixtures rebuilt via PictureInfo::mpeg2(CodingType, Mpeg2Coding{..})
/ coding_type_only(..); added measured_cicp: None to VideoStream
literals for rc6's struct.
Honesty decision (key / random-access):
- The codec-agnostic PictureInfo carries NO GOP-closure (no closed_gop /
gop_start), so key is set from the frame's intra / decode-restart flag
(frame.keyframe == coding.keyframe() for video), NOT a fabricated
clean-RAP claim. The old gop member is honestly omitted. FVI_FORMAT.md
is updated to document this as a limitation: key is an intra picture /
parser-flagged decode-restart point; MPEG-2 open-GOP clean-RAP precision
(closed_gop) is not currently distinguished. §7.1 rewritten for the
new field_order/progressive/nb_fields members.
Wiring:
- mux/mod.rs: pub(crate) mod fvi_sink; pub(crate) mod videomap
(#[allow(dead_code)] on videomap — the VideoMap accumulator is staged
for side-channel reuse, sink builds records directly); pub use
fvi_sink::FviSink.
- mux/resolve.rs: add the fvi:// output scheme to StreamUrl, parse_url,
scheme(), path_str(), input() (write-only reject) and output()
(constructs FviSink), mirroring the mkv:///demux:// patterns.
Provenance fix surfaced by the end-to-end test:
- pipelined_stream::consume_ps was dropping the PS demuxer's byte-exact
source stamp (source: None) when rebuilding PesPacket, so PS/DVD-path
frames reached the mux/index with no provenance (FVI src null). Carry
ps.source through, matching the TS path; the real-pipeline fvi test now
sees the stamped src sectors.
Gate: cargo +1.86 fmt + clippy --lib -D warnings clean; cargo +1.86 test
--lib (2182 passed) and --test fvi_pipeline (2 passed); precommit.sh
libfreemkv green.
This commit is contained in:
@@ -0,0 +1,460 @@
|
||||
//! `fvi://` sink — freemkv's own native video-index output.
|
||||
//!
|
||||
//! This is a write-only [`crate::pes::Stream`] that, instead of muxing frames
|
||||
//! into a container, emits one machine-readable *video-index* record per coded
|
||||
//! picture of the title's primary video track. It is a thin consumer of the
|
||||
//! reusable, pure-data [`VideoMap`](crate::mux::videomap) model
|
||||
//! ([`MapHeader`]/[`PictureRecord`]): the sink builds the header from the title,
|
||||
//! then writes one record per video [`PesFrame`] straight to disk — nothing here
|
||||
//! re-parses the elementary stream, and the whole index is never buffered.
|
||||
//!
|
||||
//! The on-disk shape is the freemkv FVI format (normative public spec
|
||||
//! `docs/FVI_FORMAT.md`): JSON Lines — a header object on line 1, then one
|
||||
//! record object per picture. Serialization is inlined here in the sink.
|
||||
//!
|
||||
//! A different output format would be a DIFFERENT sink reusing the same
|
||||
//! [`VideoMap`](crate::mux::videomap) model (e.g. a future `fvi2://`), not a
|
||||
//! pluggable encoder — extensibility is by adding a sink, like every other
|
||||
//! sink in this crate.
|
||||
//!
|
||||
//! The sink is purely additive — it does NOT touch the MKV mux path.
|
||||
|
||||
use crate::disc::{DiscTitle, Stream as DiscStream};
|
||||
use crate::mux::videomap::{
|
||||
FVI_FORMAT, FVI_GENERATOR, FVI_SECTOR_SIZE, FVI_TIMESCALE, FVI_VERSION, MapHeader,
|
||||
PictureRecord, SourceInfo, field_order_label, is_random_access, type_label,
|
||||
};
|
||||
use crate::pes::{PesFrame, Stream};
|
||||
use std::fs::File;
|
||||
use std::io::{self, BufWriter, Write};
|
||||
use std::path::Path;
|
||||
|
||||
/// Write the FVI header row (JSON Lines, `docs/FVI_FORMAT.md` §6) into `w`.
|
||||
fn write_fvi_header(w: &mut dyn Write, h: &MapHeader) -> io::Result<()> {
|
||||
let mut source = serde_json::json!({
|
||||
"medium": h.source.medium.as_str(),
|
||||
"path": h.source.path,
|
||||
"title": h.source.title,
|
||||
"sector_size": FVI_SECTOR_SIZE,
|
||||
});
|
||||
// playlist / volume_id are MAY — emit only when known.
|
||||
if !h.source.playlist.is_empty() {
|
||||
source["playlist"] = serde_json::Value::String(h.source.playlist.clone());
|
||||
}
|
||||
if !h.source.volume_id.is_empty() {
|
||||
source["volume_id"] = serde_json::Value::String(h.source.volume_id.clone());
|
||||
}
|
||||
|
||||
let mut obj = serde_json::json!({
|
||||
"format": FVI_FORMAT,
|
||||
"fvi_version": FVI_VERSION,
|
||||
"generator": FVI_GENERATOR,
|
||||
"stream": {
|
||||
"codec": h.stream.codec,
|
||||
"width": h.stream.width,
|
||||
"height": h.stream.height,
|
||||
"dar": [h.stream.dar.0, h.stream.dar.1],
|
||||
"frame_rate": [h.stream.frame_rate.0, h.stream.frame_rate.1],
|
||||
"scan": h.stream.scan.as_str(),
|
||||
"colour": {
|
||||
"primaries": h.stream.colour.primaries,
|
||||
"transfer": h.stream.colour.transfer,
|
||||
"matrix": h.stream.colour.matrix,
|
||||
"range": if h.stream.colour.full_range { "full" } else { "limited" },
|
||||
},
|
||||
},
|
||||
"source": source,
|
||||
"timescale": FVI_TIMESCALE,
|
||||
});
|
||||
// picture_count is MAY — omitted when streaming (unknown at header time).
|
||||
if let Some(pc) = h.picture_count {
|
||||
obj["picture_count"] = serde_json::json!(pc);
|
||||
}
|
||||
serde_json::to_writer(&mut *w, &obj)?;
|
||||
w.write_all(b"\n")
|
||||
}
|
||||
|
||||
/// Write one FVI per-picture record (JSON Lines, `docs/FVI_FORMAT.md` §7) into
|
||||
/// `w`. `type`/`key` are codec-agnostic and always emitted; the coding-derived
|
||||
/// members (`field_order`, `progressive`, `nb_fields`) are emitted ONLY when the
|
||||
/// codec actually measured them — an honest absence, never a guessed default.
|
||||
fn write_fvi_record(w: &mut dyn Write, r: &PictureRecord) -> io::Result<()> {
|
||||
// `src` is REQUIRED by the record schema (Appendix A); when provenance is
|
||||
// absent the member is still emitted as null — a reader treats null as
|
||||
// "position unknown".
|
||||
let src = match r.source {
|
||||
Some(s) => serde_json::json!({ "sector": s.sector, "byte": s.byte }),
|
||||
None => serde_json::Value::Null,
|
||||
};
|
||||
|
||||
let mut obj = serde_json::json!({
|
||||
"n": r.n,
|
||||
"src": src,
|
||||
"type": type_label(r.coding, r.keyframe),
|
||||
"key": is_random_access(r.coding, r.keyframe),
|
||||
});
|
||||
|
||||
// pts is SHOULD — emit when present.
|
||||
if let Some(pts) = r.pts_ns {
|
||||
obj["pts"] = serde_json::json!(pts);
|
||||
}
|
||||
// dts is MAY — the highway carries no DTS on a frame, so it is omitted.
|
||||
// TODO(provenance→recovery join): a `recovered` MAY member belongs here,
|
||||
// sourced from the sweep/patch mapfile's bad-range overlap with this AU's
|
||||
// `src`. Not reachable at the PesFrame today; omitted (spec MAY).
|
||||
|
||||
// Coding-derived members (§7.1), emitted as top-level members for ANY frame
|
||||
// whose parser decoded the signal — derived through the codec-agnostic
|
||||
// `PictureInfo` accessors, never the raw bitstream:
|
||||
// - `field_order` only when measured (TFF/BFF/Progressive); OMITTED on a
|
||||
// codec-type-only codec (HEVC/H.264/VC-1) — honest absence.
|
||||
// - `progressive` only when the codec signalled it (Option<bool>).
|
||||
// - `nb_fields` (displayed field periods, soft-telecine basis) when coding
|
||||
// is present.
|
||||
if let Some(c) = r.coding {
|
||||
if let Some(fo) = field_order_label(r.coding) {
|
||||
obj["field_order"] = serde_json::json!(fo);
|
||||
}
|
||||
if let Some(prog) = c.progressive() {
|
||||
obj["progressive"] = serde_json::json!(prog);
|
||||
}
|
||||
obj["nb_fields"] = serde_json::json!(c.nb_fields());
|
||||
}
|
||||
|
||||
serde_json::to_writer(&mut *w, &obj)?;
|
||||
w.write_all(b"\n")
|
||||
}
|
||||
|
||||
/// `fvi://` sink: streams the title's primary-video per-picture index to a
|
||||
/// `.fvi` (or `.jsonl` / `.json`) file as JSON Lines.
|
||||
pub struct FviSink {
|
||||
title: DiscTitle,
|
||||
/// Index of the title's primary video track — only frames on this track are
|
||||
/// indexed; audio / subtitle / secondary-video frames are ignored.
|
||||
video_track: Option<usize>,
|
||||
/// The sink owns the destination file.
|
||||
w: BufWriter<File>,
|
||||
/// The header row, written lazily on the first `write`/`finish` so an
|
||||
/// empty / audio-only title still emits a valid single-line file.
|
||||
header: MapHeader,
|
||||
/// 0-based picture counter (the record `n`), incremented per indexed frame.
|
||||
next_n: u64,
|
||||
header_written: bool,
|
||||
finished: bool,
|
||||
}
|
||||
|
||||
impl FviSink {
|
||||
/// Create the sink at `path`, assembling the header from `title`'s primary
|
||||
/// video stream.
|
||||
///
|
||||
/// `source_path` / `source_title` record where the index was built from
|
||||
/// (the input URL path + the 0-based title index); they are carried into the
|
||||
/// header's `source` object. The medium defaults to `file` — callers with a
|
||||
/// known medium / playlist / volume use [`FviSink::create_with_source`].
|
||||
pub fn create(
|
||||
path: &Path,
|
||||
title: &DiscTitle,
|
||||
source_path: String,
|
||||
source_title: usize,
|
||||
) -> io::Result<Self> {
|
||||
Self::create_with_source(
|
||||
path,
|
||||
title,
|
||||
SourceInfo {
|
||||
path: source_path,
|
||||
title: source_title,
|
||||
..SourceInfo::default()
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
/// Create the sink with a fully-specified [`SourceInfo`] provenance root.
|
||||
pub fn create_with_source(
|
||||
path: &Path,
|
||||
title: &DiscTitle,
|
||||
source: SourceInfo,
|
||||
) -> io::Result<Self> {
|
||||
let file = File::create(path)?;
|
||||
|
||||
let video_track = title
|
||||
.streams
|
||||
.iter()
|
||||
.position(|s| matches!(s, DiscStream::Video(_)));
|
||||
let header = MapHeader::from_title(title, source);
|
||||
|
||||
Ok(Self {
|
||||
title: title.clone(),
|
||||
video_track,
|
||||
w: BufWriter::new(file),
|
||||
header,
|
||||
next_n: 0,
|
||||
header_written: false,
|
||||
finished: false,
|
||||
})
|
||||
}
|
||||
|
||||
/// Write the header row once, lazily.
|
||||
fn ensure_header(&mut self) -> io::Result<()> {
|
||||
if self.header_written {
|
||||
return Ok(());
|
||||
}
|
||||
write_fvi_header(&mut self.w, &self.header)?;
|
||||
self.header_written = true;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Stream for FviSink {
|
||||
fn read(&mut self) -> io::Result<Option<PesFrame>> {
|
||||
// Write-only sink, per the Stream trait contract.
|
||||
Err(crate::error::Error::StreamWriteOnly.into())
|
||||
}
|
||||
|
||||
fn write(&mut self, frame: &PesFrame) -> io::Result<()> {
|
||||
// Only index pictures of the primary video track. Audio / subtitle /
|
||||
// secondary-video frames carry no PictureInfo and are not part of the
|
||||
// video index.
|
||||
if Some(frame.track) != self.video_track {
|
||||
return Ok(());
|
||||
}
|
||||
self.ensure_header()?;
|
||||
let rec = PictureRecord {
|
||||
n: self.next_n,
|
||||
coding: frame.coding,
|
||||
keyframe: frame.keyframe,
|
||||
pts_ns: Some(frame.pts),
|
||||
source: frame.source,
|
||||
};
|
||||
write_fvi_record(&mut self.w, &rec)?;
|
||||
self.next_n += 1;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn finish(&mut self) -> io::Result<()> {
|
||||
if self.finished {
|
||||
return Ok(());
|
||||
}
|
||||
self.finished = true;
|
||||
// Emit the header even for a title that produced no records, so the
|
||||
// output is always a valid (if record-less) `.fvi` file. JSON Lines has
|
||||
// no footer.
|
||||
self.ensure_header()?;
|
||||
self.w.flush()
|
||||
}
|
||||
|
||||
fn info(&self) -> &DiscTitle {
|
||||
&self.title
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use crate::disc::{
|
||||
Codec, ColorSpace, ContentFormat, FrameRate, HdrFormat, Resolution, VideoStream,
|
||||
};
|
||||
use crate::mux::codec::PictureInfo;
|
||||
use crate::mux::codec::coding::{CodingType, Mpeg2Coding};
|
||||
use crate::pes::SourcePos;
|
||||
use std::path::PathBuf;
|
||||
|
||||
/// Tiny unique temp dir helper (avoids a dev-dependency on `tempfile`).
|
||||
fn tempdir() -> PathBuf {
|
||||
use std::sync::atomic::{AtomicU64, Ordering};
|
||||
static N: AtomicU64 = AtomicU64::new(0);
|
||||
let n = N.fetch_add(1, Ordering::Relaxed);
|
||||
let p = std::env::temp_dir().join(format!("fmkv_fvi_test_{}_{}", std::process::id(), n));
|
||||
std::fs::create_dir_all(&p).unwrap();
|
||||
p
|
||||
}
|
||||
|
||||
fn mpeg2_title() -> DiscTitle {
|
||||
let mut t = DiscTitle::empty();
|
||||
t.streams = vec![DiscStream::Video(VideoStream {
|
||||
pid: 0x1011,
|
||||
codec: Codec::Mpeg2,
|
||||
resolution: Resolution::R480i,
|
||||
frame_rate: FrameRate::F29_97,
|
||||
hdr: HdrFormat::Sdr,
|
||||
color_space: ColorSpace::Smpte170m,
|
||||
display_aspect: Some((16, 9)),
|
||||
secondary: false,
|
||||
label: String::new(),
|
||||
measured_cicp: None,
|
||||
})];
|
||||
t.content_format = ContentFormat::MpegPs;
|
||||
t
|
||||
}
|
||||
|
||||
fn hevc_title() -> DiscTitle {
|
||||
let mut t = DiscTitle::empty();
|
||||
t.streams = vec![DiscStream::Video(VideoStream {
|
||||
pid: 0x1011,
|
||||
codec: Codec::Hevc,
|
||||
resolution: Resolution::R2160p,
|
||||
frame_rate: FrameRate::F23_976,
|
||||
hdr: HdrFormat::Sdr,
|
||||
color_space: ColorSpace::Bt2020,
|
||||
display_aspect: None,
|
||||
secondary: false,
|
||||
label: String::new(),
|
||||
measured_cicp: None,
|
||||
})];
|
||||
t.content_format = ContentFormat::BdTs;
|
||||
t
|
||||
}
|
||||
|
||||
fn i_pic() -> PictureInfo {
|
||||
// Interlaced (tff) MPEG-2 I-frame picture.
|
||||
PictureInfo::mpeg2(
|
||||
CodingType::I,
|
||||
Mpeg2Coding {
|
||||
top_field_first: true,
|
||||
repeat_first_field: false,
|
||||
progressive_frame: false,
|
||||
progressive_sequence: false,
|
||||
frame_picture: true,
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
fn vframe(track: usize, coding: Option<PictureInfo>, source: Option<SourcePos>) -> PesFrame {
|
||||
let keyframe = coding.map(|c| c.keyframe()).unwrap_or(false);
|
||||
vframe_kf(track, coding, keyframe, source)
|
||||
}
|
||||
|
||||
fn vframe_kf(
|
||||
track: usize,
|
||||
coding: Option<PictureInfo>,
|
||||
keyframe: bool,
|
||||
source: Option<SourcePos>,
|
||||
) -> PesFrame {
|
||||
PesFrame {
|
||||
track,
|
||||
pts: 0,
|
||||
keyframe,
|
||||
data: vec![0u8; 4],
|
||||
duration_ns: None,
|
||||
source,
|
||||
coding,
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn sink_is_write_only() {
|
||||
let dir = tempdir();
|
||||
let mut sink =
|
||||
FviSink::create(&dir.join("x.fvi"), &mpeg2_title(), String::new(), 0).unwrap();
|
||||
let err = Stream::read(&mut sink).expect_err("read must error");
|
||||
assert_eq!(err.kind(), io::ErrorKind::Unsupported);
|
||||
let _ = std::fs::remove_dir_all(&dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn sink_writes_header_and_only_video_records() {
|
||||
let dir = tempdir();
|
||||
let path = dir.join("movie.fvi");
|
||||
let mut sink = FviSink::create(&path, &mpeg2_title(), "iso://m.iso".into(), 1).unwrap();
|
||||
// Video frame on track 0 → indexed.
|
||||
sink.write(&vframe(0, Some(i_pic()), Some(SourcePos::at_byte(2048))))
|
||||
.unwrap();
|
||||
// Audio frame on a non-video track → ignored.
|
||||
sink.write(&vframe(7, None, Some(SourcePos::at_byte(9999))))
|
||||
.unwrap();
|
||||
sink.finish().unwrap();
|
||||
|
||||
let text = std::fs::read_to_string(&path).unwrap();
|
||||
let lines: Vec<_> = text.lines().collect();
|
||||
assert_eq!(lines.len(), 2, "header + one video record only");
|
||||
|
||||
let header: serde_json::Value = serde_json::from_str(lines[0]).unwrap();
|
||||
assert_eq!(header["format"], "freemkv/video-index");
|
||||
assert_eq!(header["fvi_version"], 1);
|
||||
assert_eq!(header["stream"]["dar"], serde_json::json!([16, 9])); // anamorphic
|
||||
assert_eq!(header["stream"]["scan"], "interlaced"); // 480i
|
||||
assert_eq!(header["stream"]["codec"], "mpeg2video");
|
||||
assert_eq!(header["timescale"], 1_000_000_000u64);
|
||||
assert_eq!(header["source"]["title"], 1);
|
||||
assert_eq!(header["source"]["medium"], "file"); // default medium
|
||||
|
||||
let rec: serde_json::Value = serde_json::from_str(lines[1]).unwrap();
|
||||
assert_eq!(rec["n"], 0);
|
||||
assert_eq!(rec["type"], "I");
|
||||
assert_eq!(rec["key"], true); // I-picture (frame keyframe) → random-access
|
||||
// Interlaced tff frame → field_order "tff", progressive false, 2 fields.
|
||||
assert_eq!(rec["field_order"], "tff");
|
||||
assert_eq!(rec["progressive"], false);
|
||||
assert_eq!(rec["nb_fields"], 2);
|
||||
assert_eq!(rec["pts"], 0);
|
||||
assert_eq!(rec["src"]["sector"], 1);
|
||||
assert!(rec.get("dts").is_none(), "no DTS on a frame → omitted");
|
||||
assert!(
|
||||
rec.get("gop").is_none(),
|
||||
"no GOP-closure signal → gop omitted"
|
||||
);
|
||||
let _ = std::fs::remove_dir_all(&dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn empty_title_still_emits_valid_header() {
|
||||
let dir = tempdir();
|
||||
let path = dir.join("empty.fvi");
|
||||
let mut sink = FviSink::create(&path, &mpeg2_title(), String::new(), 0).unwrap();
|
||||
sink.finish().unwrap(); // no frames
|
||||
let text = std::fs::read_to_string(&path).unwrap();
|
||||
assert_eq!(text.lines().count(), 1, "header only");
|
||||
let header: serde_json::Value = serde_json::from_str(text.lines().next().unwrap()).unwrap();
|
||||
assert_eq!(header["format"], "freemkv/video-index");
|
||||
let _ = std::fs::remove_dir_all(&dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn extension_jsonl_is_still_json_lines() {
|
||||
// Output is always JSON Lines regardless of extension (one format today).
|
||||
let dir = tempdir();
|
||||
let path = dir.join("idx.jsonl");
|
||||
let mut sink = FviSink::create(&path, &mpeg2_title(), String::new(), 0).unwrap();
|
||||
sink.write(&vframe(0, Some(i_pic()), None)).unwrap();
|
||||
sink.finish().unwrap();
|
||||
let text = std::fs::read_to_string(&path).unwrap();
|
||||
// null src on a provenance-absent frame.
|
||||
let rec: serde_json::Value = serde_json::from_str(text.lines().nth(1).unwrap()).unwrap();
|
||||
assert_eq!(rec["src"], serde_json::Value::Null);
|
||||
let _ = std::fs::remove_dir_all(&dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn codec_agnostic_non_mpeg2_records() {
|
||||
// A non-MPEG2 stream (coding None) whose parser sets keyframe must still
|
||||
// produce USEFUL records: key/type from the frame keyframe flag, src +
|
||||
// pts populated, and NO mpeg2-only field members.
|
||||
let dir = tempdir();
|
||||
let path = dir.join("uhd.fvi");
|
||||
let mut sink = FviSink::create(&path, &hevc_title(), "disc://".into(), 0).unwrap();
|
||||
// HEVC IDR (keyframe) with real provenance.
|
||||
sink.write(&vframe_kf(0, None, true, Some(SourcePos::at_byte(12288))))
|
||||
.unwrap();
|
||||
// Non-key HEVC picture.
|
||||
sink.write(&vframe_kf(0, None, false, Some(SourcePos::at_byte(20480))))
|
||||
.unwrap();
|
||||
sink.finish().unwrap();
|
||||
|
||||
let text = std::fs::read_to_string(&path).unwrap();
|
||||
let recs: Vec<serde_json::Value> = text
|
||||
.lines()
|
||||
.skip(1)
|
||||
.map(|l| serde_json::from_str(l).unwrap())
|
||||
.collect();
|
||||
assert_eq!(recs[0]["key"], true, "HEVC IDR → key from frame.keyframe");
|
||||
assert_eq!(recs[0]["type"], "I");
|
||||
assert_eq!(recs[0]["src"]["sector"], 6); // 12288 / 2048
|
||||
assert!(
|
||||
recs[0].get("field_order").is_none() && recs[0].get("nb_fields").is_none(),
|
||||
"coding-absent frame omits field_order/progressive/nb_fields"
|
||||
);
|
||||
assert_eq!(recs[1]["key"], false);
|
||||
assert_eq!(recs[1]["type"], "P");
|
||||
assert_eq!(recs[1]["src"]["sector"], 10); // 20480 / 2048
|
||||
let _ = std::fs::remove_dir_all(&dir);
|
||||
}
|
||||
}
|
||||
@@ -52,6 +52,10 @@ pub(crate) mod demux_thread;
|
||||
// network/stdio implementations that no external caller had business
|
||||
// reaching for.
|
||||
pub(crate) mod ebml;
|
||||
/// `fvi://` sink — freemkv's native per-picture video index (see
|
||||
/// `docs/FVI_FORMAT.md`). A write-only PES sink that emits one JSON-Lines record
|
||||
/// per coded picture; reuses the pure-data [`videomap`] model.
|
||||
pub(crate) mod fvi_sink;
|
||||
pub(crate) mod m2ts;
|
||||
/// FMKV metadata header (used by `M2tsStream` / `NetworkStream` / `StdioStream`
|
||||
/// to round-trip codec_privates that don't fit inside the underlying format).
|
||||
@@ -93,9 +97,18 @@ pub(crate) mod stdio;
|
||||
pub(crate) mod timeline;
|
||||
pub(crate) mod ts;
|
||||
pub(crate) mod tsmux;
|
||||
/// Reusable, pure-data per-picture video index (the FVI logical model) consumed
|
||||
/// by the [`fvi_sink`]. Serialization-independent. `#[allow(dead_code)]`: the
|
||||
/// `VideoMap` accumulator is a standalone primitive staged for the side-channel
|
||||
/// (mux-while-indexing) reuse described in its module doc; the `fvi://` sink
|
||||
/// today builds `PictureRecord`s directly, so the accumulator is covered only by
|
||||
/// its own unit tests until that wiring lands.
|
||||
#[allow(dead_code)]
|
||||
pub(crate) mod videomap;
|
||||
|
||||
pub use demux_sink::{ChaptersFmt, DelayMode, DemuxOptions, DemuxSink, Naming};
|
||||
pub use disc::DiscStream;
|
||||
pub use fvi_sink::FviSink;
|
||||
pub use m2ts::M2tsStream;
|
||||
pub use mkvstream::MkvStream;
|
||||
pub use network::NetworkStream;
|
||||
|
||||
@@ -208,7 +208,11 @@ impl PipelinedPesStream {
|
||||
continue;
|
||||
};
|
||||
let pes = PesPacket {
|
||||
source: None,
|
||||
// Carry the PS demuxer's byte-exact source stamp through to the
|
||||
// codec parser, exactly as the TS path does — provenance must
|
||||
// survive the PsPacket → PesPacket seam so the frame's `source`
|
||||
// reaches the mux/index (FVI `src`), never reconstructed.
|
||||
source: ps.source,
|
||||
pid,
|
||||
pts: ps.pts.map(|p| p as i64),
|
||||
dts: ps.dts.map(|d| d as i64),
|
||||
|
||||
+29
-1
@@ -12,6 +12,7 @@
|
||||
//! | network:// | Yes (listen) | Yes (connect) | host:port (required) |
|
||||
//! | stdio:// | Yes (stdin) | Yes (stdout) | empty |
|
||||
//! | null:// | -- | Yes | empty |
|
||||
//! | fvi:// | -- | Yes | file path (required) — per-picture video index |
|
||||
//!
|
||||
//! Bare paths without a scheme are rejected.
|
||||
//! For disc→ISO (raw sector copy), use `Disc::copy()` instead.
|
||||
@@ -60,6 +61,10 @@ pub enum StreamUrl {
|
||||
/// chapters + delay metadata). Like `dir://` it targets a directory; the
|
||||
/// CLI constructs the `DemuxSink` with full options before the mux loop.
|
||||
Demux { dir: PathBuf },
|
||||
/// freemkv native per-picture video index (`fvi://`). A write-only PES sink
|
||||
/// that emits one JSON-Lines record per coded picture of the title's primary
|
||||
/// video track to a `.fvi` file (normative spec `docs/FVI_FORMAT.md`).
|
||||
Fvi { path: PathBuf },
|
||||
/// Unrecognized URL.
|
||||
Unknown { raw: String },
|
||||
}
|
||||
@@ -77,6 +82,7 @@ impl StreamUrl {
|
||||
StreamUrl::Dir { .. } => "dir",
|
||||
StreamUrl::Null => "null",
|
||||
StreamUrl::Demux { .. } => "demux",
|
||||
StreamUrl::Fvi { .. } => "fvi",
|
||||
StreamUrl::Unknown { .. } => "unknown",
|
||||
}
|
||||
}
|
||||
@@ -90,7 +96,8 @@ impl StreamUrl {
|
||||
| StreamUrl::Mkv { path }
|
||||
| StreamUrl::Iso { path }
|
||||
| StreamUrl::Dir { path }
|
||||
| StreamUrl::Demux { dir: path } => path.to_str().unwrap_or(""),
|
||||
| StreamUrl::Demux { dir: path }
|
||||
| StreamUrl::Fvi { path } => path.to_str().unwrap_or(""),
|
||||
StreamUrl::Network { addr } => addr,
|
||||
StreamUrl::Stdio | StreamUrl::Null => "",
|
||||
StreamUrl::Unknown { raw } => raw,
|
||||
@@ -163,6 +170,11 @@ pub fn parse_url(url: &str) -> StreamUrl {
|
||||
dir: PathBuf::from(rest),
|
||||
};
|
||||
}
|
||||
if let Some(rest) = url.strip_prefix("fvi://") {
|
||||
return StreamUrl::Fvi {
|
||||
path: PathBuf::from(rest),
|
||||
};
|
||||
}
|
||||
StreamUrl::Unknown {
|
||||
raw: url.to_string(),
|
||||
}
|
||||
@@ -403,6 +415,8 @@ pub fn input(url: &str, opts: &InputOptions) -> io::Result<Box<dyn crate::pes::S
|
||||
StreamUrl::Null => Err(crate::error::Error::StreamWriteOnly.into()),
|
||||
// `demux://` is an output-only sink (per-track ES files); never a source.
|
||||
StreamUrl::Demux { .. } => Err(crate::error::Error::StreamWriteOnly.into()),
|
||||
// `fvi://` is an output-only sink (per-picture video index); never a source.
|
||||
StreamUrl::Fvi { .. } => Err(crate::error::Error::StreamWriteOnly.into()),
|
||||
StreamUrl::Unknown { ref raw } => {
|
||||
Err(crate::error::Error::StreamUrlInvalid { url: raw.clone() }.into())
|
||||
}
|
||||
@@ -479,6 +493,20 @@ pub fn output(
|
||||
dir, title, &opts,
|
||||
)?))
|
||||
}
|
||||
// `fvi://` writes the per-picture video index (`docs/FVI_FORMAT.md`).
|
||||
// The bare `output()` arm records the resolver path as the provenance
|
||||
// `source.path` and defaults the title index to 0 (the resolver carries
|
||||
// no title-index context — the CLI follow-up passes the real medium /
|
||||
// title via `FviSink::create_with_source`).
|
||||
StreamUrl::Fvi { ref path } => {
|
||||
validate_file_path(path, "fvi")?;
|
||||
Ok(Box::new(super::fvi_sink::FviSink::create(
|
||||
path,
|
||||
title,
|
||||
path.to_string_lossy().into_owned(),
|
||||
0,
|
||||
)?))
|
||||
}
|
||||
StreamUrl::Unknown { ref raw } => {
|
||||
Err(crate::error::Error::StreamUrlInvalid { url: raw.clone() }.into())
|
||||
}
|
||||
|
||||
@@ -0,0 +1,596 @@
|
||||
//! `VideoMap` — freemkv's reusable, pure-data per-picture video index ("the
|
||||
//! FVI object").
|
||||
//!
|
||||
//! A [`VideoMap`] is a header (per-title video facts + provenance root) plus an
|
||||
//! ordered list of per-picture records. Each record carries the per-picture
|
||||
//! coding truth ([`PictureInfo`], off `frame.coding`) and the byte-exact source
|
||||
//! provenance ([`SourcePos`], off `frame.source`) that the highway already
|
||||
//! stamps — this module never re-parses the elementary stream.
|
||||
//!
|
||||
//! It is a STANDALONE PRIMITIVE, deliberately decoupled from any one sink:
|
||||
//! - The `fvi://` sink ([`crate::mux::fvi_sink`]) owns a `VideoMap`, appends
|
||||
//! each video [`PesFrame`], and serializes it.
|
||||
//! - The same `VideoMap` can later be populated as a side-channel during ANY
|
||||
//! mux (e.g. `iso → mkv` while ALSO emitting a `.fvi` sidecar), and reused
|
||||
//! for seek-indexing, recovery loss-mapping, and diagnostics.
|
||||
//!
|
||||
//! `VideoMap` is PURE DATA — it knows no output format. The on-disk shape is the
|
||||
//! freemkv FVI format, whose normative spec is `docs/FVI_FORMAT.md` (ships
|
||||
//! publicly with libfreemkv); the `fvi://` sink does the serialization. A
|
||||
//! different output format would be a DIFFERENT sink reusing this same model,
|
||||
//! not a pluggable encoder here.
|
||||
|
||||
use crate::disc::{ColorSpace, DiscTitle, FrameRate, Stream as DiscStream, VideoStream};
|
||||
use crate::mux::codec::PictureInfo;
|
||||
use crate::mux::codec::coding::{CodingType, FieldOrder};
|
||||
use crate::pes::{PesFrame, SourcePos};
|
||||
|
||||
// ── Format constants (cite docs/FVI_FORMAT.md) ───────────────────────────────
|
||||
|
||||
/// Value of the header `"format"` member — the FVI document signature
|
||||
/// (`docs/FVI_FORMAT.md` §6). Identifies a stream as a freemkv video index.
|
||||
pub const FVI_FORMAT: &str = "freemkv/video-index";
|
||||
|
||||
/// Value of the header `"fvi_version"` member — the FVI document format version
|
||||
/// (`docs/FVI_FORMAT.md` §6, §11). This spec defines `1`.
|
||||
pub const FVI_VERSION: u32 = 1;
|
||||
|
||||
/// Producing tool tag for the header `"generator"` member
|
||||
/// (`docs/FVI_FORMAT.md` §6).
|
||||
pub const FVI_GENERATOR: &str = concat!("freemkv/", env!("CARGO_PKG_VERSION"));
|
||||
|
||||
/// Header `"timescale"` for all `pts`/`dts` ticks (`docs/FVI_FORMAT.md` §10).
|
||||
/// The highway carries presentation timestamps in nanoseconds, so the timescale
|
||||
/// is `1_000_000_000` ticks per second.
|
||||
pub const FVI_TIMESCALE: u64 = 1_000_000_000;
|
||||
|
||||
/// Bytes per `src.sector` unit (`docs/FVI_FORMAT.md` §6.2, §9). The highway's
|
||||
/// [`SourcePos`] counts 2048-byte logical sectors.
|
||||
pub const FVI_SECTOR_SIZE: u32 = 2048;
|
||||
|
||||
// ── Logical model (serialization-independent) ────────────────────────────────
|
||||
|
||||
/// Source-stream colour description (CICP code points), header-level
|
||||
/// (`docs/FVI_FORMAT.md` §6.1 `colour`).
|
||||
///
|
||||
/// Each field is the ITU-T H.273 / ISO 23091-2 code point for the title's
|
||||
/// primary video, derived from the disc's [`ColorSpace`]. `full_range` is the
|
||||
/// video-range flag (`false` = limited / TV range, the disc norm).
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub struct Colour {
|
||||
pub primaries: u8,
|
||||
pub transfer: u8,
|
||||
pub matrix: u8,
|
||||
pub full_range: bool,
|
||||
}
|
||||
|
||||
impl Colour {
|
||||
/// Map the title's [`ColorSpace`] to CICP code points. Unknown colorimetry
|
||||
/// maps to code point 2 ("unspecified"), the CICP convention.
|
||||
pub fn from_color_space(cs: ColorSpace) -> Self {
|
||||
// (primaries, transfer, matrix) per ITU-T H.273.
|
||||
let (p, t, m) = match cs {
|
||||
ColorSpace::Bt709 => (1, 1, 1),
|
||||
ColorSpace::Bt2020 => (9, 14, 9), // BT.2020 NCL
|
||||
ColorSpace::Bt470bg => (5, 5, 5),
|
||||
ColorSpace::Smpte170m => (6, 6, 6),
|
||||
ColorSpace::Unknown => (2, 2, 2), // unspecified
|
||||
};
|
||||
Self {
|
||||
primaries: p,
|
||||
transfer: t,
|
||||
matrix: m,
|
||||
// Disc video is limited-range; full-range is not signalled at this
|
||||
// layer, so report the disc norm.
|
||||
full_range: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Scan type for the header `stream.scan` member (`docs/FVI_FORMAT.md` §6.1).
|
||||
/// `"mbaff"` is reachable only for codecs that signal it; MPEG-2 / disc video
|
||||
/// resolves to `progressive` / `interlaced`.
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub enum Scan {
|
||||
Progressive,
|
||||
Interlaced,
|
||||
}
|
||||
|
||||
impl Scan {
|
||||
pub fn as_str(self) -> &'static str {
|
||||
match self {
|
||||
Scan::Progressive => "progressive",
|
||||
Scan::Interlaced => "interlaced",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Source `medium` for the header `source.medium` member
|
||||
/// (`docs/FVI_FORMAT.md` §6.2). Describes the physical/logical input the index
|
||||
/// was built from. The bare resolver path has no input-URL context, so it
|
||||
/// defaults to [`Medium::File`]; the CLI follow-up passes the real medium.
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)]
|
||||
pub enum Medium {
|
||||
Disc,
|
||||
Iso,
|
||||
#[default]
|
||||
File,
|
||||
Stream,
|
||||
}
|
||||
|
||||
impl Medium {
|
||||
pub fn as_str(self) -> &'static str {
|
||||
match self {
|
||||
Medium::Disc => "disc",
|
||||
Medium::Iso => "iso",
|
||||
Medium::File => "file",
|
||||
Medium::Stream => "stream",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Provenance root for the header (`docs/FVI_FORMAT.md` §6.2 `source`).
|
||||
#[derive(Clone, Debug, PartialEq, Eq, Default)]
|
||||
pub struct SourceInfo {
|
||||
/// Input medium.
|
||||
pub medium: Medium,
|
||||
/// Source path / label (may be empty).
|
||||
pub path: String,
|
||||
/// 0-based title / program number the index was built from.
|
||||
pub title: usize,
|
||||
/// Playlist / PGC identifier, if known (empty → omitted).
|
||||
pub playlist: String,
|
||||
/// Disc volume identifier, if read (empty → omitted).
|
||||
pub volume_id: String,
|
||||
}
|
||||
|
||||
/// Per-title video facts for the header `stream` object
|
||||
/// (`docs/FVI_FORMAT.md` §6.1).
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct StreamInfo {
|
||||
/// Registered codec id (Appendix B), e.g. `"mpeg2video"`, `"hevc"`.
|
||||
pub codec: &'static str,
|
||||
/// Coded luma dimensions in pixels.
|
||||
pub width: u32,
|
||||
pub height: u32,
|
||||
/// Display aspect ratio as `(num, den)`.
|
||||
pub dar: (u32, u32),
|
||||
/// Nominal frame rate as an exact rational `(num, den)`.
|
||||
pub frame_rate: (u32, u32),
|
||||
/// Scan type.
|
||||
pub scan: Scan,
|
||||
/// Source colour (CICP code points).
|
||||
pub colour: Colour,
|
||||
}
|
||||
|
||||
/// The header row: per-title facts (`docs/FVI_FORMAT.md` §6).
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct MapHeader {
|
||||
/// The indexed elementary stream.
|
||||
pub stream: StreamInfo,
|
||||
/// Provenance root.
|
||||
pub source: SourceInfo,
|
||||
/// Total pictures if known at header time; `None` when streaming (omitted).
|
||||
pub picture_count: Option<u64>,
|
||||
}
|
||||
|
||||
/// Map the disc's `Codec` to a registered FVI codec id
|
||||
/// (`docs/FVI_FORMAT.md` Appendix B). The disc-info `Codec::id` strings differ
|
||||
/// (`"mpeg2"`/`"mpeg1"`); FVI uses the bitstream names.
|
||||
fn fvi_codec_id(codec: crate::disc::Codec) -> &'static str {
|
||||
use crate::disc::Codec;
|
||||
match codec {
|
||||
Codec::Mpeg2 => "mpeg2video",
|
||||
Codec::Mpeg1 => "mpeg1video",
|
||||
Codec::H264 => "h264",
|
||||
Codec::Hevc => "hevc",
|
||||
Codec::Vc1 => "vc1",
|
||||
// Not in the registry yet; carry the disc-info id so the field is still
|
||||
// a stable, machine-readable token (readers ignore unknown codecs).
|
||||
other => other.id(),
|
||||
}
|
||||
}
|
||||
|
||||
impl MapHeader {
|
||||
/// Assemble the header from the title's primary video stream + the supplied
|
||||
/// provenance (`source`). Without a video stream there is nothing to index;
|
||||
/// this returns neutral stream defaults so the header still serializes (the
|
||||
/// record stream will be empty) — a malformed / audio-only title does not
|
||||
/// panic.
|
||||
pub fn from_title(title: &DiscTitle, source: SourceInfo) -> Self {
|
||||
let video: Option<&VideoStream> = title.streams.iter().find_map(|s| match s {
|
||||
DiscStream::Video(v) => Some(v),
|
||||
_ => None,
|
||||
});
|
||||
|
||||
let stream = match video {
|
||||
Some(v) => {
|
||||
let (width, height) = v.resolution.pixels();
|
||||
StreamInfo {
|
||||
codec: fvi_codec_id(v.codec),
|
||||
width,
|
||||
height,
|
||||
dar: display_aspect_ratio(v, width, height),
|
||||
frame_rate: v.frame_rate.as_fraction(),
|
||||
scan: if v.resolution.is_interlaced() {
|
||||
Scan::Interlaced
|
||||
} else {
|
||||
Scan::Progressive
|
||||
},
|
||||
colour: Colour::from_color_space(v.color_space),
|
||||
}
|
||||
}
|
||||
None => StreamInfo {
|
||||
codec: "unknown",
|
||||
width: 0,
|
||||
height: 0,
|
||||
dar: (0, 1),
|
||||
frame_rate: (0, 1),
|
||||
scan: Scan::Progressive,
|
||||
colour: Colour::from_color_space(ColorSpace::Unknown),
|
||||
},
|
||||
};
|
||||
|
||||
Self {
|
||||
stream,
|
||||
source,
|
||||
picture_count: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Display aspect ratio as `(num, den)`. Anamorphic titles carry an explicit
|
||||
/// `display_aspect`; square-pixel titles use the coded pixel dimensions.
|
||||
fn display_aspect_ratio(v: &VideoStream, w: u32, h: u32) -> (u32, u32) {
|
||||
match v.display_aspect {
|
||||
Some((a, b)) if b != 0 => (a, b),
|
||||
_ if h != 0 => (w, h),
|
||||
_ => (0, 1),
|
||||
}
|
||||
}
|
||||
|
||||
/// The title's nominal frame rate as a fraction — the single mapping site reused
|
||||
/// by the header builder. (Retained as the canonical accessor.)
|
||||
#[allow(dead_code)]
|
||||
fn frame_rate_fraction(fr: FrameRate) -> (u32, u32) {
|
||||
fr.as_fraction()
|
||||
}
|
||||
|
||||
/// One per-picture index record, distilled from a video [`PesFrame`]
|
||||
/// (`docs/FVI_FORMAT.md` §7).
|
||||
///
|
||||
/// `coding` is the codec-agnostic per-picture truth ([`PictureInfo`], set by
|
||||
/// EVERY video parser that decodes coding — MPEG-2 fully, H.264/HEVC/VC-1 as
|
||||
/// coding-type-only); `source` is the byte-exact provenance. Both are optional:
|
||||
/// an audio / synthetic / provenance-absent frame yields a record whose
|
||||
/// coding-derived members are omitted and whose `src` is the spec-defined null.
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub struct PictureRecord {
|
||||
/// Coded-order index, 0-based, contiguous.
|
||||
pub n: u64,
|
||||
/// Codec-agnostic per-picture coding info, if present. Set by every video
|
||||
/// parser that decodes coding (MPEG-2 fully; H.264/HEVC/VC-1 carry
|
||||
/// coding-type only); `None` for audio/subtitle/synthetic frames.
|
||||
pub coding: Option<PictureInfo>,
|
||||
/// Random-access / keyframe flag carried for EVERY codec on the frame
|
||||
/// (`PesFrame::keyframe`): IDR/IRAP for HEVC/H.264, the I-picture flag for
|
||||
/// MPEG-2/VC-1. Drives the codec-agnostic `key` member.
|
||||
pub keyframe: bool,
|
||||
/// Presentation timestamp in `timescale` ticks (nanoseconds).
|
||||
pub pts_ns: Option<i64>,
|
||||
/// Byte-exact source provenance, if present.
|
||||
pub source: Option<SourcePos>,
|
||||
}
|
||||
|
||||
/// Record `type` label (`docs/FVI_FORMAT.md` §7), codec-agnostic.
|
||||
///
|
||||
/// When `coding` is present (any video codec — every parser now fills it), the
|
||||
/// agnostic coding type is reported from [`PictureInfo::coding_type`]:
|
||||
/// `CodingType::{I,P,B}` → `"I"`/`"P"`/`"B"`. When `coding` is absent
|
||||
/// (audio / synthetic frames), the type degrades to the I-vs-non-I distinction
|
||||
/// the frame's keyframe flag still carries: `keyframe` → "I", otherwise "P".
|
||||
pub fn type_label(coding: Option<PictureInfo>, keyframe: bool) -> &'static str {
|
||||
match coding {
|
||||
Some(c) => match c.coding_type() {
|
||||
CodingType::I => "I",
|
||||
CodingType::P => "P",
|
||||
CodingType::B => "B",
|
||||
},
|
||||
// No PictureInfo: the highway still gives a keyframe flag.
|
||||
None => {
|
||||
if keyframe {
|
||||
"I"
|
||||
} else {
|
||||
"P"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Field-display-order label for the optional `field_order` member
|
||||
/// (`docs/FVI_FORMAT.md` §7.1, Matroska element 0x9D), or `None` when the codec
|
||||
/// did not measure it (signal absent / coding-type-only codec). `None` is an
|
||||
/// HONEST absence — the writer OMITS the member rather than guessing a default.
|
||||
pub fn field_order_label(coding: Option<PictureInfo>) -> Option<&'static str> {
|
||||
match coding?.field_order()? {
|
||||
FieldOrder::Tff => Some("tff"),
|
||||
FieldOrder::Bff => Some("bff"),
|
||||
FieldOrder::Progressive => Some("progressive"),
|
||||
}
|
||||
}
|
||||
|
||||
/// Whether a picture is a random-access point for the `key` member
|
||||
/// (`docs/FVI_FORMAT.md` §7), codec-agnostic.
|
||||
///
|
||||
/// For EVERY codec the frame's own `keyframe` flag IS the random-access signal:
|
||||
/// IDR/IRAP for HEVC/H.264, the I-picture flag for MPEG-2/VC-1 — authored by
|
||||
/// each codec's parser through the highway. The codec-agnostic [`PictureInfo`]
|
||||
/// carries NO GOP-closure (no `closed_gop`/`gop_start`), so we DO NOT claim the
|
||||
/// stricter open-GOP clean-RAP precision; `key` is the parser-flagged
|
||||
/// decode-restart point (an intra picture). This is the honest limitation
|
||||
/// documented in `docs/FVI_FORMAT.md`.
|
||||
pub fn is_random_access(coding: Option<PictureInfo>, keyframe: bool) -> bool {
|
||||
// For a video frame `coding.keyframe()` == an intra (I) picture, which is
|
||||
// exactly the highway's `frame.keyframe`; use the frame flag uniformly.
|
||||
let _ = coding;
|
||||
keyframe
|
||||
}
|
||||
|
||||
/// The reusable video index: a header plus an ordered list of per-picture
|
||||
/// records. PURE DATA — serialization lives in the sink that consumes it.
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct VideoMap {
|
||||
header: MapHeader,
|
||||
records: Vec<PictureRecord>,
|
||||
}
|
||||
|
||||
impl VideoMap {
|
||||
/// Create an empty map with the header assembled from `title`'s primary
|
||||
/// video stream + the supplied provenance.
|
||||
pub fn new(title: &DiscTitle, source: SourceInfo) -> Self {
|
||||
Self {
|
||||
header: MapHeader::from_title(title, source),
|
||||
records: Vec::new(),
|
||||
}
|
||||
}
|
||||
|
||||
/// The header row.
|
||||
pub fn header(&self) -> &MapHeader {
|
||||
&self.header
|
||||
}
|
||||
|
||||
/// The per-picture records, in coded/arrival order.
|
||||
pub fn records(&self) -> &[PictureRecord] {
|
||||
&self.records
|
||||
}
|
||||
|
||||
/// Append one video frame as the next picture record, pulling the coding
|
||||
/// truth from `frame.coding` and the provenance from `frame.source`. The
|
||||
/// record index `n` is the current record count (coded order). Returns the
|
||||
/// record just appended.
|
||||
pub fn append_frame(&mut self, frame: &PesFrame) -> &PictureRecord {
|
||||
let rec = PictureRecord {
|
||||
n: self.records.len() as u64,
|
||||
coding: frame.coding,
|
||||
keyframe: frame.keyframe,
|
||||
// pts is carried as ns; the highway always sets a presentation time
|
||||
// (0 at start), so emit it. A future source genuinely lacking a PTS
|
||||
// would set None and the writer omits the member.
|
||||
pts_ns: Some(frame.pts),
|
||||
source: frame.source,
|
||||
};
|
||||
self.records.push(rec);
|
||||
self.records.last().expect("just pushed")
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use crate::disc::{
|
||||
Codec, ColorSpace, ContentFormat, FrameRate, HdrFormat, Resolution, VideoStream,
|
||||
};
|
||||
|
||||
fn video_title(codec: Codec, res: Resolution, fr: FrameRate, cs: ColorSpace) -> DiscTitle {
|
||||
let mut t = DiscTitle::empty();
|
||||
t.streams = vec![DiscStream::Video(VideoStream {
|
||||
pid: 0x1011,
|
||||
codec,
|
||||
resolution: res,
|
||||
frame_rate: fr,
|
||||
hdr: HdrFormat::Sdr,
|
||||
color_space: cs,
|
||||
display_aspect: None,
|
||||
secondary: false,
|
||||
label: String::new(),
|
||||
measured_cicp: None,
|
||||
})];
|
||||
t.content_format = ContentFormat::BdTs;
|
||||
t
|
||||
}
|
||||
|
||||
fn src(medium: Medium, path: &str, title: usize) -> SourceInfo {
|
||||
SourceInfo {
|
||||
medium,
|
||||
path: path.to_string(),
|
||||
title,
|
||||
..Default::default()
|
||||
}
|
||||
}
|
||||
|
||||
fn vframe(coding: Option<PictureInfo>, pts: i64, source: Option<SourcePos>) -> PesFrame {
|
||||
let keyframe = coding.map(|c| c.keyframe()).unwrap_or(false);
|
||||
PesFrame {
|
||||
track: 0,
|
||||
pts,
|
||||
keyframe,
|
||||
data: vec![0u8; 4],
|
||||
duration_ns: None,
|
||||
source,
|
||||
coding,
|
||||
}
|
||||
}
|
||||
|
||||
use crate::mux::codec::coding::Mpeg2Coding;
|
||||
|
||||
/// An interlaced (tff) MPEG-2 frame picture of the given coding type.
|
||||
fn mpeg2_pic(ct: CodingType) -> PictureInfo {
|
||||
PictureInfo::mpeg2(
|
||||
ct,
|
||||
Mpeg2Coding {
|
||||
top_field_first: true,
|
||||
repeat_first_field: false,
|
||||
progressive_frame: false,
|
||||
progressive_sequence: false,
|
||||
frame_picture: true,
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
/// A canonical I-picture fixture (interlaced frame).
|
||||
fn i_picture() -> PictureInfo {
|
||||
mpeg2_pic(CodingType::I)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn colour_maps_cicp_code_points() {
|
||||
assert_eq!(
|
||||
Colour::from_color_space(ColorSpace::Bt709),
|
||||
Colour {
|
||||
primaries: 1,
|
||||
transfer: 1,
|
||||
matrix: 1,
|
||||
full_range: false
|
||||
}
|
||||
);
|
||||
assert_eq!(
|
||||
Colour::from_color_space(ColorSpace::Bt2020),
|
||||
Colour {
|
||||
primaries: 9,
|
||||
transfer: 14,
|
||||
matrix: 9,
|
||||
full_range: false
|
||||
}
|
||||
);
|
||||
assert_eq!(Colour::from_color_space(ColorSpace::Unknown).primaries, 2);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn type_label_full_and_codec_agnostic_fallback() {
|
||||
// coding present: full I/P/B from the agnostic coding_type().
|
||||
let mk = |ct| Some(mpeg2_pic(ct));
|
||||
assert_eq!(type_label(mk(CodingType::I), false), "I");
|
||||
assert_eq!(type_label(mk(CodingType::P), false), "P");
|
||||
assert_eq!(type_label(mk(CodingType::B), false), "B");
|
||||
// coding-type-only codec still reports its type.
|
||||
assert_eq!(
|
||||
type_label(Some(PictureInfo::coding_type_only(CodingType::B)), false),
|
||||
"B"
|
||||
);
|
||||
// No coding (audio/synthetic): degrade to I-vs-non-I from keyframe.
|
||||
assert_eq!(type_label(None, true), "I");
|
||||
assert_eq!(type_label(None, false), "P");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn field_order_label_omitted_when_unmeasured() {
|
||||
// MPEG-2 interlaced tff frame → "tff".
|
||||
assert_eq!(field_order_label(Some(i_picture())), Some("tff"));
|
||||
// Progressive frame → "progressive".
|
||||
let prog = PictureInfo::mpeg2(
|
||||
CodingType::I,
|
||||
Mpeg2Coding {
|
||||
top_field_first: true,
|
||||
repeat_first_field: false,
|
||||
progressive_frame: true,
|
||||
progressive_sequence: false,
|
||||
frame_picture: true,
|
||||
},
|
||||
);
|
||||
assert_eq!(field_order_label(Some(prog)), Some("progressive"));
|
||||
// Coding-type-only codec did not measure field order → None (omitted).
|
||||
assert_eq!(
|
||||
field_order_label(Some(PictureInfo::coding_type_only(CodingType::I))),
|
||||
None
|
||||
);
|
||||
// No coding at all → None.
|
||||
assert_eq!(field_order_label(None), None);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn is_random_access_codec_agnostic() {
|
||||
// For EVERY codec the frame keyframe flag IS the random-access signal.
|
||||
assert!(is_random_access(Some(i_picture()), true));
|
||||
// An I-picture whose frame flag is clear is NOT promoted — `key` follows
|
||||
// the frame's keyframe flag, never fabricated GOP-closure.
|
||||
assert!(!is_random_access(Some(i_picture()), false));
|
||||
// P/B with the flag clear → never.
|
||||
assert!(!is_random_access(Some(mpeg2_pic(CodingType::P)), false));
|
||||
// No coding: the frame keyframe flag IS the RAP signal.
|
||||
assert!(is_random_access(None, true));
|
||||
assert!(!is_random_access(None, false));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fvi_codec_ids_use_bitstream_names() {
|
||||
assert_eq!(fvi_codec_id(Codec::Mpeg2), "mpeg2video");
|
||||
assert_eq!(fvi_codec_id(Codec::Mpeg1), "mpeg1video");
|
||||
assert_eq!(fvi_codec_id(Codec::H264), "h264");
|
||||
assert_eq!(fvi_codec_id(Codec::Hevc), "hevc");
|
||||
assert_eq!(fvi_codec_id(Codec::Vc1), "vc1");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn header_from_title_pulls_video_facts() {
|
||||
let t = video_title(
|
||||
Codec::Mpeg2,
|
||||
Resolution::R576i,
|
||||
FrameRate::F25,
|
||||
ColorSpace::Bt470bg,
|
||||
);
|
||||
let h = MapHeader::from_title(&t, src(Medium::Iso, "iso://x.iso", 2));
|
||||
assert_eq!(h.stream.codec, "mpeg2video");
|
||||
assert_eq!((h.stream.width, h.stream.height), (720, 576));
|
||||
assert_eq!(h.stream.dar, (720, 576)); // square-pixel fallback
|
||||
assert_eq!(h.stream.frame_rate, (25, 1));
|
||||
assert_eq!(h.stream.scan, Scan::Interlaced);
|
||||
assert_eq!(h.stream.colour.matrix, 5);
|
||||
assert_eq!(h.source.path, "iso://x.iso");
|
||||
assert_eq!(h.source.title, 2);
|
||||
assert_eq!(h.source.medium, Medium::Iso);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn header_audio_only_title_is_neutral_not_panic() {
|
||||
let t = DiscTitle::empty();
|
||||
let h = MapHeader::from_title(&t, SourceInfo::default());
|
||||
assert_eq!(h.stream.codec, "unknown");
|
||||
assert_eq!((h.stream.width, h.stream.height), (0, 0));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn append_frame_numbers_records_in_order() {
|
||||
let t = video_title(
|
||||
Codec::Mpeg2,
|
||||
Resolution::R1080p,
|
||||
FrameRate::F23_976,
|
||||
ColorSpace::Bt709,
|
||||
);
|
||||
let mut map = VideoMap::new(&t, SourceInfo::default());
|
||||
map.append_frame(&vframe(
|
||||
Some(i_picture()),
|
||||
0,
|
||||
Some(SourcePos::at_byte(2048)),
|
||||
));
|
||||
map.append_frame(&vframe(
|
||||
Some(mpeg2_pic(CodingType::B)),
|
||||
42,
|
||||
Some(SourcePos::at_byte(4096)),
|
||||
));
|
||||
assert_eq!(map.records().len(), 2);
|
||||
assert_eq!(map.records()[0].n, 0);
|
||||
assert_eq!(map.records()[1].n, 1);
|
||||
assert_eq!(map.records()[0].source.unwrap().sector, 1);
|
||||
assert_eq!(map.records()[1].pts_ns, Some(42));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user