summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-10-11 05:46:28 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:04 +0200
commit1d0da7d950c3ce34d5c6540286a873930f447331 (patch)
treeb0e493b5d352e0f44bbdcacf3cb5d4493eb158c3 /demux/demux.c
parent4a6b56fe5674be517f39f37d54602ada31d0da2c (diff)
downloadmpv-1d0da7d950c3ce34d5c6540286a873930f447331.tar.bz2
mpv-1d0da7d950c3ce34d5c6540286a873930f447331.tar.xz
demux: make demuxer list static, remove ancient comment
I'd actually very much encourage demuxer implementations outside problematic libavformat.
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 404e82433a..042e3a9cc3 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -61,11 +61,7 @@ extern const demuxer_desc_t demuxer_desc_libarchive;
extern const demuxer_desc_t demuxer_desc_null;
extern const demuxer_desc_t demuxer_desc_timeline;
-/* Please do not add any new demuxers here. If you want to implement a new
- * demuxer, add it to libavformat, except for wrappers around external
- * libraries and demuxers requiring binary support. */
-
-const demuxer_desc_t *const demuxer_list[] = {
+static const demuxer_desc_t *const demuxer_list[] = {
&demuxer_desc_edl,
&demuxer_desc_cue,
&demuxer_desc_rawaudio,