Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
cdparanoiasrc: allow per feature registration
  • Loading branch information
Stéphane Cerveau authored and GStreamer Marge Bot committed Mar 16, 2021
1 parent 2cc37e7 commit 84e575d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ext/cdparanoia/gstcdparanoiasrc.c
Expand Up @@ -59,6 +59,8 @@ GST_DEBUG_CATEGORY_STATIC (gst_cd_paranoia_src_debug);

#define gst_cd_paranoia_src_parent_class parent_class
G_DEFINE_TYPE (GstCdParanoiaSrc, gst_cd_paranoia_src, GST_TYPE_AUDIO_CD_SRC);
GST_ELEMENT_REGISTER_DEFINE (cdparanoiasrc, "cdparanoiasrc", GST_RANK_SECONDARY,
GST_TYPE_CD_PARANOIA_SRC);

static void gst_cd_paranoia_src_finalize (GObject * obj);
static void gst_cd_paranoia_src_get_property (GObject * object, guint prop_id,
Expand Down Expand Up @@ -511,12 +513,12 @@ gst_cd_paranoia_src_get_property (GObject * object, guint prop_id,
static gboolean
plugin_init (GstPlugin * plugin)
{
gboolean ret = FALSE;

GST_DEBUG_CATEGORY_INIT (gst_cd_paranoia_src_debug, "cdparanoiasrc", 0,
"CD Paranoia Source");

if (!gst_element_register (plugin, "cdparanoiasrc", GST_RANK_SECONDARY,
GST_TYPE_CD_PARANOIA_SRC))
return FALSE;
ret |= GST_ELEMENT_REGISTER (cdparanoiasrc, plugin);

#ifdef ENABLE_NLS
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
Expand All @@ -525,7 +527,7 @@ plugin_init (GstPlugin * plugin)
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
#endif

return TRUE;
return ret;
}

GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
Expand Down
2 changes: 2 additions & 0 deletions ext/cdparanoia/gstcdparanoiasrc.h
Expand Up @@ -94,6 +94,8 @@ struct _GstCdParanoiaSrcClass {
void (*uncorrected_error) (GstCdParanoiaSrc * src, gint sector);
};

GST_ELEMENT_REGISTER_DECLARE (cdparanoiasrc);

GType gst_cd_paranoia_src_get_type (void);

G_END_DECLS
Expand Down

0 comments on commit 84e575d

Please sign in to comment.