Changeset 725 for trunk/core/gui.c
- Timestamp:
- 03/19/09 21:50:54 (4 years ago)
- File:
-
- 1 edited
-
trunk/core/gui.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/gui.c
r723 r725 514 514 #if CAM_CHDK_HAS_EXT_VIDEO_MENU 515 515 {0x23,LANG_MENU_VIDEO_MODE, MENUITEM_ENUM, (int*)gui_video_mode_enum}, 516 #if !VIDEO_QUALITY_ONLY 516 517 {0x5e,LANG_MENU_VIDEO_BITRATE, MENUITEM_ENUM, (int*)gui_video_bitrate_enum}, 518 #endif 517 519 {0x60,LANG_MENU_VIDEO_QUALITY, MENUITEM_INT|MENUITEM_F_UNSIGNED|MENUITEM_F_MINMAX, &conf.video_quality, MENU_MINMAX(1, 99)}, 518 520 {0x5c,LANG_MENU_CLEAR_VIDEO_VALUES, MENUITEM_BOOL, (int*)&conf.clear_video}, … … 1477 1479 } 1478 1480 const char* gui_video_mode_enum(int change, int arg) { 1481 #if !VIDEO_QUALITY_ONLY 1479 1482 static const char* modes[]={ "Bitrate", "Quality"}; 1480 1483 #else 1484 static const char* modes[]={ "Default", "Quality"}; 1485 #endif 1481 1486 conf.video_mode+=change; 1482 1487 if (conf.video_mode<0)
Note: See TracChangeset
for help on using the changeset viewer.