summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>2010-12-28 16:55:11 -0300
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>2010-12-28 16:55:11 -0300
commit895c07ef046d4edd994c0b497434457ed53dfa5f (patch)
treed8b752a1f5fb44f6b77c45b38d7caea91ca3a076 /gst
parenta2f54e26f2021bf3c179c2056d316b1ed3109cc9 (diff)
downloadgstreamer-plugins-bad-895c07ef046d4edd994c0b497434457ed53dfa5f.tar.gz
camerabin: Remove unused variable
Diffstat (limited to 'gst')
-rw-r--r--gst/camerabin/gstcamerabin.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gst/camerabin/gstcamerabin.c b/gst/camerabin/gstcamerabin.c
index 0f43020c7..f75992316 100644
--- a/gst/camerabin/gstcamerabin.c
+++ b/gst/camerabin/gstcamerabin.c
@@ -1312,7 +1312,6 @@ static void
gst_camerabin_rewrite_tags_to_bin (GstBin * bin, const GstTagList * list)
{
GstElement *setter;
- GstElementFactory *setter_factory;
GstIterator *iter;
GstIteratorResult res = GST_ITERATOR_OK;
gpointer data;
@@ -1333,7 +1332,6 @@ gst_camerabin_rewrite_tags_to_bin (GstBin * bin, const GstTagList * list)
case GST_ITERATOR_OK:
setter = GST_ELEMENT (data);
GST_LOG ("iterating tag setters: %" GST_PTR_FORMAT, setter);
- setter_factory = gst_element_get_factory (setter);
GST_DEBUG ("replacement tags %" GST_PTR_FORMAT, list);
gst_tag_setter_merge_tags (GST_TAG_SETTER (setter), list,
GST_TAG_MERGE_REPLACE_ALL);