summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-02-13 19:26:18 +0000
committerThom Johansen <thomj@rockbox.org>2006-02-13 19:26:18 +0000
commit37a165d7964cbb09cbab375ddeeabf304b8c558b (patch)
tree8f02ba48e5175c8b8820ed5beaded1a126709936 /apps/codecs/libffmpegFLAC
parent153f906d74eeff933a44fdf038b292d8d543e8f0 (diff)
downloadrockbox-37a165d7964cbb09cbab375ddeeabf304b8c558b.tar.gz
rockbox-37a165d7964cbb09cbab375ddeeabf304b8c558b.zip
Convert to use common internal sample format.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8681 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libffmpegFLAC')
-rw-r--r--apps/codecs/libffmpegFLAC/decoder.h2
-rw-r--r--apps/codecs/libffmpegFLAC/shndec.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libffmpegFLAC/decoder.h b/apps/codecs/libffmpegFLAC/decoder.h
index 9e2240fea3..632bb1b823 100644
--- a/apps/codecs/libffmpegFLAC/decoder.h
+++ b/apps/codecs/libffmpegFLAC/decoder.h
@@ -7,7 +7,7 @@
7#define MAX_BLOCKSIZE 4608 /* Maxsize in samples of one uncompressed frame */ 7#define MAX_BLOCKSIZE 4608 /* Maxsize in samples of one uncompressed frame */
8#define MAX_FRAMESIZE 32768 /* Maxsize in bytes of one compressed frame */ 8#define MAX_FRAMESIZE 32768 /* Maxsize in bytes of one compressed frame */
9 9
10#define FLAC_OUTPUT_DEPTH 28 /* Provide samples left-shifted to 28-bits */ 10#define FLAC_OUTPUT_DEPTH 29 /* Provide samples left-shifted to 28 bits+sign */
11 11
12enum decorrelation_type { 12enum decorrelation_type {
13 INDEPENDENT, 13 INDEPENDENT,
diff --git a/apps/codecs/libffmpegFLAC/shndec.h b/apps/codecs/libffmpegFLAC/shndec.h
index 713a5b56dc..068f4faf28 100644
--- a/apps/codecs/libffmpegFLAC/shndec.h
+++ b/apps/codecs/libffmpegFLAC/shndec.h
@@ -1,6 +1,6 @@
1#include "bitstream.h" 1#include "bitstream.h"
2 2
3#define SHN_OUTPUT_DEPTH 28 3#define SHN_OUTPUT_DEPTH 29 /* 28 bits + sign */
4 4
5#define MAX_CHANNELS 2 5#define MAX_CHANNELS 2
6#define MAX_PRED_ORDER 16 6#define MAX_PRED_ORDER 16