summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-05-24 15:21:21 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:04 +0200
commitba95a0b5736a6175d5652841af1498206a45105a (patch)
tree636b9e682de5fae2962c32a71dae814093d3774b
parent4f7684463fd1326febe5eebe3134f24c0f834e19 (diff)
downloadmpv-ba95a0b5736a6175d5652841af1498206a45105a.tar.bz2
mpv-ba95a0b5736a6175d5652841af1498206a45105a.tar.xz
demux: fix typos
-rw-r--r--demux/demux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 3bfb7e0126..5130b8ee25 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -1291,7 +1291,7 @@ static void find_backward_restart_pos(struct demux_stream *ds)
} else if (!first && ds->eof) {
// Reached EOF during normal backward demuxing. We probably returned the
// last keyframe range to user. Need to resume at an earlier position.
- // Fall through, hit the no-keyframe case (and possible the BOF check
+ // Fall through, hit the no-keyframe case (and possibly the BOF check
// if there are no packets at all), and then resume_earlier.
} else if (!first) {
return; // no packets yet
@@ -1621,7 +1621,7 @@ static void attempt_range_joining(struct demux_internal *in)
// For enabled non-sparse streams, always require an overlap packet.
if (ds->eager && !join_point_found) {
- MP_WARN(in, "stream %d: no joint point found\n", n);
+ MP_WARN(in, "stream %d: no join point found\n", n);
goto failed;
}
}