diff options
author | wm4 <wm4@nowhere> | 2013-07-12 22:12:02 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-07-12 22:16:27 +0200 |
commit | 6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b (patch) | |
tree | f2d8ad0735c87b3186992ad37533c55a865dc19d /demux/demux_cue.c | |
parent | f406482d84b8597235e17bedfb7539a5863d869e (diff) | |
download | mpv-6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b.tar.bz2 mpv-6c414f8c7a66ce3bb0c2446cb7fb0fb802a9e98b.tar.xz |
demux: remove useless author/comment fields
Same deal as with previous commit.
Diffstat (limited to 'demux/demux_cue.c')
-rw-r--r-- | demux/demux_cue.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/demux/demux_cue.c b/demux/demux_cue.c index db2f40ea57..4d2c03dcce 100644 --- a/demux/demux_cue.c +++ b/demux/demux_cue.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 @@ -48,11 +50,8 @@ static int try_open_file(struct demuxer *demuxer, enum demux_check check) } const struct demuxer_desc demuxer_desc_cue = { - .info = "CUE file demuxer", .name = "cue", - .shortdesc = "CUE", - .author = "Uoti Urpala", - .comment = "", + .desc = "CUE sheet", .type = DEMUXER_TYPE_CUE, .open = try_open_file, }; |