summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-06 19:02:21 +0200
committerwm4 <wm4@nowhere>2014-07-06 19:02:21 +0200
commitde288762222beb1e20883f5d2c890ff7460ba318 (patch)
tree1f97c72e114656a1b727aef157a1ae245e8414c1 /demux/demux.c
parente6643abc985000802efd25f650a1dbd819bc3d6a (diff)
downloadmpv-de288762222beb1e20883f5d2c890ff7460ba318.tar.bz2
mpv-de288762222beb1e20883f5d2c890ff7460ba318.tar.xz
demux: minor simplification
Oops, should have been part of commit 37085788.
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index de896bdc14..3e08a7828b 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -659,7 +659,7 @@ void demuxer_select_track(struct demuxer *demuxer, struct sh_stream *stream,
}
}
-bool demuxer_stream_is_selected(struct demuxer *d, struct sh_stream *stream)
+bool demux_stream_is_selected(struct sh_stream *stream)
{
return stream && stream->ds->selected;
}