mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
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
This commit is contained in:
parent
95fa5e8b95
commit
504c667069
4 changed files with 16 additions and 0 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2008-07-14 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* 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
|
||||
|
||||
2008-07-14 Jan Schmidt <thaytan@noraisin.net>
|
||||
|
||||
* ext/resindvd/gstmpegdemux.c:
|
||||
|
|
|
@ -449,7 +449,9 @@ gst_deinterlace_method_greedy_l_class_init (GstDeinterlaceMethodGreedyLClass *
|
|||
{
|
||||
GstDeinterlaceMethodClass *dim_class = (GstDeinterlaceMethodClass *) klass;
|
||||
GObjectClass *gobject_class = (GObjectClass *) klass;
|
||||
#ifdef HAVE_CPU_I386
|
||||
guint cpu_flags = oil_cpu_get_flags ();
|
||||
#endif
|
||||
|
||||
gobject_class->set_property = gst_deinterlace_method_greedy_l_set_property;
|
||||
gobject_class->get_property = gst_deinterlace_method_greedy_l_get_property;
|
||||
|
|
|
@ -363,7 +363,9 @@ gst_deinterlace_method_greedy_h_class_init (GstDeinterlaceMethodGreedyHClass *
|
|||
{
|
||||
GstDeinterlaceMethodClass *dim_class = (GstDeinterlaceMethodClass *) klass;
|
||||
GObjectClass *gobject_class = (GObjectClass *) klass;
|
||||
#ifdef HAVE_CPU_I386
|
||||
guint cpu_flags = oil_cpu_get_flags ();
|
||||
#endif
|
||||
|
||||
gobject_class->set_property = gst_deinterlace_method_greedy_h_set_property;
|
||||
gobject_class->get_property = gst_deinterlace_method_greedy_h_get_property;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue