From 7bf0f1a54ced37619f48d702b1666462e3d3eaa8 Mon Sep 17 00:00:00 2001 From: Herman Chen Date: Tue, 7 Dec 2021 17:07:40 +0800 Subject: [PATCH] [mpp_buf_slot]: Formating code Signed-off-by: Herman Chen Change-Id: If48dbc3eb797495e4c62a8d8c30c5c0aee105c16 --- mpp/base/mpp_buf_slot.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/mpp/base/mpp_buf_slot.cpp b/mpp/base/mpp_buf_slot.cpp index f7d5cc44..d66974d3 100644 --- a/mpp/base/mpp_buf_slot.cpp +++ b/mpp/base/mpp_buf_slot.cpp @@ -265,22 +265,22 @@ static void generate_info_set(MppBufSlotsImpl *impl, MppFrame frame, RK_U32 forc RK_U32 hor_stride_pixel; switch (fmt & MPP_FRAME_FMT_MASK) { - case MPP_FMT_YUV420SP_10BIT: { - hor_stride_pixel = hal_hor_stride * 8 / 10; - } break; - case MPP_FMT_YUV422_YVYU: - case MPP_FMT_YUV422_YUYV: - case MPP_FMT_RGB565: - case MPP_FMT_BGR565: { - hor_stride_pixel = hal_hor_stride / 2; - } break; - case MPP_FMT_RGB888: - case MPP_FMT_BGR888: { - hor_stride_pixel = hal_hor_stride / 3; - } break; - default : { - hor_stride_pixel = hal_hor_stride; - } break; + case MPP_FMT_YUV420SP_10BIT: { + hor_stride_pixel = hal_hor_stride * 8 / 10; + } break; + case MPP_FMT_YUV422_YVYU: + case MPP_FMT_YUV422_YUYV: + case MPP_FMT_RGB565: + case MPP_FMT_BGR565: { + hor_stride_pixel = hal_hor_stride / 2; + } break; + case MPP_FMT_RGB888: + case MPP_FMT_BGR888: { + hor_stride_pixel = hal_hor_stride / 3; + } break; + default : { + hor_stride_pixel = hal_hor_stride; + } break; } hal_hor_stride = (force_default_align && codec_hor_stride) ? codec_hor_stride : hal_hor_stride;