summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xartigas@fluendo.com>2013-05-09 17:07:29 +0200
committerXavi Artigas <xartigas@fluendo.com>2013-05-09 17:07:29 +0200
commite09eec3297933884b732fc47e8c8ecf14e557ea7 (patch)
tree8bfbfd3d56cd3de9334495bb2878c36a14b83e3c
parent11599cbf55b547e653ae5cca1be9f1b9b21082c3 (diff)
Fix debug category name
-rw-r--r--gst-sdk/tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-sdk/tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m b/gst-sdk/tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m
index 68f6c8f..8a5d6dd 100644
--- a/gst-sdk/tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m
+++ b/gst-sdk/tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m
@@ -33,8 +33,8 @@ GST_DEBUG_CATEGORY_STATIC (debug_category);
self->ui_delegate = uiDelegate;
self->ui_video_view = video_view;
- GST_DEBUG_CATEGORY_INIT (debug_category, "tutorial-2", 0, "iOS tutorial 2");
- gst_debug_set_threshold_for_name("tutorial-2", GST_LEVEL_DEBUG);
+ GST_DEBUG_CATEGORY_INIT (debug_category, "tutorial-3", 0, "iOS tutorial 3");
+ gst_debug_set_threshold_for_name("tutorial-3", GST_LEVEL_DEBUG);
/* Start the bus monitoring task */
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{