aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTaylor Holberton <taylorcholberton@gmail.com>2017-10-12 20:17:29 -0400
committerTaylor Holberton <taylorcholberton@gmail.com>2017-10-12 20:17:29 -0400
commit1770a22cf1c445331668deb45f0f5da80e143150 (patch)
tree0bfc5900b29c61954b118f8595d2223846c53029 /include
parent1893950251319724fae9d5b090bccfbc2fbb38d4 (diff)
corrected tab usage
Diffstat (limited to 'include')
-rw-r--r--include/tinyalsa/pcm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tinyalsa/pcm.h b/include/tinyalsa/pcm.h
index 01f8b9d..5e976d4 100644
--- a/include/tinyalsa/pcm.h
+++ b/include/tinyalsa/pcm.h
@@ -92,27 +92,27 @@ extern "C" {
* For outputs, this means the PCM is playing audio samples.
* @ingroup libtinyalsa-pcm
*/
-#define PCM_STATE_RUNNING 0x03
+#define PCM_STATE_RUNNING 0x03
/** For inputs, this means an overrun occured.
* For outputs, this means an underrun occured.
*/
-#define PCM_STATE_XRUN 0x04
+#define PCM_STATE_XRUN 0x04
/** For outputs, this means audio samples are played.
* A PCM is in a draining state when it is coming to a stop.
*/
-#define PCM_STATE_DRAINING 0x05
+#define PCM_STATE_DRAINING 0x05
/** Means a PCM is suspended.
* @ingroup libtinyalsa-pcm
*/
-#define PCM_STATE_SUSPENDED 0x07
+#define PCM_STATE_SUSPENDED 0x07
/** Means a PCM has been disconnected.
* @ingroup libtinyalsa-pcm
*/
-#define PCM_STATE_DISCONNECTED 0x08
+#define PCM_STATE_DISCONNECTED 0x08
/** Audio sample format of a PCM.
* The first letter specifiers whether the sample is signed or unsigned.