mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gst-libs/gst/resample/private.h: don't use optimizations that are #if 0'ed
Original commit message from CVS: * gst-libs/gst/resample/private.h: don't use optimizations that are #if 0'ed
This commit is contained in:
parent
1e5bcfb2ac
commit
1913aba8ed
3 changed files with 15 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||
|
||||
* gst-libs/gst/resample/private.h:
|
||||
don't use optimizations that are #if 0'ed
|
||||
|
||||
2004-05-24 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 85747ad7d18dfc697845a457631f3877fda46906
|
||||
Subproject commit 6e6d3f154c84195e9d505e114ea4a2df216f7277
|
|
@ -88,11 +88,16 @@ void conv_short_double_ppcasm(short *dest, double *src, int n);
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_CPU_PPC
|
||||
#define conv_double_short conv_double_short_table
|
||||
#define conv_short_double conv_short_double_ppcasm
|
||||
# define conv_double_short conv_double_short_table
|
||||
# if 0
|
||||
/* disabled as in .c */
|
||||
# define conv_short_double conv_short_double_ppcasm
|
||||
# else
|
||||
# define conv_short_double conv_short_double_ref
|
||||
# endif
|
||||
#else
|
||||
#define conv_double_short conv_double_short_ref
|
||||
#define conv_short_double conv_short_double_ref
|
||||
# define conv_double_short conv_double_short_ref
|
||||
# define conv_short_double conv_short_double_ref
|
||||
#endif
|
||||
|
||||
#define conv_double_float conv_double_float_ref
|
||||
|
|
Loading…
Reference in a new issue