Browse Source

mov: Write prof section of tapt tag

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
tags/n2.3
Aidan Skinner Luca Barbato 12 years ago
parent
commit
802385dbc2
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavformat/movenc.c

+ 6
- 0
libavformat/movenc.c View File

@@ -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);


Loading…
Cancel
Save