summaryrefslogtreecommitdiffstats
path: root/gst/deinterlace2/tvtime/vfir.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2008-07-14 14:13:54 +0000
committerEdward Hervey <bilboed@bilboed.com>2008-07-14 14:13:54 +0000
commit504c6670699b077479c010d6a109f56542b47ba9 (patch)
tree20855e7b9eab5a635cc204b31ad267d709bb307d /gst/deinterlace2/tvtime/vfir.c
parent95fa5e8b95b4f2708bd5053a0873d343d667f6dd (diff)
downloadgst-plugins-bad-504c6670699b077479c010d6a109f56542b47ba9.tar.gz
gst-plugins-bad-504c6670699b077479c010d6a109f56542b47ba9.tar.bz2
gst-plugins-bad-504c6670699b077479c010d6a109f56542b47ba9.zip
gst/deinterlace2/tvtime/: Fix build on x86_64
Original commit message from CVS: * gst/deinterlace2/tvtime/greedy.c: (gst_deinterlace_method_greedy_l_class_init): * gst/deinterlace2/tvtime/greedyh.c: (gst_deinterlace_method_greedy_h_class_init): * gst/deinterlace2/tvtime/vfir.c: (gst_deinterlace_method_vfir_class_init): Fix build on x86_64
Diffstat (limited to 'gst/deinterlace2/tvtime/vfir.c')
-rw-r--r--gst/deinterlace2/tvtime/vfir.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/deinterlace2/tvtime/vfir.c b/gst/deinterlace2/tvtime/vfir.c
index fcfbaa6b..0f46e6f4 100644
--- a/gst/deinterlace2/tvtime/vfir.c
+++ b/gst/deinterlace2/tvtime/vfir.c
@@ -207,7 +207,9 @@ static void
gst_deinterlace_method_vfir_class_init (GstDeinterlaceMethodVFIRClass * klass)
{
GstDeinterlaceMethodClass *dim_class = (GstDeinterlaceMethodClass *) klass;
+#ifdef HAVE_CPU_I386
guint cpu_flags = oil_cpu_get_flags ();
+#endif
dim_class->fields_required = 2;
dim_class->deinterlace_frame = deinterlace_frame_vfir;