Commit 920f5b4d authored by Thomas Guillem's avatar Thomas Guillem

mediacodec: fix i_angle not initialized to 0

parent c4a54bae
...@@ -357,22 +357,19 @@ static int StartMediaCodec(decoder_t *p_dec) ...@@ -357,22 +357,19 @@ static int StartMediaCodec(decoder_t *p_dec)
args.video.i_width = p_sys->u.video.i_width; args.video.i_width = p_sys->u.video.i_width;
args.video.i_height = p_sys->u.video.i_height; args.video.i_height = p_sys->u.video.i_height;
if (p_dec->fmt_in.video.orientation != ORIENT_NORMAL) switch (p_dec->fmt_in.video.orientation)
{ {
switch (p_dec->fmt_in.video.orientation) case ORIENT_ROTATED_90:
{ args.video.i_angle = 90;
case ORIENT_ROTATED_90: break;
args.video.i_angle = 90; case ORIENT_ROTATED_180:
break; args.video.i_angle = 180;
case ORIENT_ROTATED_180: break;
args.video.i_angle = 180; case ORIENT_ROTATED_270:
break; args.video.i_angle = 270;
case ORIENT_ROTATED_270: break;
args.video.i_angle = 270; default:
break; args.video.i_angle = 0;
default:
args.video.i_angle = 0;
}
} }
/* Check again the codec name if h264 profile changed */ /* Check again the codec name if h264 profile changed */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment