filmstripenc: fix rounding that caused fate failure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a147c1b2b1
commit
e82afa3e2d
@ -64,7 +64,7 @@ static int write_trailer(AVFormatContext *s)
|
|||||||
avio_wb16(pb, st->codec->width);
|
avio_wb16(pb, st->codec->width);
|
||||||
avio_wb16(pb, st->codec->height);
|
avio_wb16(pb, st->codec->height);
|
||||||
avio_wb16(pb, 0); // leading
|
avio_wb16(pb, 0); // leading
|
||||||
avio_wb16(pb, 1/av_q2d(st->codec->time_base));
|
avio_wb16(pb, st->codec->time_base.den / st->codec->time_base.num);
|
||||||
for (i = 0; i < 16; i++)
|
for (i = 0; i < 16; i++)
|
||||||
avio_w8(pb, 0x00); // reserved
|
avio_w8(pb, 0x00); // reserved
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user