summaryrefslogtreecommitdiff
path: root/libavcodec/flacdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r--libavcodec/flacdec.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index 04cb54d1ce..8c73434912 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -37,6 +37,7 @@
#include "libavutil/crc.h"
#include "avcodec.h"
+#include "internal.h"
#include "bitstream.h"
#include "golomb.h"
#include "flac.h"
@@ -429,6 +430,10 @@ static inline int decode_subframe(FLACContext *s, int channel)
if (s->decorrelation == LEFT_SIDE || s->decorrelation == MID_SIDE)
s->curr_bps++;
}
+ if (s->curr_bps > 32) {
+ ff_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0);
+ return -1;
+ }
if (get_bits1(&s->gb)) {
av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");