summaryrefslogtreecommitdiff
path: root/gst/camerabin2
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.com>2012-07-28 15:17:17 -0300
committerThiago Santos <thiago.sousa.santos@collabora.com>2012-07-28 15:17:17 -0300
commit5d890b3c92714e1f37163290c32911bcd7818a57 (patch)
tree57e6134237c99fe74252846aa2a22fc5e0d39be2 /gst/camerabin2
parent803a17be7b573b069abe5fefe9f64133810ba28d (diff)
downloadgstreamer-plugins-bad-5d890b3c92714e1f37163290c32911bcd7818a57.tar.gz
camerabin: update to new tag event creation API
Diffstat (limited to 'gst/camerabin2')
-rw-r--r--gst/camerabin2/gstcamerabin2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c
index a63c8681d..b2211b09d 100644
--- a/gst/camerabin2/gstcamerabin2.c
+++ b/gst/camerabin2/gstcamerabin2.c
@@ -456,7 +456,7 @@ gst_camera_bin_start_capture (GstCameraBin2 * camerabin)
active_pad = gst_element_get_static_pad (camerabin->src,
GST_BASE_CAMERA_SRC_VIDEO_PAD_NAME);
gst_pad_push_event (active_pad,
- gst_event_new_tag (gst_tag_list_copy (taglist)));
+ gst_event_new_tag ("Application", gst_tag_list_copy (taglist)));
gst_object_unref (active_pad);
}
@@ -1364,7 +1364,7 @@ gst_camera_bin_image_src_buffer_probe (GstPad * pad, GstPadProbeInfo * info,
GST_PTR_FORMAT, tags);
if (tags) {
peer = gst_pad_get_peer (pad);
- gst_pad_send_event (peer, gst_event_new_tag (tags));
+ gst_pad_send_event (peer, gst_event_new_tag ("Application", tags));
gst_object_unref (peer);
}
} else {