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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libpcm/pcm_common.h b/apps/codecs/libpcm/pcm_common.h
index b303273667..412ffbce0b 100644
--- a/apps/codecs/libpcm/pcm_common.h
+++ b/apps/codecs/libpcm/pcm_common.h
@@ -25,8 +25,8 @@
25#include <stdbool.h> 25#include <stdbool.h>
26#include <inttypes.h> 26#include <inttypes.h>
27 27
28/* decoded pcm sample depth */ 28/* decoded pcm sample depth (sample 28bit + sign 1bit) */
29#define PCM_OUTPUT_DEPTH 28 29#define PCM_OUTPUT_DEPTH 29
30 30
31/* Macro that sign extends an unsigned byte */ 31/* Macro that sign extends an unsigned byte */
32#define SE(x) ((int32_t)((int8_t)(x))) 32#define SE(x) ((int32_t)((int8_t)(x)))