mirror of
https://github.com/nestriness/warp.git
synced 2025-12-13 02:15:42 +02:00
fix(sink): add none
This commit is contained in:
@@ -272,7 +272,7 @@ impl GST {
|
|||||||
|
|
||||||
// Set up a pad probe on the sink pad to intercept queries
|
// Set up a pad probe on the sink pad to intercept queries
|
||||||
let sink_pad = appsink.static_pad("sink").unwrap();
|
let sink_pad = appsink.static_pad("sink").unwrap();
|
||||||
|
|
||||||
//FIX: https://github.com/sdroege/gst-plugin-rs/blob/95c007953c0874bc46152078775d673cf44cc255/mux/mp4/src/mp4mux/imp.rs#L1243
|
//FIX: https://github.com/sdroege/gst-plugin-rs/blob/95c007953c0874bc46152078775d673cf44cc255/mux/mp4/src/mp4mux/imp.rs#L1243
|
||||||
sink_pad.add_probe(gst::PadProbeType::QUERY_DOWNSTREAM, move |_pad, info| {
|
sink_pad.add_probe(gst::PadProbeType::QUERY_DOWNSTREAM, move |_pad, info| {
|
||||||
let Some(query) = info.query_mut() else {
|
let Some(query) = info.query_mut() else {
|
||||||
@@ -296,14 +296,14 @@ impl GST {
|
|||||||
// For other formats, do not handle the seeking query
|
// For other formats, do not handle the seeking query
|
||||||
q.set(
|
q.set(
|
||||||
false,
|
false,
|
||||||
0.bytes(),
|
gst::GenericFormattedValue::none_for_format(format),
|
||||||
gst::GenericFormattedValue::none_for_format(format),
|
gst::GenericFormattedValue::none_for_format(format),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
unreachable!();
|
unreachable!("query seeking");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gst::PadProbeReturn::Pass
|
gst::PadProbeReturn::Pass
|
||||||
|
|||||||
Reference in New Issue
Block a user