Commit d86ef544 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec_align_dimensions2: add missing breaks

This should have just cosmetic effects

Fixes CID603265
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2470851f
...@@ -246,11 +246,13 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, ...@@ -246,11 +246,13 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
w_align = 64; w_align = 64;
h_align = 64; h_align = 64;
} }
break;
case AV_PIX_FMT_RGB555: case AV_PIX_FMT_RGB555:
if (s->codec_id == AV_CODEC_ID_RPZA) { if (s->codec_id == AV_CODEC_ID_RPZA) {
w_align = 4; w_align = 4;
h_align = 4; h_align = 4;
} }
break;
case AV_PIX_FMT_PAL8: case AV_PIX_FMT_PAL8:
case AV_PIX_FMT_BGR8: case AV_PIX_FMT_BGR8:
case AV_PIX_FMT_RGB8: case AV_PIX_FMT_RGB8:
......
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