diff options
author | Michael Niedermayer <[email protected]> | 2016-05-11 00:00:52 +0200 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2016-05-11 00:32:32 +0200 |
commit | ea791c080dd5494b3bee0c618a3f52e371b5f320 (patch) | |
tree | 24cfae484d1e4d9728464bb0332e9463fff1660e | |
parent | 8efaee3710baa87af40556a622bf2d96a27c6425 (diff) |
avformat/utils: Check bps before using it in a shift in ff_get_pcm_codec_id()
Fixes undefined shift
Fixes: usan_shift
Found-by: Thomas Guilbert <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 52395d4592..774a2ba4f3 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2955,6 +2955,9 @@ enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag) enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags) { + if (bps > 64U) + return AV_CODEC_ID_NONE; + if (flt) { switch (bps) { case 32: |