Commit 4b922218 authored by Paul B Mahol's avatar Paul B Mahol

avformat/lafdec: check for not supported bpp

parent 332a4d79
......@@ -132,6 +132,8 @@ static int laf_read_header(AVFormatContext *ctx)
codec_id = AV_CODEC_ID_PCM_S24LE;
bpp = 3;
break;
default:
return AVERROR_INVALIDDATA;
}
s->index = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment