mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
movenc: fix tkhd height for imx
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit fffdee89cc
)
This commit is contained in:
parent
813cc7abaf
commit
5bb50c71a3
@ -1218,7 +1218,7 @@ static int mov_write_tkhd_tag(AVIOContext *pb, MOVTrack *track, AVStream *st)
|
||||
track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE)) {
|
||||
if(track->mode == MODE_MOV) {
|
||||
avio_wb32(pb, track->enc->width << 16);
|
||||
avio_wb32(pb, track->enc->height << 16);
|
||||
avio_wb32(pb, track->height << 16);
|
||||
} else {
|
||||
double sample_aspect_ratio = av_q2d(st->sample_aspect_ratio);
|
||||
if(!sample_aspect_ratio || track->height != track->enc->height)
|
||||
|
Loading…
Reference in New Issue
Block a user