summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 348d665d49..5fa0528d3d 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -2827,7 +2827,7 @@ done:
return out_pkt;
}
-void demuxer_help(struct mp_log *log)
+int demuxer_help(struct mp_log *log, const m_option_t *opt, struct bstr name)
{
int i;
@@ -2837,6 +2837,9 @@ void demuxer_help(struct mp_log *log)
mp_info(log, "%10s %s\n",
demuxer_list[i]->name, demuxer_list[i]->desc);
}
+ mp_info(log, "\n");
+
+ return M_OPT_EXIT;
}
static const char *d_level(enum demux_check level)