summaryrefslogtreecommitdiffstats
path: root/demux/demux_edl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-12 22:12:02 +0200
committerwm4 <wm4@nowhere>2013-07-12 22:16:27 +0200
commit6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b (patch)
treef2d8ad0735c87b3186992ad37533c55a865dc19d /demux/demux_edl.c
parentf406482d84b8597235e17bedfb7539a5863d869e (diff)
downloadmpv-6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b.tar.bz2
mpv-6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b.tar.xz
demux: remove useless author/comment fields
Same deal as with previous commit.
Diffstat (limited to 'demux/demux_edl.c')
-rw-r--r--demux/demux_edl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/demux/demux_edl.c b/demux/demux_edl.c
index 0f4bf06dbf..5c6afa2d9b 100644
--- a/demux/demux_edl.c
+++ b/demux/demux_edl.c
@@ -1,6 +1,8 @@
/*
* This file is part of MPlayer.
*
+ * Original author: Uoti Urpala
+ *
* MPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@@ -43,11 +45,8 @@ static int try_open_file(struct demuxer *demuxer, enum demux_check check)
}
const struct demuxer_desc demuxer_desc_edl = {
- .info = "EDL file demuxer",
.name = "edl",
- .shortdesc = "EDL",
- .author = "Uoti Urpala",
- .comment = "",
+ .desc = "mplayer2 edit decision list",
.type = DEMUXER_TYPE_EDL,
.open = try_open_file,
};