diff options
author | Jacek Antonelli | 2009-04-02 03:12:02 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-04-02 03:27:26 -0500 |
commit | 42670a609d842affb26bf1dd1ed6b69958655ea9 (patch) | |
tree | 026265cb8bbff3801d59c8f0e471d1ea1d84a5f4 /linden/indra | |
parent | Implemented LLMediaImplGStreamer::gstreamer_log(). (diff) | |
download | meta-impy-42670a609d842affb26bf1dd1ed6b69958655ea9.zip meta-impy-42670a609d842affb26bf1dd1ed6b69958655ea9.tar.gz meta-impy-42670a609d842affb26bf1dd1ed6b69958655ea9.tar.bz2 meta-impy-42670a609d842affb26bf1dd1ed6b69958655ea9.tar.xz |
Plugged in LLMediaImplGStreamer::gstreamer_log().
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmedia/llmediaimplgstreamer.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/llmedia/llmediaimplgstreamer.cpp b/linden/indra/llmedia/llmediaimplgstreamer.cpp index 8cbfb60..532ec00 100644 --- a/linden/indra/llmedia/llmediaimplgstreamer.cpp +++ b/linden/indra/llmedia/llmediaimplgstreamer.cpp | |||
@@ -176,7 +176,11 @@ bool LLMediaImplGStreamer::startup (LLMediaManagerData* init_data) | |||
176 | return false; | 176 | return false; |
177 | } | 177 | } |
178 | setlocale(LC_ALL, saved_locale.c_str() ); | 178 | setlocale(LC_ALL, saved_locale.c_str() ); |
179 | 179 | ||
180 | // Set up logging facilities | ||
181 | gst_debug_remove_log_function( gst_debug_log_default ); | ||
182 | gst_debug_add_log_function( gstreamer_log, NULL ); | ||
183 | |||
180 | // Init our custom plugins - only really need do this once. | 184 | // Init our custom plugins - only really need do this once. |
181 | gst_slvideo_init_class(); | 185 | gst_slvideo_init_class(); |
182 | 186 | ||