mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
Fix some unused parameter warnings
This commit is contained in:
parent
60e25bcc91
commit
e97f4fb8c1
1 changed files with 4 additions and 4 deletions
|
@ -45,10 +45,10 @@ pub trait BaseSrcImpl<T: BaseSrc>
|
|||
|
||||
fn fill(
|
||||
&self,
|
||||
element: &T,
|
||||
offset: u64,
|
||||
length: u32,
|
||||
buffer: &mut gst::BufferRef,
|
||||
_element: &T,
|
||||
_offset: u64,
|
||||
_length: u32,
|
||||
_buffer: &mut gst::BufferRef,
|
||||
) -> gst::FlowReturn {
|
||||
unimplemented!()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue