mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
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:
parent
ee658fa074
commit
1b600a2d54
4 changed files with 4 additions and 4 deletions
|
|
@ -26,7 +26,7 @@
|
||||||
#include <pulse/xmalloc.h>
|
#include <pulse/xmalloc.h>
|
||||||
#include "pulsecore/ffmpeg/avcodec.h"
|
#include "pulsecore/ffmpeg/avcodec.h"
|
||||||
|
|
||||||
#include "pulsecore/resampler.h"
|
#include <pulsecore/resampler.h>
|
||||||
|
|
||||||
struct ffmpeg_data { /* data specific to ffmpeg */
|
struct ffmpeg_data { /* data specific to ffmpeg */
|
||||||
struct AVResampleContext *state;
|
struct AVResampleContext *state;
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include <samplerate.h>
|
#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) {
|
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;
|
SRC_DATA data;
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
#include <pulse/xmalloc.h>
|
#include <pulse/xmalloc.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "pulsecore/resampler.h"
|
#include <pulsecore/resampler.h>
|
||||||
|
|
||||||
struct peaks_data { /* data specific to the peak finder pseudo resampler */
|
struct peaks_data { /* data specific to the peak finder pseudo resampler */
|
||||||
unsigned o_counter;
|
unsigned o_counter;
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include <pulse/xmalloc.h>
|
#include <pulse/xmalloc.h>
|
||||||
|
|
||||||
#include "pulsecore/resampler.h"
|
#include <pulsecore/resampler.h>
|
||||||
|
|
||||||
struct trivial_data { /* data specific to the trivial resampler */
|
struct trivial_data { /* data specific to the trivial resampler */
|
||||||
unsigned o_counter;
|
unsigned o_counter;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue