diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-10-09 19:38:52 +0000 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-05-13 10:34:02 +0200 |
commit | bc8c8515f8910fdd19baf1a3d5696fcc85f9a308 (patch) | |
tree | 8be46810c0ccc2732a2f292550c8616afc0493df | |
parent | 9f5220d44ea68a46093e800a61c2240b616f5bea (diff) |
[MOVED FROM BAD 43/56] 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-- | gst/deinterlace2/tvtime/tomsmocomp.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |