summaryrefslogtreecommitdiffstats
path: root/gst/dvdspu/gstdvdspu.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2008-01-21 11:01:30 +0000
committerTim-Philipp Müller <tim@centricular.net>2008-01-21 11:01:30 +0000
commite96cd36332ddb7ca3b715f04be5bce5c5e858ad3 (patch)
tree240667050a6dfea3886e86e3785e8df375c4ce63 /gst/dvdspu/gstdvdspu.h
parentcb1684abecd2afe8bf8ba326cf2d3f0ff1ce7aaf (diff)
downloadgst-plugins-bad-e96cd36332ddb7ca3b715f04be5bce5c5e858ad3.tar.gz
gst-plugins-bad-e96cd36332ddb7ca3b715f04be5bce5c5e858ad3.tar.bz2
gst-plugins-bad-e96cd36332ddb7ca3b715f04be5bce5c5e858ad3.zip
gst/dvdspu/: Fix up dvdspu element again after previous namespace mangling: rename debug category variable to old nam...
Original commit message from CVS: * gst/dvdspu/gstdvdspu-render.c: (gst_dvd_spu_render_spu): * gst/dvdspu/gstdvdspu.c: (dvdspu_debug), (GST_CAT_DEFAULT), (subpic_sink_factory), (gst_dvd_spu_base_init), (gst_dvd_spu_class_init), (gst_dvd_spu_init), (gst_dvd_spu_clear), (gst_dvd_spu_dispose), (gst_dvd_spu_finalize), (gst_dvd_spu_flush_spu_info), (gst_dvd_spu_buffer_alloc), (gst_dvd_spu_src_event), (gst_dvd_spu_video_set_caps), (gst_dvd_spu_video_proxy_getcaps), (gst_dvd_spu_video_event), (gst_dvd_spu_video_chain), (dvspu_handle_vid_buffer), (gst_dvd_spu_redraw_still), (gst_dvd_spu_parse_chg_colcon), (gst_dvd_spu_exec_cmd_blk), (gst_dvd_spu_finish_spu_buf), (gst_dvd_spu_setup_cmd_blk), (gst_dvd_spu_handle_new_spu_buf), (gst_dvd_spu_handle_dvd_event), (gst_dvd_spu_advance_spu), (gst_dvd_spu_check_still_updates), (gst_dvd_spu_subpic_chain), (gst_dvd_spu_subpic_event), (gst_dvd_spu_change_state), (gst_dvd_spu_plugin_init): * gst/dvdspu/gstdvdspu.h: (GST_TYPE_DVD_SPU): Fix up dvdspu element again after previous namespace mangling: rename debug category variable to old name, matching that in dvdspu-render.c, to avoid undefined symbol error when loading the module; same for the _render function in dvdspu-render.c: we must use the same name in both .c files; change functions now called gstgst_* back to gst_* again; and while we're at it, we may as well canonicalise the namespace properly, namely to gst_dvd_spu_*.
Diffstat (limited to 'gst/dvdspu/gstdvdspu.h')
-rw-r--r--gst/dvdspu/gstdvdspu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/dvdspu/gstdvdspu.h b/gst/dvdspu/gstdvdspu.h
index b9a0ad49..e4b88488 100644
--- a/gst/dvdspu/gstdvdspu.h
+++ b/gst/dvdspu/gstdvdspu.h
@@ -24,7 +24,7 @@
G_BEGIN_DECLS
#define GST_TYPE_DVD_SPU \
- (gst_dvdspu_get_type())
+ (gst_dvd_spu_get_type())
#define GST_DVD_SPU(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DVD_SPU,GstDVDSpu))
#define GST_DVD_SPU_CLASS(klass) \
@@ -218,7 +218,7 @@ struct GstDVDSpuClass
GstElementClass parent_class;
};
-GType gst_dvdspu_get_type (void);
+GType gst_dvd_spu_get_type (void);
G_END_DECLS