diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-10-09 19:38:52 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-10-09 19:38:52 +0000 |
commit | b561dfdf478ef882bc18b89a0fe17f98950c5baa (patch) | |
tree | 9a3d964df76076f53917856084e29607792e204d | |
parent | ffa9e5fc674d274be5324c58e7c9beedb4ecb66d (diff) | |
download | gst-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-- | ChangeLog | 7 | ||||
-rw-r--r-- | gst/deinterlace2/tvtime/tomsmocomp.c | 2 |
2 files changed, 9 insertions, 0 deletions
@@ -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; |