au: set bit rate

This commit is contained in:
Justin Ruggles 2012-12-23 13:19:31 -05:00
parent 3f98848d6e
commit 9a7b56883d

View File

@ -111,6 +111,7 @@ static int au_read_header(AVFormatContext *s)
st->codec->codec_id = codec;
st->codec->channels = channels;
st->codec->sample_rate = rate;
st->codec->bit_rate = channels * rate * bps;
avpriv_set_pts_info(st, 64, 1, rate);
return 0;
}