Cleaned up the includes after the restructuring. Indicate which headers are

public and which are internal through <> vs "".


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@500 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2006-02-17 12:10:58 +00:00
parent c278bc6c37
commit 5eda18bf60
137 changed files with 524 additions and 422 deletions

View file

@ -30,13 +30,14 @@
#include <liboil/liboilfuncs.h>
#include <liboil/liboil.h>
#include "endianmacros.h"
#include "sconv.h"
#include "g711.h"
#include <polypcore/g711.h>
#include "endianmacros.h"
#include "sconv-s16le.h"
#include "sconv-s16be.h"
#include "sconv.h"
static void u8_to_float32ne(unsigned n, const void *a, float *b) {
const uint8_t *ca = a;
static const double add = -128.0/127.0, factor = 1.0/127.0;