| 3062 | } |
| 3063 | |
| 3064 | static void show_help(void) |
| 3065 | { |
| 3066 | show_usage(); |
| 3067 | show_help_options(options, "Main options:\n", |
| 3068 | OPT_EXPERT, 0); |
| 3069 | show_help_options(options, "\nAdvanced options:\n", |
| 3070 | OPT_EXPERT, OPT_EXPERT); |
| 3071 | printf("\nWhile playing:\n" |
| 3072 | "q, ESC quit\n" |
| 3073 | "f toggle full screen\n" |
| 3074 | "p, SPC pause\n" |
| 3075 | "a cycle audio channel\n" |
| 3076 | "v cycle video channel\n" |
| 3077 | "t cycle subtitle channel\n" |
| 3078 | "w show audio waves\n" |
| 3079 | "s activate frame-step mode\n" |
| 3080 | "left/right seek backward/forward 10 seconds\n" |
| 3081 | "down/up seek backward/forward 1 minute\n" |
| 3082 | "mouse click seek to percentage in file corresponding to fraction of width\n" |
| 3083 | ); |
| 3084 | } |
| 3085 | |
| 3086 | static void opt_input_file(const char *filename) |
| 3087 | { |
nothing calls this directly
no test coverage detected