Commit e85c4a47 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/flvenc: Add () around &

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 415f907c
......@@ -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
......
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