Commit 25482d5c authored by Paul B Mahol's avatar Paul B Mahol

avformat/wsddec: set bit_rate, fixes duration estimation

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 423a6a09
...@@ -128,6 +128,7 @@ static int wsd_read_header(AVFormatContext *s) ...@@ -128,6 +128,7 @@ static int wsd_read_header(AVFormatContext *s)
st->codecpar->sample_rate = avio_rb32(pb) / 8; st->codecpar->sample_rate = avio_rb32(pb) / 8;
avio_skip(pb, 4); avio_skip(pb, 4);
st->codecpar->channels = avio_r8(pb) & 0xF; st->codecpar->channels = avio_r8(pb) & 0xF;
st->codecpar->bit_rate = st->codecpar->channels * st->codecpar->sample_rate * 8LL;
if (!st->codecpar->channels) if (!st->codecpar->channels)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
......
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