resampler: Changed style of includes
authorAlexander E. Patrakov <patrakov@gmail.com>
Sun, 17 Aug 2014 08:53:08 +0000 (14:53 +0600)
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>
Sun, 17 Aug 2014 10:11:55 +0000 (13:11 +0300)
There was no code that included files from other directories using
the #include "..." style before.

Signed-off-by: Alexander E. Patrakov <patrakov@gmail.com>
src/pulsecore/resampler/ffmpeg.c
src/pulsecore/resampler/libsamplerate.c
src/pulsecore/resampler/peaks.c
src/pulsecore/resampler/trivial.c

index 9e3523667cc6ac65ba083ab49926efa0cbca85a8..cc1e3e4acdae788512b03a05e740bb01e97c4c50 100644 (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;
index 48ea594728ee6e6f965ffb824901b1e123406c98..34a9ba438902de11131527aa9f7c95139a60adb2 100644 (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;
index ef9e99e54ccbf5b74158dae8039ade822114e210..d0b7cd01936f2ccb65a216a724ff12e0fa7581a5 100644 (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;
index 09c81eee2c5fc0fdb0f6591a3de65ebc07485425..be152957659dc180c5db3e1dd20c69031762bb3f 100644 (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;