summaryrefslogtreecommitdiffstats
path: root/gst/mpegdemux/flutspatinfo.h
diff options
context:
space:
mode:
authorZaheer Merali <zaheerabbas@merali.org>2009-02-19 11:36:45 +0000
committerZaheer Merali <zaheerabbas@merali.org>2009-02-19 11:36:45 +0000
commit571d51ac9267db96ee6ca069e64ea6d152ac4eae (patch)
treeef6d907893aea9a1a0231916964fe884a36e9547 /gst/mpegdemux/flutspatinfo.h
parentb545961383bce8debe8a534c010c1cd205446973 (diff)
downloadgst-plugins-bad-571d51ac9267db96ee6ca069e64ea6d152ac4eae.tar.gz
gst-plugins-bad-571d51ac9267db96ee6ca069e64ea6d152ac4eae.tar.bz2
gst-plugins-bad-571d51ac9267db96ee6ca069e64ea6d152ac4eae.zip
mpegtsdemux: s/fluts/mpegts
Change all definitions from fluts to mpegts.
Diffstat (limited to 'gst/mpegdemux/flutspatinfo.h')
-rw-r--r--gst/mpegdemux/flutspatinfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gst/mpegdemux/flutspatinfo.h b/gst/mpegdemux/flutspatinfo.h
index 3e93fac0..565454c5 100644
--- a/gst/mpegdemux/flutspatinfo.h
+++ b/gst/mpegdemux/flutspatinfo.h
@@ -50,22 +50,22 @@ G_BEGIN_DECLS
typedef struct FluTsPatInfoClass {
GObjectClass parent_class;
-} FluTsPatInfoClass;
+} MpegTsPatInfoClass;
typedef struct FluTsPatInfo {
GObject parent;
guint16 pid;
guint16 program_no;
-} FluTsPatInfo;
+} MpegTsPatInfo;
-#define FLUTS_TYPE_PAT_INFO (fluts_pat_info_get_type ())
-#define FLUTS_IS_PAT_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), FLUTS_TYPE_PAT_INFO))
-#define FLUTS_PAT_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),FLUTS_TYPE_PAT_INFO, FluTsPatInfo))
+#define MPEGTS_TYPE_PAT_INFO (mpegts_pat_info_get_type ())
+#define MPEGTS_IS_PAT_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), MPEGTS_TYPE_PAT_INFO))
+#define MPEGTS_PAT_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),MPEGTS_TYPE_PAT_INFO, MpegTsPatInfo))
-GType fluts_pat_info_get_type (void);
+GType mpegts_pat_info_get_type (void);
-FluTsPatInfo *fluts_pat_info_new (guint16 program_no, guint16 pid);
+MpegTsPatInfo *mpegts_pat_info_new (guint16 program_no, guint16 pid);
G_END_DECLS