aboutsummaryrefslogtreecommitdiff
path: root/src/pcm.c
diff options
context:
space:
mode:
authorRicardo Biehl Pasquali <rbpoficial@gmail.com>2016-10-05 20:32:09 -0300
committerRicardo Biehl Pasquali <rbpoficial@gmail.com>2016-10-05 20:32:09 -0300
commit04952ee137f79cd0dae4256f38ff4fb2570017a7 (patch)
treee08b8247388e3fa78e28ddcb85a8059fb93811f5 /src/pcm.c
parent6a38d5fa49fa08e4bf8d20c6fb4741eaedee9dc1 (diff)
included only necessary headers
If users want to use only pcm.c or mixer.c they can. It's not necessary to include tinyalsa/asoundlib.h because mixer.c doesn't use pcm.h and pcm.c doesn't use mixer.h.
Diffstat (limited to 'src/pcm.c')
-rw-r--r--src/pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm.c b/src/pcm.c
index a45ce75..ee9eb76 100644
--- a/src/pcm.c
+++ b/src/pcm.c
@@ -47,7 +47,7 @@
#define __user
#include <sound/asound.h>
-#include <tinyalsa/asoundlib.h>
+#include <tinyalsa/pcm.h>
#define PARAM_MAX SNDRV_PCM_HW_PARAM_LAST_INTERVAL
#define SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP (1<<2)