summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/decoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libffmpegFLAC/decoder.c')
-rw-r--r--apps/codecs/libffmpegFLAC/decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libffmpegFLAC/decoder.c b/apps/codecs/libffmpegFLAC/decoder.c
index 1d46eda353..7bbd6f532d 100644
--- a/apps/codecs/libffmpegFLAC/decoder.c
+++ b/apps/codecs/libffmpegFLAC/decoder.c
@@ -515,7 +515,7 @@ int flac_decode_frame(FLACContext *s,
515 init_get_bits(&s->gb, buf, buf_size*8); 515 init_get_bits(&s->gb, buf, buf_size*8);
516 516
517 tmp = get_bits(&s->gb, 16); 517 tmp = get_bits(&s->gb, 16);
518 if(tmp != 0xFFF8){ 518 if ((tmp & 0xFFFE) != 0xFFF8){
519 return -41; 519 return -41;
520 } 520 }
521 521