summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-01 22:12:39 +0200
committerwm4 <wm4@nowhere>2014-09-01 22:12:39 +0200
commit2f537bafa5c047373e13e597d66d8cbcc6ccf1f4 (patch)
treea848197569bc9126b73aede38d29f772b157e1a3 /demux/demux.c
parent0aaf688c2d39a9e7a4753ffd94a6bc7995eeed23 (diff)
downloadmpv-2f537bafa5c047373e13e597d66d8cbcc6ccf1f4.tar.bz2
mpv-2f537bafa5c047373e13e597d66d8cbcc6ccf1f4.tar.xz
demux: get rid of old wrapper
demux_info_get() used to be central, but was turned into a wrapper, and now there was only one caller left. Get rid of it.
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/demux/demux.c b/demux/demux.c
index b139dbc922..b9ddc56e77 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -965,11 +965,6 @@ int demux_seek(demuxer_t *demuxer, float rel_seek_secs, int flags)
return 1;
}
-char *demux_info_get(demuxer_t *demuxer, const char *opt)
-{
- return mp_tags_get_str(demuxer->metadata, opt);
-}
-
struct sh_stream *demuxer_stream_by_demuxer_id(struct demuxer *d,
enum stream_type t, int id)
{