summaryrefslogtreecommitdiff
path: root/apps/codecs/libcook/bitstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libcook/bitstream.h')
-rw-r--r--apps/codecs/libcook/bitstream.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs/libcook/bitstream.h b/apps/codecs/libcook/bitstream.h
index 3670285904..e3e3d77595 100644
--- a/apps/codecs/libcook/bitstream.h
+++ b/apps/codecs/libcook/bitstream.h
@@ -33,7 +33,7 @@
33#include "libavutil/common.h" 33#include "libavutil/common.h"
34#include "libavutil/intreadwrite.h" 34#include "libavutil/intreadwrite.h"
35#include "libavutil/log.h" 35#include "libavutil/log.h"
36#include "mathops.h" 36//#include "mathops.h"
37 37
38#if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER) 38#if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
39# define ALT_BITSTREAM_READER 39# define ALT_BITSTREAM_READER
@@ -707,12 +707,14 @@ static inline unsigned int get_bits_long(GetBitContext *s, int n){
707 } 707 }
708} 708}
709 709
710#if 0
710/** 711/**
711 * reads 0-32 bits as a signed integer. 712 * reads 0-32 bits as a signed integer.
712 */ 713 */
713static inline int get_sbits_long(GetBitContext *s, int n) { 714static inline int get_sbits_long(GetBitContext *s, int n) {
714 return sign_extend(get_bits_long(s, n), n); 715 return sign_extend(get_bits_long(s, n), n);
715} 716}
717#endif
716 718
717/** 719/**
718 * shows 0-32 bits. 720 * shows 0-32 bits.