Blame gst-libs/gst/audio/audio-resampler-x86-sse2.h

Packit 0652a1
/* GStreamer
Packit 0652a1
 * Copyright (C) <2016> Wim Taymans <wim.taymans@gmail.com>
Packit 0652a1
 *
Packit 0652a1
 * This library is free software; you can redistribute it and/or
Packit 0652a1
 * modify it under the terms of the GNU Library General Public
Packit 0652a1
 * License as published by the Free Software Foundation; either
Packit 0652a1
 * version 2 of the License, or (at your option) any later version.
Packit 0652a1
 *
Packit 0652a1
 * This library is distributed in the hope that it will be useful,
Packit 0652a1
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 0652a1
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 0652a1
 * Library General Public License for more details.
Packit 0652a1
 *
Packit 0652a1
 * You should have received a copy of the GNU Library General Public
Packit 0652a1
 * License along with this library; if not, write to the
Packit 0652a1
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Packit 0652a1
 * Boston, MA 02110-1301, USA.
Packit 0652a1
 */
Packit 0652a1
Packit 0652a1
#ifndef AUDIO_RESAMPLER_X86_SSE2_H
Packit 0652a1
#define AUDIO_RESAMPLER_X86_SSE2_H
Packit 0652a1
Packit 0652a1
#include "audio-resampler-macros.h"
Packit 0652a1
Packit 0652a1
DECL_RESAMPLE_FUNC (gint16, full, 1, sse2);
Packit 0652a1
DECL_RESAMPLE_FUNC (gint16, linear, 1, sse2);
Packit 0652a1
DECL_RESAMPLE_FUNC (gint16, cubic, 1, sse2);
Packit 0652a1
Packit 0652a1
DECL_RESAMPLE_FUNC (gdouble, full, 1, sse2);
Packit 0652a1
DECL_RESAMPLE_FUNC (gdouble, linear, 1, sse2);
Packit 0652a1
DECL_RESAMPLE_FUNC (gdouble, cubic, 1, sse2);
Packit 0652a1
Packit 0652a1
void
Packit 0652a1
interpolate_gint16_linear_sse2 (gpointer op, const gpointer ap,
Packit 0652a1
    gint len, const gpointer icp, gint astride);
Packit 0652a1
Packit 0652a1
void
Packit 0652a1
interpolate_gint16_cubic_sse2 (gpointer op, const gpointer ap,
Packit 0652a1
    gint len, const gpointer icp, gint astride);
Packit 0652a1
Packit 0652a1
void
Packit 0652a1
interpolate_gdouble_linear_sse2 (gpointer op, const gpointer ap,
Packit 0652a1
    gint len, const gpointer icp, gint astride);
Packit 0652a1
Packit 0652a1
void
Packit 0652a1
interpolate_gdouble_cubic_sse2 (gpointer op, const gpointer ap,
Packit 0652a1
    gint len, const gpointer icp, gint astride);
Packit 0652a1
Packit 0652a1
#endif /* AUDIO_RESAMPLER_X86_SSE2_H */