summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/player/main.c b/player/main.c
index bb22069bfc..06b1867ebe 100644
--- a/player/main.c
+++ b/player/main.c
@@ -278,6 +278,10 @@ static bool handle_help_options(struct MPContext *mpctx)
talloc_free(list);
opt_exit = 1;
}
+ if (opts->audio_spdif && strcmp(opts->audio_spdif, "help") == 0) {
+ MP_INFO(mpctx, "Choices: ac3,dts-hd,dts (and possibly more)\n");
+ opt_exit = 1;
+ }
if (opts->video_decoders && strcmp(opts->video_decoders, "help") == 0) {
struct mp_decoder_list *list = video_decoder_list();
mp_print_decoders(log, MSGL_INFO, "Video decoders:", list);