summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/bitstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libffmpegFLAC/bitstream.h')
-rw-r--r--apps/codecs/libffmpegFLAC/bitstream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libffmpegFLAC/bitstream.h b/apps/codecs/libffmpegFLAC/bitstream.h
index 62e98c07ea..668e23a836 100644
--- a/apps/codecs/libffmpegFLAC/bitstream.h
+++ b/apps/codecs/libffmpegFLAC/bitstream.h
@@ -252,7 +252,7 @@ static inline unsigned int get_bits(GetBitContext *s, int n){
252 return tmp; 252 return tmp;
253} 253}
254 254
255unsigned int get_bits_long(GetBitContext *s, int n); 255unsigned int get_bits_long(GetBitContext *s, int n) ICODE_ATTR;
256 256
257/** 257/**
258 * shows 0-17 bits. 258 * shows 0-17 bits.
@@ -267,7 +267,7 @@ static inline unsigned int show_bits(GetBitContext *s, int n){
267 return tmp; 267 return tmp;
268} 268}
269 269
270unsigned int show_bits_long(GetBitContext *s, int n); 270unsigned int show_bits_long(GetBitContext *s, int n) ICODE_ATTR;
271 271
272static inline void skip_bits(GetBitContext *s, int n){ 272static inline void skip_bits(GetBitContext *s, int n){
273 //Note gcc seems to optimize this to s->index+=n for the ALT_READER :)) 273 //Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
@@ -328,6 +328,6 @@ static inline void init_get_bits(GetBitContext *s,
328 } 328 }
329} 329}
330 330
331void align_get_bits(GetBitContext *s); 331void align_get_bits(GetBitContext *s) ICODE_ATTR;
332 332
333#endif /* BITSTREAM_H */ 333#endif /* BITSTREAM_H */