diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmedia/llmediaimplgstreamer.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/linden/indra/llmedia/llmediaimplgstreamer.h b/linden/indra/llmedia/llmediaimplgstreamer.h index 2918416..37eaf53 100644 --- a/linden/indra/llmedia/llmediaimplgstreamer.h +++ b/linden/indra/llmedia/llmediaimplgstreamer.h | |||
@@ -69,6 +69,23 @@ class LLMediaImplGStreamer: | |||
69 | // Sets GST_PLUGIN_PATH env var for GStreamer. | 69 | // Sets GST_PLUGIN_PATH env var for GStreamer. |
70 | static void set_gst_plugin_path(); | 70 | static void set_gst_plugin_path(); |
71 | 71 | ||
72 | /* virtual */ bool setDebugLevel( LLMediaBase::EDebugLevel level ); | ||
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 | |||
72 | /* virtual */ std::string getVersion(); | 89 | /* virtual */ std::string getVersion(); |
73 | /* virtual */ bool navigateTo( const std::string url ); | 90 | /* virtual */ bool navigateTo( const std::string url ); |
74 | /* virtual */ bool updateMedia(); | 91 | /* virtual */ bool updateMedia(); |