mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
fmp4mux: examples: Avoid unnecessary caps copies
This commit is contained in:
parent
45fa946e8b
commit
1fcbc346bc
2 changed files with 2 additions and 2 deletions
|
@ -368,7 +368,7 @@ fn probe_encoder(state: Arc<Mutex<State>>, enc: gst::Element) {
|
|||
move |_pad, info| match info.data {
|
||||
Some(gst::PadProbeData::Event(ref ev)) => match ev.view() {
|
||||
gst::EventView::Caps(e) => {
|
||||
let mime = gst_pbutils::codec_utils_caps_get_mime_codec(&e.caps().to_owned());
|
||||
let mime = gst_pbutils::codec_utils_caps_get_mime_codec(e.caps());
|
||||
|
||||
let mut state = state.lock().unwrap();
|
||||
state.all_mimes.push(mime.unwrap().into());
|
||||
|
|
|
@ -263,7 +263,7 @@ fn probe_encoder(state: Arc<Mutex<State>>, enc: gst::Element) {
|
|||
move |_pad, info| match info.data {
|
||||
Some(gst::PadProbeData::Event(ref ev)) => match ev.view() {
|
||||
gst::EventView::Caps(e) => {
|
||||
let mime = gst_pbutils::codec_utils_caps_get_mime_codec(&e.caps().to_owned());
|
||||
let mime = gst_pbutils::codec_utils_caps_get_mime_codec(e.caps());
|
||||
|
||||
let mut state = state.lock().unwrap();
|
||||
state.all_mimes.push(mime.unwrap().into());
|
||||
|
|
Loading…
Reference in a new issue