Home | History | Annotate | Download | only in src

Lines Matching defs:contrast

91   {CONTRAST_GOTO_SUBMENU,                                 "Contrast changes."},
117 {INC_CONTRAST, "Increase Contrast by one step."},
118 {DEC_CONTRAST, "Decrease Contrast by one step."},
159 { CONTRAST_CTRL, "Get contrast value"},
216 int contrast = CAMERA_DEF_CONTRAST;
703 printf(" Camera is in change contrast resolution mode \n");
714 printf("\nPlease enter your choice for contrast Change: ");
894 ++contrast;
895 if (contrast > CAMERA_MAX_CONTRAST) {
896 contrast = CAMERA_MAX_CONTRAST;
897 printf("Reached max CONTRAST. \n");
899 printf("Increase CONTRAST to %d\n", contrast);
901 /*intrfcCtrl.setContrast(camfd, contrast);*/
921 /* Decreasing the contrast */
922 control.value = contrast;
939 --contrast;
940 if (contrast < CAMERA_MIN_CONTRAST) {
941 contrast = CAMERA_MIN_CONTRAST;
942 printf("Reached min CONTRAST. \n");
944 printf("Decrease CONTRAST to %d\n", contrast);
946 /*intrfcCtrl.setContrast(camfd, contrast);*/
965 /* Decreasing the contrast */
966 control.value = contrast;
1166 /*intrfcCtrl.setContrast(camfd, contrast);*/
1186 /* Decreasing the contrast */
1211 /*intrfcCtrl.setContrast(camfd, contrast);*/
1230 /* Decreasing the contrast */
1501 CDBG("Selection for the contrast increase\n");
1506 CDBG("Selection for the contrast decrease\n");
1750 printf("You chose contrast value\n");