v0.7.18: support H.265

There's no transcoding, so if the browser/player doesn't support these
formats, they don't play. But it will record and allow downloads, and
it seems to be working with Chrome on macOS at least.

Fixes #33
This commit is contained in:
Scott Lamb
2025-01-28 09:04:59 -08:00
parent dd30d5bcf8
commit b4836f3abb
5 changed files with 22 additions and 20 deletions

View File

@@ -133,7 +133,7 @@ pub fn run(_args: &super::Args, tx: &rusqlite::Transaction) -> Result<(), Error>
)
})?;
let sps = ctx
.sps_by_id(h264_reader::nal::pps::ParamSetId::from_u32(0).unwrap())
.sps_by_id(h264_reader::nal::sps::SeqParamSetId::from_u32(0).unwrap())
.ok_or_else(|| {
err!(
Unimplemented,