mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: vidc: Reduce the priority of incorrect PAR value message
We get the error message for the incorrect aspect ratio with each frame of the video. By reducing the priority, error message will appear only when we enable it. Change-Id: Iacb8002383ea6c0b7ee86e9cfe14478c0e5ca5c3 Signed-off-by: Rajeshwar Kurapaty <rkurapat@codeaurora.org>
This commit is contained in:
parent
580b81a5d4
commit
5218c0ec5c
1 changed files with 2 additions and 2 deletions
|
@ -897,7 +897,7 @@ void vidc_sm_get_aspect_ratio_info(struct ddl_buf_addr *shared_mem,
|
||||||
VIDC_SM_EXTENDED_PAR_HEIGHT_SHFT);
|
VIDC_SM_EXTENDED_PAR_HEIGHT_SHFT);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
DDL_MSG_ERROR("Incorrect Aspect Ratio.");
|
DDL_MSG_HIGH("Incorrect Aspect Ratio.");
|
||||||
aspect_ratio_info->par_width = 1;
|
aspect_ratio_info->par_width = 1;
|
||||||
aspect_ratio_info->par_height = 1;
|
aspect_ratio_info->par_height = 1;
|
||||||
break;
|
break;
|
||||||
|
@ -955,7 +955,7 @@ void vidc_sm_get_aspect_ratio_info(struct ddl_buf_addr *shared_mem,
|
||||||
VIDC_SM_EXTENDED_PAR_HEIGHT_SHFT);
|
VIDC_SM_EXTENDED_PAR_HEIGHT_SHFT);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
DDL_MSG_ERROR("Incorrect Aspect Ratio.");
|
DDL_MSG_HIGH("Incorrect Aspect Ratio.");
|
||||||
aspect_ratio_info->par_width = 1;
|
aspect_ratio_info->par_width = 1;
|
||||||
aspect_ratio_info->par_height = 1;
|
aspect_ratio_info->par_height = 1;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue