summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/bitstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmapro/bitstream.c')
-rw-r--r--apps/codecs/libwmapro/bitstream.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libwmapro/bitstream.c b/apps/codecs/libwmapro/bitstream.c
index 1e24099..47234e1 100644
--- a/apps/codecs/libwmapro/bitstream.c
+++ b/apps/codecs/libwmapro/bitstream.c
@@ -65,7 +65,8 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
int i;
if(length==0) return;
-
+/* The following define was just added to make the codec (wma pro) compile */
+#define CONFIG_SMALL 0
if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){
for(i=0; i<words; i++) put_bits(pb, 16, AV_RB16(src + 2*i));
}else{