use crate::{Codec, Hdr10Metadata, StreamInfo};
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct SourceFormat {
pub pix_fmt: String,
pub bit_depth: u8,
pub color_primaries: String,
pub color_transfer: String,
pub color_space: String,
pub is_hdr: bool,
pub hdr10: Option<Hdr10Metadata>,
}
impl SourceFormat {
pub fn from_stream(stream: &StreamInfo) -> Self {
let bit_depth = bit_depth(stream);
let pix_fmt = if stream.pix_fmt.is_empty() {
yuv420p_for_depth(bit_depth).to_string()
} else {
stream.pix_fmt.clone()
};
Self {
pix_fmt,
bit_depth,
color_primaries: stream.color_primaries.clone(),
color_transfer: stream.color_transfer.clone(),
color_space: stream.color_space.clone(),
is_hdr: stream.is_hdr(),
hdr10: None,
}
}
pub fn is_high_bit_depth(&self) -> bool {
self.bit_depth > 8
}
pub async fn enrich_hdr10(mut self, path: &str) -> Self {
if self.is_hdr {
if let Ok(Some(md)) = crate::probe_hdr10_metadata(path).await {
self.hdr10 = Some(md);
}
}
self
}
}
pub fn bit_depth(stream: &StreamInfo) -> u8 {
if stream.bits_per_raw_sample >= 10 {
return stream.bits_per_raw_sample.clamp(8, 16) as u8;
}
if stream.pix_fmt.contains("16") {
return 16;
}
if stream.pix_fmt.contains("12") {
return 12;
}
if stream.pix_fmt.contains("10") {
return 10;
}
8
}
pub fn yuv420p_for_depth(depth: u8) -> &'static str {
match depth {
10 => "yuv420p10le",
12 => "yuv420p12le",
16 => "yuv420p16le",
_ => "yuv420p",
}
}
pub fn psnr_peak(depth: u8) -> f64 {
match depth {
10 => 1023.0,
12 => 4095.0,
16 => 65535.0,
_ => 255.0,
}
}
pub fn codec_supports_bit_depth(codec: Codec, depth: u8) -> bool {
if depth <= 8 {
return true;
}
match codec {
Codec::X264 | Codec::X265 | Codec::SvtAv1 => true,
_ => false,
}
}
pub fn encode_color_args(codec: Codec, format: &SourceFormat) -> Vec<String> {
let mut args = Vec::new();
if format.is_high_bit_depth()
&& codec.is_software()
&& codec_supports_bit_depth(codec, format.bit_depth)
{
args.extend(["-pix_fmt".into(), format.pix_fmt.clone()]);
match codec {
Codec::X264 => args.extend(["-profile:v".into(), "high10".into()]),
Codec::X265 => args.extend(["-x265-params".into(), x265_params(format)]),
Codec::SvtAv1 => {}
_ => {}
}
}
if format.is_hdr {
append_color_metadata(&mut args, format);
match codec {
Codec::X265 => merge_x265_color_params(&mut args, format),
Codec::SvtAv1 => {
let params = svtav1_hdr_params(format);
if !params.is_empty() {
args.extend(["-svtav1-params".into(), params]);
}
}
_ => {}
}
}
args
}
fn append_color_metadata(args: &mut Vec<String>, format: &SourceFormat) {
if !format.color_primaries.is_empty() {
args.extend(["-color_primaries".into(), format.color_primaries.clone()]);
}
if !format.color_transfer.is_empty() {
args.extend(["-color_trc".into(), format.color_transfer.clone()]);
}
if !format.color_space.is_empty() {
args.extend(["-colorspace".into(), format.color_space.clone()]);
}
}
fn x265_params(format: &SourceFormat) -> String {
let mut parts = Vec::new();
if format.bit_depth > 8 {
parts.push("profile=main10".into());
}
if format.is_hdr {
if !format.color_primaries.is_empty() {
parts.push(format!("colorprim={}", format.color_primaries));
}
if !format.color_transfer.is_empty() {
parts.push(format!("transfer={}", format.color_transfer));
}
if !format.color_space.is_empty() {
parts.push(format!("colormatrix={}", format.color_space));
}
if let Some(hdr10) = &format.hdr10 {
if let Some(display) = &hdr10.mastering_display {
parts.push(format!("master-display={}", display.to_x265_string()));
}
if let Some(max_cll) = hdr10.max_cll {
parts.push(format!("max-cll={},{}", max_cll, hdr10.max_fall.unwrap_or(0)));
}
}
}
parts.join(":")
}
fn svtav1_hdr_params(format: &SourceFormat) -> String {
let mut parts = Vec::new();
if let Some(hdr10) = &format.hdr10 {
if let Some(display) = &hdr10.mastering_display {
parts.push(format!("mastering-display={}", display.to_svtav1_string()));
}
if let Some(max_cll) = hdr10.max_cll {
parts.push(format!("content-light={},{}", max_cll, hdr10.max_fall.unwrap_or(0)));
}
}
parts.join(":")
}
fn merge_x265_color_params(args: &mut Vec<String>, format: &SourceFormat) {
let color = x265_params(format);
if color.is_empty() {
return;
}
if let Some(idx) = args.iter().position(|a| a == "-x265-params") {
let existing = args.get(idx + 1).cloned().unwrap_or_default();
let merged = if existing.is_empty() { color } else { format!("{existing}:{color}") };
args[idx + 1] = merged;
} else {
args.extend(["-x265-params".into(), color]);
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::StreamInfo;
fn base_stream() -> StreamInfo {
StreamInfo {
index: 0,
codec_name: "h264".into(),
codec_long_name: String::new(),
codec_type: "video".into(),
profile: String::new(),
width: 1920,
height: 1080,
pix_fmt: "yuv420p".into(),
level: 0,
field_order: String::new(),
color_range: String::new(),
color_space: "bt709".into(),
color_transfer: "bt709".into(),
color_primaries: "bt709".into(),
duration: 0.0,
bit_rate: 0,
nb_frames: 0,
r_frame_rate: "24/1".into(),
avg_frame_rate: "24/1".into(),
sample_rate: 0,
channels: 0,
channel_layout: String::new(),
bits_per_raw_sample: 8,
}
}
#[test]
fn test_bit_depth_from_pix_fmt() {
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
assert_eq!(bit_depth(&stream), 10);
}
#[test]
fn test_source_format_high_bit_depth() {
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
let format = SourceFormat::from_stream(&stream);
assert_eq!(format.bit_depth, 10);
assert_eq!(format.pix_fmt, "yuv420p10le");
assert!(format.is_high_bit_depth());
}
#[test]
fn test_encode_color_args_x265_10bit_hdr() {
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
stream.color_transfer = "smpte2084".into();
stream.color_primaries = "bt2020".into();
stream.color_space = "bt2020nc".into();
let format = SourceFormat::from_stream(&stream);
let args = encode_color_args(Codec::X265, &format);
assert!(args.windows(2).any(|w| w[0] == "-pix_fmt" && w[1] == "yuv420p10le"));
assert!(args.iter().any(|a| a.contains("profile=main10")));
assert!(args.iter().any(|a| a.contains("transfer=smpte2084")));
}
#[test]
fn test_psnr_peak_scaling() {
assert_eq!(psnr_peak(8), 255.0);
assert_eq!(psnr_peak(10), 1023.0);
}
#[test]
fn test_encode_color_args_emits_hdr10_metadata() {
use crate::{Hdr10Metadata, MasteringDisplay};
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
stream.color_transfer = "smpte2084".into();
stream.color_primaries = "bt2020".into();
stream.color_space = "bt2020nc".into();
let mut format = SourceFormat::from_stream(&stream);
format.hdr10 = Some(Hdr10Metadata {
mastering_display: Some(MasteringDisplay {
green_x: 13250,
green_y: 34500,
blue_x: 7500,
blue_y: 3000,
red_x: 34000,
red_y: 16000,
white_x: 15635,
white_y: 16450,
max_luminance: 10_000_000,
min_luminance: 50,
}),
max_cll: Some(1000),
max_fall: Some(400),
});
let args = encode_color_args(Codec::X265, &format);
let params = args
.windows(2)
.find(|w| w[0] == "-x265-params")
.map(|w| w[1].clone())
.expect("x265-params present");
assert!(
params.contains("master-display=G(13250,34500)B(7500,3000)R(34000,16000)WP(15635,16450)L(10000000,50)"),
"got: {params}"
);
assert!(params.contains("max-cll=1000,400"), "got: {params}");
}
#[test]
fn test_encode_color_args_svtav1_hdr10_metadata() {
use crate::{Hdr10Metadata, MasteringDisplay};
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
stream.color_transfer = "smpte2084".into();
stream.color_primaries = "bt2020".into();
stream.color_space = "bt2020nc".into();
let mut format = SourceFormat::from_stream(&stream);
format.hdr10 = Some(Hdr10Metadata {
mastering_display: Some(MasteringDisplay {
green_x: 13250,
green_y: 34500,
blue_x: 7500,
blue_y: 3000,
red_x: 34000,
red_y: 16000,
white_x: 15635,
white_y: 16450,
max_luminance: 10_000_000,
min_luminance: 50,
}),
max_cll: Some(1000),
max_fall: Some(400),
});
let args = encode_color_args(Codec::SvtAv1, &format);
let params = args
.windows(2)
.find(|w| w[0] == "-svtav1-params")
.map(|w| w[1].clone())
.expect("svtav1-params present");
assert!(
params.contains("mastering-display=G(0.265,0.69)B(0.15,0.06)R(0.68,0.32)WP(0.3127,0.329)L(1000,0.005)"),
"got: {params}"
);
assert!(params.contains("content-light=1000,400"), "got: {params}");
assert!(args.windows(2).any(|w| w[0] == "-color_trc" && w[1] == "smpte2084"));
}
#[test]
fn test_encode_color_args_no_hdr10_when_sdr() {
let mut stream = base_stream();
stream.pix_fmt = "yuv420p10le".into();
let format = SourceFormat::from_stream(&stream);
let args = encode_color_args(Codec::X265, &format);
assert!(!args.iter().any(|a| a.contains("master-display")));
assert!(!args.iter().any(|a| a.contains("max-cll")));
}
}