mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/flvenc: Add () around &
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
415f907ce8
commit
e85c4a4706
@ -368,7 +368,7 @@ static void flv_write_codec_header(AVFormatContext* s, AVCodecParameters* par) {
|
||||
avio_w8(pb, get_audio_flags(s, par));
|
||||
avio_w8(pb, 0); // AAC sequence header
|
||||
|
||||
if (!par->extradata_size && flv->flags & FLV_AAC_SEQ_HEADER_DETECT) {
|
||||
if (!par->extradata_size && (flv->flags & FLV_AAC_SEQ_HEADER_DETECT)) {
|
||||
PutBitContext pbc;
|
||||
int samplerate_index;
|
||||
int channels = flv->audio_par->channels
|
||||
|
Loading…
Reference in New Issue
Block a user