summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-10-09 19:38:52 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-10-09 19:38:52 +0000
commitb561dfdf478ef882bc18b89a0fe17f98950c5baa (patch)
tree9a3d964df76076f53917856084e29607792e204d
parentffa9e5fc674d274be5324c58e7c9beedb4ecb66d (diff)
downloadgst-plugins-bad-b561dfdf478ef882bc18b89a0fe17f98950c5baa.tar.gz
gst-plugins-bad-b561dfdf478ef882bc18b89a0fe17f98950c5baa.tar.bz2
gst-plugins-bad-b561dfdf478ef882bc18b89a0fe17f98950c5baa.zip
gst/deinterlace2/tvtime/tomsmocomp.c: Fix unused variable compiler warning when not building
Original commit message from CVS: * gst/deinterlace2/tvtime/tomsmocomp.c: (gst_deinterlace_method_tomsmocomp_class_init): Fix unused variable compiler warning when not building X86 assembly.
-rw-r--r--ChangeLog7
-rw-r--r--gst/deinterlace2/tvtime/tomsmocomp.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bf5cb732..113715b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-09 Sebastian Dröge <slomo@circular-chaos.org>
+
+ * gst/deinterlace2/tvtime/tomsmocomp.c:
+ (gst_deinterlace_method_tomsmocomp_class_init):
+ Fix unused variable compiler warning when not building
+ X86 assembly.
+
2008-10-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/flv/gstflvdemux.c: (gst_flv_demux_loop):
diff --git a/gst/deinterlace2/tvtime/tomsmocomp.c b/gst/deinterlace2/tvtime/tomsmocomp.c
index 0565b6c7..64e78c5b 100644
--- a/gst/deinterlace2/tvtime/tomsmocomp.c
+++ b/gst/deinterlace2/tvtime/tomsmocomp.c
@@ -164,7 +164,9 @@ static void
{
GstDeinterlaceMethodClass *dim_class = (GstDeinterlaceMethodClass *) klass;
GObjectClass *gobject_class = (GObjectClass *) klass;
+#ifdef BUILD_X86_ASM
guint cpu_flags = oil_cpu_get_flags ();
+#endif
gobject_class->set_property = gst_deinterlace_method_tomsmocomp_set_property;
gobject_class->get_property = gst_deinterlace_method_tomsmocomp_get_property;