diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-07-29 00:04:35 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-07-29 00:04:35 +0100 |
commit | 8b36de8b413673c7c381e92ccdefc9f655475770 (patch) | |
tree | a735d15a5b4598f674e0a5ee3160a96379cdc068 /gst/camerabin2 | |
parent | 3ce5a977ad614f5561e3fb37a77bc470518832b0 (diff) | |
download | gstreamer-plugins-bad-8b36de8b413673c7c381e92ccdefc9f655475770.tar.gz |
Revert "camerabin: update to new tag event creation API"
This reverts commit 5d890b3c92714e1f37163290c32911bcd7818a57.
The new API is the old API.
Diffstat (limited to 'gst/camerabin2')
-rw-r--r-- | gst/camerabin2/gstcamerabin2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c index f0ca68ae4..8091e8e7f 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 ("Application", 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 ("Application", tags)); + gst_pad_send_event (peer, gst_event_new_tag (tags)); gst_object_unref (peer); } } else { |