avformat/utils: Check negative bps before shifting in ff_get_pcm_codec_id()
Fixes: undefined shift. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 2875745d354ab0ebc4af1ebaca5c5a8d26ccdc03) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e5d167149d
commit
145b18ce9a
@ -2833,7 +2833,7 @@ 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)
|
enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags)
|
||||||
{
|
{
|
||||||
if (bps > 64U)
|
if (bps <= 0 || bps > 64)
|
||||||
return AV_CODEC_ID_NONE;
|
return AV_CODEC_ID_NONE;
|
||||||
|
|
||||||
if (flt) {
|
if (flt) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user