[vlc-commits] mux: mp4: missing height setup
Francois Cartegnie
git at videolan.org
Fri May 3 13:00:32 CEST 2019
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri May 3 12:59:51 2019 +0200| [33f307201d90c9f2b3ee053b85f0409395c07963] | committer: Francois Cartegnie
mux: mp4: missing height setup
from commit e6582ad46232ecc8d1181e14d82bd4f1fc834d5b
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=33f307201d90c9f2b3ee053b85f0409395c07963
---
modules/mux/mp4/libmp4mux.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/mux/mp4/libmp4mux.c b/modules/mux/mp4/libmp4mux.c
index 32b6994043..0585e62efc 100644
--- a/modules/mux/mp4/libmp4mux.c
+++ b/modules/mux/mp4/libmp4mux.c
@@ -1770,6 +1770,7 @@ bo_t * mp4mux_GetMoov(mp4mux_handle_t *h, vlc_object_t *p_obj, vlc_tick_t i_dura
if (tk->fmt.i_cat != VIDEO_ES)
continue;
i_width = ApplyARtoWidth(tk->fmt.video.i_visible_width);
+ i_height = tk->fmt.video.i_visible_height;
break;
}
bo_add_32be(tkhd, i_width << 16); // width (presentation)
More information about the vlc-commits
mailing list