985830ea8e
Honor the client's requested resolution by rendering a compositor virtual output at
exactly that size — native, headless, no scaling. There is no cross-compositor Wayland
protocol for this, so it's a per-compositor backend behind the (previously stubbed)
VirtualDisplay trait.
- vdisplay.rs: VirtualDisplay::create(mode) now returns a live VirtualOutput
{ node_id, remote_fd: Option<OwnedFd>, keepalive } with RAII teardown (drop releases
the output) instead of an inert OutputHandle + explicit destroy. Add compositor
detect() (LUMEN_COMPOSITOR / XDG_CURRENT_DESKTOP).
- vdisplay/kwin.rs: the KWin backend — the zkde_screencast_unstable_v1 stream_virtual_output
client (vendored protocol XML + wayland-scanner codegen). Creates a WxH output, returns
its PipeWire node (default daemon, remote_fd=None); a keepalive thread holds the Wayland
connection until dropped. (Moved here from capture/kwin.rs — it's a vdisplay backend, not
capture.)
- capture: generalize the PipeWire consumer to Option<OwnedFd> (portal remote vs. default
daemon) and add capture_virtual_output(vout), compositor-agnostic, owning the keepalive.
- gamestream/stream.rs: LUMEN_VIDEO_SOURCE=virtual creates a virtual display sized to the
client's cfg and captures it (self-contained, not pooled — a reconnect at a new
resolution gets a fresh output).
- m0: --source kwin-virtual goes through the trait.
Verified end-to-end against the running headless KWin: the request reaches the compositor
and is handled cleanly. Native creation needs a backend implementing createVirtualOutput —
the DRM backend, or the VirtualBackend since KWin 6.5.6; on this box's --virtual 6.4.5 it
returns "Could not find output" (expected; validates after the KWin upgrade). wlroots/Mutter
backends are the next ones to land on the same seam.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
265 lines
8.9 KiB
Rust
265 lines
8.9 KiB
Rust
//! M0 — the pipeline spike (plan §8): capture → NVENC encode → playable file, with the
|
|
//! encoded access units also fed through a `lumen_core` host→client `Session` over an
|
|
//! in-process loopback to prove the core's FEC + packetize + reassemble path on real
|
|
//! encoder output.
|
|
//!
|
|
//! This is the spike runner, not the M2 hot path: it drives the stages on one thread (the
|
|
//! per-stage-thread pipeline with bounded channels is [`crate::pipeline`]). Source is
|
|
//! either a synthetic BGRx test pattern (no capture session needed) or the live xdg
|
|
//! ScreenCast portal monitor.
|
|
|
|
use crate::capture::{self, Capturer, SyntheticCapturer};
|
|
use crate::encode::{self, Codec, EncodedFrame, Encoder};
|
|
use anyhow::{anyhow, Context, Result};
|
|
use lumen_core::packet::{FLAG_PIC, FLAG_SOF};
|
|
use lumen_core::{Config, Role, Session};
|
|
use std::fs::File;
|
|
use std::io::{BufWriter, Write};
|
|
use std::path::PathBuf;
|
|
use std::time::Instant;
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
|
pub enum Source {
|
|
/// Deterministic moving BGRx test pattern — no capture session required.
|
|
Synthetic,
|
|
/// Live monitor via the xdg ScreenCast portal + PipeWire.
|
|
Portal,
|
|
/// KWin virtual output created at `width`x`height` (zkde_screencast). Lets us validate
|
|
/// capture (and zero-copy) at an arbitrary client resolution against a headless KWin.
|
|
KwinVirtual,
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Options {
|
|
pub source: Source,
|
|
/// Synthetic-only; the portal source uses the PipeWire-negotiated size.
|
|
pub width: u32,
|
|
pub height: u32,
|
|
pub fps: u32,
|
|
pub seconds: u32,
|
|
pub codec: Codec,
|
|
pub bitrate_bps: u64,
|
|
/// Raw Annex-B elementary-stream sink (`.h265`/`.h264`/`.ivf-less .obu`); playable.
|
|
pub out: PathBuf,
|
|
/// Also round-trip every AU through a `lumen_core` host→client loopback and verify.
|
|
pub loopback: bool,
|
|
}
|
|
|
|
pub fn run(opts: Options) -> Result<()> {
|
|
let mut capturer: Box<dyn Capturer> = match opts.source {
|
|
Source::Synthetic => {
|
|
tracing::info!(
|
|
width = opts.width,
|
|
height = opts.height,
|
|
fps = opts.fps,
|
|
"M0 source: synthetic BGRx test pattern"
|
|
);
|
|
Box::new(SyntheticCapturer::new(opts.width, opts.height, opts.fps))
|
|
}
|
|
Source::Portal => {
|
|
tracing::info!("M0 source: xdg ScreenCast portal (live monitor)");
|
|
capture::open_portal_monitor().context("open portal capturer")?
|
|
}
|
|
Source::KwinVirtual => {
|
|
tracing::info!(
|
|
width = opts.width,
|
|
height = opts.height,
|
|
"M0 source: KWin virtual output (zkde_screencast)"
|
|
);
|
|
let mut vd = crate::vdisplay::open(crate::vdisplay::Compositor::Kwin)
|
|
.context("open KWin virtual display")?;
|
|
let vout = vd
|
|
.create(lumen_core::Mode {
|
|
width: opts.width,
|
|
height: opts.height,
|
|
refresh_hz: opts.fps,
|
|
})
|
|
.context("create KWin virtual output")?;
|
|
capture::capture_virtual_output(vout).context("capture virtual output")?
|
|
}
|
|
};
|
|
|
|
// Activate the capturer so the portal/PipeWire process callback actually delivers frames
|
|
// (it gates the per-frame de-pad on `active`; idle by default so reconnects are cheap).
|
|
capturer.set_active(true);
|
|
|
|
// The first frame establishes the authoritative dimensions (the portal's negotiated
|
|
// size, or the synthetic size) used to configure the encoder.
|
|
let first = capturer.next_frame().context("capture first frame")?;
|
|
let (w, h) = (first.width, first.height);
|
|
tracing::info!(
|
|
width = w,
|
|
height = h,
|
|
format = ?first.format,
|
|
codec = ?opts.codec,
|
|
bitrate_bps = opts.bitrate_bps,
|
|
"opening NVENC encoder"
|
|
);
|
|
let mut encoder = encode::open_video(
|
|
opts.codec,
|
|
first.format,
|
|
w,
|
|
h,
|
|
opts.fps,
|
|
opts.bitrate_bps,
|
|
first.is_cuda(),
|
|
)
|
|
.context("open encoder")?;
|
|
|
|
let mut sink = BufWriter::new(
|
|
File::create(&opts.out).with_context(|| format!("create {}", opts.out.display()))?,
|
|
);
|
|
|
|
let mut lb = if opts.loopback {
|
|
Some(Loopback::new().context("build lumen-core loopback")?)
|
|
} else {
|
|
None
|
|
};
|
|
|
|
let target_frames = (opts.seconds as u64) * (opts.fps as u64);
|
|
let started = Instant::now();
|
|
let mut stats = Stats::default();
|
|
|
|
let mut frame = first;
|
|
loop {
|
|
encoder.submit(&frame).context("encoder submit")?;
|
|
stats.submitted += 1;
|
|
drain_encoder(encoder.as_mut(), &mut sink, lb.as_mut(), &mut stats)?;
|
|
if stats.submitted >= target_frames {
|
|
break;
|
|
}
|
|
frame = capturer.next_frame().context("capture frame")?;
|
|
}
|
|
|
|
// NVENC buffers frames internally even at delay=0 — flush and drain the tail.
|
|
encoder.flush().context("encoder flush")?;
|
|
drain_encoder(encoder.as_mut(), &mut sink, lb.as_mut(), &mut stats)?;
|
|
sink.flush().context("flush output file")?;
|
|
|
|
let elapsed = started.elapsed().as_secs_f64();
|
|
tracing::info!(
|
|
submitted = stats.submitted,
|
|
encoded = stats.encoded,
|
|
keyframes = stats.keyframes,
|
|
bytes_out = stats.bytes_out,
|
|
out = %opts.out.display(),
|
|
elapsed_s = format!("{elapsed:.2}"),
|
|
encode_fps = format!("{:.1}", stats.encoded as f64 / elapsed.max(1e-9)),
|
|
"M0 capture→encode→file complete"
|
|
);
|
|
|
|
if let Some(lb) = lb {
|
|
lb.report();
|
|
if lb.mismatches > 0 || lb.recovered != lb.submitted {
|
|
return Err(anyhow!(
|
|
"lumen-core loopback verification FAILED: {} mismatches, {}/{} AUs recovered",
|
|
lb.mismatches,
|
|
lb.recovered,
|
|
lb.submitted
|
|
));
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct Stats {
|
|
submitted: u64,
|
|
encoded: u64,
|
|
keyframes: u64,
|
|
bytes_out: u64,
|
|
}
|
|
|
|
fn drain_encoder(
|
|
encoder: &mut dyn Encoder,
|
|
sink: &mut impl Write,
|
|
mut lb: Option<&mut Loopback>,
|
|
stats: &mut Stats,
|
|
) -> Result<()> {
|
|
while let Some(au) = encoder.poll().context("encoder poll")? {
|
|
sink.write_all(&au.data).context("write AU to file")?;
|
|
stats.encoded += 1;
|
|
stats.bytes_out += au.data.len() as u64;
|
|
if au.keyframe {
|
|
stats.keyframes += 1;
|
|
}
|
|
if let Some(lb) = lb.as_deref_mut() {
|
|
lb.submit(&au)?;
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// A host↔client `lumen_core` pair over a lossless in-process loopback. Each encoded AU is
|
|
/// FEC-protected, packetized, sent, then reassembled on the client and byte-compared to the
|
|
/// original — exercising the core on real encoder output (the M0 "feed into a Session" goal).
|
|
struct Loopback {
|
|
host: Session,
|
|
client: Session,
|
|
submitted: u64,
|
|
recovered: u64,
|
|
mismatches: u64,
|
|
bytes: u64,
|
|
}
|
|
|
|
impl Loopback {
|
|
fn new() -> Result<Loopback> {
|
|
let (host_tx, client_tx) = lumen_core::transport::loopback_pair(0, 0);
|
|
let host = Session::new(Config::p1_defaults(Role::Host), Box::new(host_tx))
|
|
.map_err(|e| anyhow!("host session: {e:?}"))?;
|
|
let client = Session::new(Config::p1_defaults(Role::Client), Box::new(client_tx))
|
|
.map_err(|e| anyhow!("client session: {e:?}"))?;
|
|
Ok(Loopback {
|
|
host,
|
|
client,
|
|
submitted: 0,
|
|
recovered: 0,
|
|
mismatches: 0,
|
|
bytes: 0,
|
|
})
|
|
}
|
|
|
|
fn submit(&mut self, au: &EncodedFrame) -> Result<()> {
|
|
let mut flags = FLAG_PIC as u32;
|
|
if au.keyframe {
|
|
flags |= FLAG_SOF as u32;
|
|
}
|
|
self.host
|
|
.submit_frame(&au.data, au.pts_ns, flags)
|
|
.map_err(|e| anyhow!("host submit_frame: {e:?}"))?;
|
|
self.submitted += 1;
|
|
self.bytes += au.data.len() as u64;
|
|
|
|
// Lossless + in-order loopback: each submit yields exactly the AU just sent.
|
|
loop {
|
|
match self.client.poll_frame() {
|
|
Ok(frame) => {
|
|
self.recovered += 1;
|
|
if frame.data != au.data {
|
|
self.mismatches += 1;
|
|
tracing::warn!(
|
|
recovered = self.recovered,
|
|
got = frame.data.len(),
|
|
expected = au.data.len(),
|
|
"loopback AU mismatch"
|
|
);
|
|
}
|
|
}
|
|
Err(lumen_core::LumenError::NoFrame) => break,
|
|
Err(e) => return Err(anyhow!("client poll_frame: {e:?}")),
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn report(&self) {
|
|
tracing::info!(
|
|
submitted = self.submitted,
|
|
recovered = self.recovered,
|
|
mismatches = self.mismatches,
|
|
bytes = self.bytes,
|
|
"lumen-core loopback: AUs FEC-packetized → sent → reassembled & verified"
|
|
);
|
|
}
|
|
}
|