avformat/dhav: export average frame rate too

This commit is contained in:
Paul B Mahol 2018-12-09 10:49:00 +01:00
parent fe0416f8a1
commit c782e7aa9e
1 changed files with 2 additions and 0 deletions

View File

@ -288,6 +288,8 @@ static int dhav_read_packet(AVFormatContext *s, AVPacket *pkt)
}
st->codecpar->width = dhav->width;
st->codecpar->height = dhav->height;
st->avg_frame_rate.num = dhav->frame_rate;
st->avg_frame_rate.den = 1;
st->priv_data = dst = av_mallocz(sizeof(DHAVStream));
if (!st->priv_data)
return AVERROR(ENOMEM);