aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmedia/llmediaimplgstreamer.h
diff options
context:
space:
mode:
authorJacek Antonelli2009-04-02 02:29:46 -0500
committerJacek Antonelli2009-04-02 03:27:26 -0500
commit33e649ca1bca260de474842d30d3bf8178e61be4 (patch)
tree5bcbd026c8625ad053d34e6c4f9fbe8b425a03b3 /linden/indra/llmedia/llmediaimplgstreamer.h
parentImplemented handleMediaDebugLevelChanged hook. (diff)
downloadmeta-impy-33e649ca1bca260de474842d30d3bf8178e61be4.zip
meta-impy-33e649ca1bca260de474842d30d3bf8178e61be4.tar.gz
meta-impy-33e649ca1bca260de474842d30d3bf8178e61be4.tar.bz2
meta-impy-33e649ca1bca260de474842d30d3bf8178e61be4.tar.xz
Implemented LLMediaImplGStreamer::gstreamer_log().
Diffstat (limited to 'linden/indra/llmedia/llmediaimplgstreamer.h')
-rw-r--r--linden/indra/llmedia/llmediaimplgstreamer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/linden/indra/llmedia/llmediaimplgstreamer.h b/linden/indra/llmedia/llmediaimplgstreamer.h
index 282da08..37eaf53 100644
--- a/linden/indra/llmedia/llmediaimplgstreamer.h
+++ b/linden/indra/llmedia/llmediaimplgstreamer.h
@@ -71,6 +71,21 @@ class LLMediaImplGStreamer:
71 71
72 /* virtual */ bool setDebugLevel( LLMediaBase::EDebugLevel level ); 72 /* virtual */ bool setDebugLevel( LLMediaBase::EDebugLevel level );
73 73
74 // Function given to GStreamer for handling debug messages
75 static void gstreamer_log(GstDebugCategory *category,
76 GstDebugLevel level,
77 const gchar *file,
78 const gchar *function,
79 gint line,
80 GObject *object,
81 GstDebugMessage *message,
82 gpointer data)
83#if __GNUC__
84 // recommended by the gstreamer docs
85 G_GNUC_NO_INSTRUMENT
86#endif
87 ;
88
74 /* virtual */ std::string getVersion(); 89 /* virtual */ std::string getVersion();
75 /* virtual */ bool navigateTo( const std::string url ); 90 /* virtual */ bool navigateTo( const std::string url );
76 /* virtual */ bool updateMedia(); 91 /* virtual */ bool updateMedia();