Commit 802385db authored by Aidan Skinner's avatar Aidan Skinner Committed by Luca Barbato

mov: Write prof section of tapt tag

Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 8de77b66
......@@ -1527,6 +1527,12 @@ static int mov_write_tapt_tag(AVIOContext *pb, MOVTrack *track)
avio_wb32(pb, width << 16);
avio_wb32(pb, track->enc->height << 16);
avio_wb32(pb, 20);
ffio_wfourcc(pb, "prof");
avio_wb32(pb, 0);
avio_wb32(pb, width << 16);
avio_wb32(pb, track->enc->height << 16);
avio_wb32(pb, 20);
ffio_wfourcc(pb, "enof");
avio_wb32(pb, 0);
......
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