flvdec: Fix = vs. == typo in sample rate check
This commit is contained in:
parent
fd8f91e3f4
commit
390b4d7088
@ -120,7 +120,7 @@ static int flv_same_audio_codec(AVCodecContext *acodec, int flags)
|
||||
return acodec->sample_rate == 8000 &&
|
||||
acodec->codec_id == AV_CODEC_ID_PCM_MULAW;
|
||||
case FLV_CODECID_PCM_ALAW:
|
||||
return acodec->sample_rate = 8000 &&
|
||||
return acodec->sample_rate == 8000 &&
|
||||
acodec->codec_id == AV_CODEC_ID_PCM_ALAW;
|
||||
default:
|
||||
return acodec->codec_tag == (flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
|
||||
|
Loading…
x
Reference in New Issue
Block a user