mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-11 18:09:36 +00:00
avformat/dhav: export average frame rate too
This commit is contained in:
parent
fe0416f8a1
commit
c782e7aa9e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user