From: John Stebbins Date: Tue, 25 Dec 2018 16:23:38 +0000 (-0700) Subject: Fix rotation of video flagged with 0 rotation X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a482041565c5ce3f6756b50062a3226505589e45;p=handbrake Fix rotation of video flagged with 0 rotation Only breaks in cases that video is *explicitely* flagged with 0 rotation. Fixes https://github.com/HandBrake/HandBrake/issues/1750 --- diff --git a/libhb/stream.c b/libhb/stream.c index 543abdb8e..f089ae298 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -5580,6 +5580,7 @@ static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream, hb_title_t *title ) switch (rotation) { case 0: title->rotation = HB_ROTATION_0; + break; case 90: title->rotation = HB_ROTATION_90; break;