summaryrefslogtreecommitdiff
path: root/gst/camerabin2
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-06-06 13:02:40 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2012-06-06 13:02:40 +0200
commitb98ec32380a4ebfd6bc11ca087ab1fbb7dfc30a5 (patch)
treeafc0ab9edb78a04007bc75319bc1822096244f36 /gst/camerabin2
parent377556421d5690c454ef5b4bac396fd72cf38430 (diff)
downloadgstreamer-plugins-bad-b98ec32380a4ebfd6bc11ca087ab1fbb7dfc30a5.tar.gz
update for tag event change
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..204c77bd7 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 ("GstSrc", 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 ("GstSrc", tags));
gst_object_unref (peer);
}
} else {