forked from mirrors/gstreamer-rs
impl Clone for BufferPoolConfig and PlayerConfig
This commit is contained in:
parent
a47a6ea76c
commit
188ef1e242
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ use gst_sys;
|
|||
use std::mem;
|
||||
use std::ops;
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct PlayerConfig(gst::Structure);
|
||||
|
||||
impl ops::Deref for PlayerConfig {
|
||||
|
|
|
@ -21,7 +21,7 @@ use std::mem;
|
|||
use std::ops;
|
||||
use std::ptr;
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct BufferPoolConfig(Structure);
|
||||
|
||||
impl ops::Deref for BufferPoolConfig {
|
||||
|
|
Loading…
Reference in a new issue