resampler: Changed style of includes

There was no code that included files from other directories using
the #include "..." style before.

Signed-off-by: Alexander E. Patrakov <patrakov@gmail.com>
This commit is contained in:
Alexander E. Patrakov 2014-08-17 14:53:08 +06:00 committed by Tanu Kaskinen
parent ee658fa074
commit 1b600a2d54
4 changed files with 4 additions and 4 deletions

View file

@ -26,7 +26,7 @@
#include <pulse/xmalloc.h>
#include "pulsecore/ffmpeg/avcodec.h"
#include "pulsecore/resampler.h"
#include <pulsecore/resampler.h>
struct ffmpeg_data { /* data specific to ffmpeg */
struct AVResampleContext *state;

View file

@ -25,7 +25,7 @@
#include <samplerate.h>
#include "pulsecore/resampler.h"
#include <pulsecore/resampler.h>
static unsigned libsamplerate_resample(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
SRC_DATA data;

View file

@ -26,7 +26,7 @@
#include <pulse/xmalloc.h>
#include <math.h>
#include "pulsecore/resampler.h"
#include <pulsecore/resampler.h>
struct peaks_data { /* data specific to the peak finder pseudo resampler */
unsigned o_counter;

View file

@ -25,7 +25,7 @@
#include <pulse/xmalloc.h>
#include "pulsecore/resampler.h"
#include <pulsecore/resampler.h>
struct trivial_data { /* data specific to the trivial resampler */
unsigned o_counter;