summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-07-08 18:27:59 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-07-08 18:27:59 +0000
commit7414140f7cb275e0cc9047dea4a9d379164f0b58 (patch)
treeba669d7cbd62952a1d8e039453c74be8455e7d72 /apps/codecs
parentb0179dcd23dc1c1c7743278a037843e320f25dda (diff)
Previous commit didn't fix compiling on Cygwin, this one should.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21724 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libcook/bitstream.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/libcook/bitstream.h b/apps/codecs/libcook/bitstream.h
index 19d3751bb1..b4c3136be3 100644
--- a/apps/codecs/libcook/bitstream.h
+++ b/apps/codecs/libcook/bitstream.h
@@ -23,7 +23,7 @@
#include <inttypes.h>
#include <stdlib.h>
-#include "assert.h"
+//#include <assert.h>
#include <string.h>
#include <stdio.h>
#include "bswap.h"
@@ -193,7 +193,7 @@ static inline void put_bits(PutBitContext *s, int n, unsigned int value)
int bit_left;
// printf("put_bits=%d %x\n", n, value);
- assert(n == 32 || value < (1U << n));
+ //assert(n == 32 || value < (1U << n));
bit_buf = s->bit_buf;
bit_left = s->bit_left;
@@ -308,7 +308,7 @@ static inline void put_bits(PutBitContext *s, int n, unsigned int value)
static inline void put_sbits(PutBitContext *pb, int bits, int32_t val)
{
- assert(bits >= 0 && bits <= 31);
+ //assert(bits >= 0 && bits <= 31);
put_bits(pb, bits, val & ((1<<bits)-1));
}
@@ -328,12 +328,12 @@ static inline uint8_t* pbBufPtr(PutBitContext *s)
* PutBitContext must be flushed & aligned to a byte boundary before calling this.
*/
static inline void skip_put_bytes(PutBitContext *s, int n){
- assert((put_bits_count(s)&7)==0);
+ //assert((put_bits_count(s)&7)==0);
#ifdef ALT_BITSTREAM_WRITER
FIXME may need some cleaning of the buffer
s->index += n<<3;
#else
- assert(s->bit_left==32);
+ //assert(s->bit_left==32);
s->buf_ptr += n;
#endif
}