summaryrefslogtreecommitdiff
path: root/apps/codecs/libpcm/pcm_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libpcm/pcm_common.h')
-rw-r--r--apps/codecs/libpcm/pcm_common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/codecs/libpcm/pcm_common.h b/apps/codecs/libpcm/pcm_common.h
index 7dcacbd19a..b303273667 100644
--- a/apps/codecs/libpcm/pcm_common.h
+++ b/apps/codecs/libpcm/pcm_common.h
@@ -25,6 +25,9 @@
25#include <stdbool.h> 25#include <stdbool.h>
26#include <inttypes.h> 26#include <inttypes.h>
27 27
28/* decoded pcm sample depth */
29#define PCM_OUTPUT_DEPTH 28
30
28/* Macro that sign extends an unsigned byte */ 31/* Macro that sign extends an unsigned byte */
29#define SE(x) ((int32_t)((int8_t)(x))) 32#define SE(x) ((int32_t)((int8_t)(x)))
30 33