summaryrefslogtreecommitdiffstats
path: root/gst/mpegdemux/flutspmtstreaminfo.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/flutspmtstreaminfo.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/flutspmtstreaminfo.h')
-rw-r--r--gst/mpegdemux/flutspmtstreaminfo.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gst/mpegdemux/flutspmtstreaminfo.h b/gst/mpegdemux/flutspmtstreaminfo.h
index 654daf9d..6c7d42f5 100644
--- a/gst/mpegdemux/flutspmtstreaminfo.h
+++ b/gst/mpegdemux/flutspmtstreaminfo.h
@@ -49,31 +49,31 @@
G_BEGIN_DECLS
-typedef struct FluTsPmtStreamInfoClass {
+typedef struct MpegTsPmtStreamInfoClass {
GObjectClass parent_class;
-} FluTsPmtStreamInfoClass;
+} MpegTsPmtStreamInfoClass;
-typedef struct FluTsPmtStreamInfo {
+typedef struct MpegTsPmtStreamInfo {
GObject parent;
guint16 pid;
GValueArray *languages; /* null terminated 3 character ISO639 language code */
guint8 stream_type;
GValueArray *descriptors;
-} FluTsPmtStreamInfo;
+} MpegTsPmtStreamInfo;
-FluTsPmtStreamInfo *fluts_pmt_stream_info_new (guint16 pid, guint8 type);
-void fluts_pmt_stream_info_add_language(FluTsPmtStreamInfo* si,
+MpegTsPmtStreamInfo *mpegts_pmt_stream_info_new (guint16 pid, guint8 type);
+void mpegts_pmt_stream_info_add_language(MpegTsPmtStreamInfo* si,
gchar* language);
-void fluts_pmt_stream_info_add_descriptor (FluTsPmtStreamInfo *pmt_info,
+void mpegts_pmt_stream_info_add_descriptor (MpegTsPmtStreamInfo *pmt_info,
const gchar *descriptor, guint length);
-GType fluts_pmt_stream_info_get_type (void);
+GType mpegts_pmt_stream_info_get_type (void);
-#define FLUTS_TYPE_PMT_STREAM_INFO (fluts_pmt_stream_info_get_type ())
+#define MPEGTS_TYPE_PMT_STREAM_INFO (mpegts_pmt_stream_info_get_type ())
-#define FLUTS_IS_PMT_STREAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), FLUTS_TYPE_PMT_STREAM_INFO))
-#define FLUTS_PMT_STREAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),FLUTS_TYPE_PMT_STREAM_INFO, FluTsPmtStreamInfo))
+#define MPEGTS_IS_PMT_STREAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), MPEGTS_TYPE_PMT_STREAM_INFO))
+#define MPEGTS_PMT_STREAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),MPEGTS_TYPE_PMT_STREAM_INFO, MpegTsPmtStreamInfo))
G_END_DECLS