summaryrefslogtreecommitdiffstats
path: root/demux/demux_disc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-05 16:59:44 +0200
committerwm4 <wm4@nowhere>2014-07-05 17:07:15 +0200
commit37085788e4d25b9eba65e850b80c8184b51b0ad3 (patch)
tree457e5aec0ef26f19b1c9b64faebfd7ede13c222a /demux/demux_disc.c
parentde71b502495cf3c1ce778a141da574d715582f97 (diff)
downloadmpv-37085788e4d25b9eba65e850b80c8184b51b0ad3.tar.bz2
mpv-37085788e4d25b9eba65e850b80c8184b51b0ad3.tar.xz
demux: minor simplification to internal API
Also some other unrelated minor changes.
Diffstat (limited to 'demux/demux_disc.c')
-rw-r--r--demux/demux_disc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux_disc.c b/demux/demux_disc.c
index 2901bb596b..00bee15865 100644
--- a/demux/demux_disc.c
+++ b/demux/demux_disc.c
@@ -193,7 +193,7 @@ static int d_fill_buffer(demuxer_t *demuxer)
pkt->stream_pts = pts;
}
- demuxer_add_packet(demuxer, sh, pkt);
+ demux_add_packet(sh, pkt);
return 1;
}