summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2016-02-18 12:48:45 -0500
committerWim Taymans <wtaymans@redhat.com>2016-03-28 11:40:29 +0200
commitd9e4824bfdbcc1a65a9599881ceecd06f03db8dd (patch)
tree2afe236804891a903c337db559b56830ec4ec152
parent4a2245e40012029467e49a669ce3d54c0d5d7b61 (diff)
audio-resample: remove neon double stubs
NEON does not have double types.
-rw-r--r--gst-libs/gst/audio/audio-resampler-neon.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/gst-libs/gst/audio/audio-resampler-neon.h b/gst-libs/gst/audio/audio-resampler-neon.h
index 8643bc20c..1498b7bed 100644
--- a/gst-libs/gst/audio/audio-resampler-neon.h
+++ b/gst-libs/gst/audio/audio-resampler-neon.h
@@ -385,36 +385,6 @@ inner_product_gfloat_cubic_1_neon (gfloat * o, const gfloat * a,
"q9", "q10", "q11", "memory");
}
-static inline void
-inner_product_gdouble_none_1_neon (gdouble * o, const gdouble * a,
- const gdouble * b, gint len, const gdouble * icoeff)
-{
-}
-
-static inline void
-inner_product_gdouble_linear_1_neon (gdouble * o, const gdouble * a,
- const gdouble * b, gint len, const gdouble * icoeff)
-{
-}
-
-static inline void
-inner_product_gdouble_cubic_1_neon (gdouble * o, const gdouble * a,
- const gdouble * b, gint len, const gdouble * icoeff)
-{
-}
-
-static void
-interpolate_gdouble_linear_neon (gdouble * o, const gdouble * a,
- gint len, const gdouble * icoeff)
-{
-}
-
-static void
-interpolate_gdouble_cubic_neon (gdouble * o, const gdouble * a,
- gint len, const gdouble * icoeff)
-{
-}
-
MAKE_RESAMPLE_FUNC (gint16, none, 1, neon);
MAKE_RESAMPLE_FUNC (gint16, linear, 1, neon);
MAKE_RESAMPLE_FUNC (gint16, cubic, 1, neon);
@@ -427,10 +397,6 @@ MAKE_RESAMPLE_FUNC (gfloat, none, 1, neon);
MAKE_RESAMPLE_FUNC (gfloat, linear, 1, neon);
MAKE_RESAMPLE_FUNC (gfloat, cubic, 1, neon);
-MAKE_RESAMPLE_FUNC (gdouble, none, 1, neon);
-MAKE_RESAMPLE_FUNC (gdouble, linear, 1, neon);
-MAKE_RESAMPLE_FUNC (gdouble, cubic, 1, neon);
-
static void
audio_resampler_check_neon (const gchar *target_name, const gchar *option)
{
@@ -447,15 +413,5 @@ audio_resampler_check_neon (const gchar *target_name, const gchar *option)
resample_gfloat_none_1 = resample_gfloat_none_1_neon;
resample_gfloat_linear_1 = resample_gfloat_linear_1_neon;
resample_gfloat_cubic_1 = resample_gfloat_cubic_1_neon;
-
- if (0) {
-
- resample_gdouble_none_1 = resample_gdouble_none_1_neon;
- resample_gdouble_linear_1 = resample_gdouble_linear_1_neon;
- resample_gdouble_cubic_1 = resample_gdouble_cubic_1_neon;
-
- interpolate_gdouble_linear = interpolate_gdouble_linear_neon;
- interpolate_gdouble_cubic = interpolate_gdouble_cubic_neon;
- }
}
}