From 99483d311861739795b134edce8afab22fe28f6c Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 24 May 2019 15:21:21 +0200 Subject: [PATCH] demux: fix typos --- demux/demux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demux/demux.c b/demux/demux.c index 602c8134e1..56348c1232 100644 --- a/demux/demux.c +++ b/demux/demux.c @@ -1290,7 +1290,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 @@ -1620,7 +1620,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; } }