summaryrefslogtreecommitdiff
path: root/gst/camerabin2
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-07-28 00:32:58 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-07-28 00:32:58 +0200
commitafd50a79f457d7ff6a0d4c4ca6f744a8920d0b91 (patch)
tree4cfab32f4938454612592efbffe1d40cf9d8e4bd /gst/camerabin2
parentdd3ae904f94cb1f67efd81ac881f75cf7c41d439 (diff)
downloadgstreamer-plugins-bad-afd50a79f457d7ff6a0d4c4ca6f744a8920d0b91.tar.gz
tag: Update for taglist/tag event API changes
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 204c77bd7..a63c8681d 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 ("GstSrc", gst_tag_list_copy (taglist)));
+ gst_event_new_tag (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 ("GstSrc", tags));
+ gst_pad_send_event (peer, gst_event_new_tag (tags));
gst_object_unref (peer);
}
} else {