Commit 8a9b48bf authored by Tim Nicholson's avatar Tim Nicholson Committed by Michael Niedermayer

movenc: Add required 'prof' atom to 'tapt' atom set.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 67420b3d
......@@ -1661,6 +1661,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