Skip to content

Commit

Permalink
Rename the ServoSrc type to ServoGstSrc to avoid a name clash
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Jeffrey committed Dec 9, 2019
1 parent daf7138 commit eae574d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ports/gstplugin/lib.rs
Expand Up @@ -4,7 +4,7 @@

use glib::subclass::types::ObjectSubclass;
use gstreamer::gst_plugin_define;
use servosrc::ServoSrc;
use servosrc::ServoGstSrc;

mod logging;
mod resources;
Expand Down Expand Up @@ -35,6 +35,6 @@ fn plugin_init(plugin: &gstreamer::Plugin) -> Result<(), glib::BoolError> {
Some(plugin),
"servosrc",
gstreamer::Rank::None,
ServoSrc::get_type(),
ServoGstSrc::get_type(),
)
}
12 changes: 6 additions & 6 deletions ports/gstplugin/servosrc.rs
Expand Up @@ -92,7 +92,7 @@ use std::rc::Rc;
use std::sync::Mutex;
use std::thread;

pub struct ServoSrc {
pub struct ServoGstSrc {
sender: Sender<ServoSrcMsg>,
swap_chain: SwapChain,
url: Mutex<Option<String>>,
Expand Down Expand Up @@ -420,8 +420,8 @@ const CAPS: &str = "video/x-raw(memory:GLMemory),
height=[1,2147483647],
framerate=[0/1,2147483647/1]";

impl ObjectSubclass for ServoSrc {
const NAME: &'static str = "ServoSrc";
impl ObjectSubclass for ServoGstSrc {
const NAME: &'static str = "ServoGstSrc";
// gstreamer-gl doesn't have support for GLBaseSrc yet
// https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/issues/219
type ParentType = BaseSrc;
Expand Down Expand Up @@ -464,7 +464,7 @@ impl ObjectSubclass for ServoSrc {
glib_object_subclass!();
}

impl ObjectImpl for ServoSrc {
impl ObjectImpl for ServoGstSrc {
glib_object_impl!();

fn constructed(&self, obj: &glib::Object) {
Expand Down Expand Up @@ -499,12 +499,12 @@ impl ObjectImpl for ServoSrc {
}
}

impl ElementImpl for ServoSrc {}
impl ElementImpl for ServoGstSrc {}

thread_local! {
static GL: RefCell<Option<Rc<Gl>>> = RefCell::new(None);
}
impl BaseSrcImpl for ServoSrc {
impl BaseSrcImpl for ServoGstSrc {
fn set_caps(&self, src: &BaseSrc, outcaps: &Caps) -> Result<(), LoggableError> {
// Save the video info for later use
let info = VideoInfo::from_caps(outcaps)
Expand Down

0 comments on commit eae574d

Please sign in to comment.