From a482041565c5ce3f6756b50062a3226505589e45 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 25 Dec 2018 09:23:38 -0700 Subject: [PATCH] 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 --- libhb/stream.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.40.0