mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-17 13:04:50 +00:00
movenc: Add required 'prof' atom to 'tapt' atom set.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
67420b3de5
commit
8a9b48bfa9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user