mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avformat/ivfdec: Change the length field to 32 bits
Signed-off-by: Raphaël Zumer <rzumer@tebako.net>
This commit is contained in:
parent
d3807467b2
commit
9d92403add
1 changed files with 2 additions and 1 deletions
|
|
@ -53,7 +53,8 @@ static int read_header(AVFormatContext *s)
|
|||
st->codecpar->height = avio_rl16(s->pb);
|
||||
time_base.den = avio_rl32(s->pb);
|
||||
time_base.num = avio_rl32(s->pb);
|
||||
st->duration = avio_rl64(s->pb);
|
||||
st->duration = avio_rl32(s->pb);
|
||||
avio_skip(s->pb, 4); // unused
|
||||
|
||||
st->need_parsing = AVSTREAM_PARSE_HEADERS;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue