summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-01-05 09:00:45 +0100
committerwm4 <wm4@nowhere>2019-09-19 20:37:04 +0200
commitb157e22838e720b7e3b501f6564110a3692f81de (patch)
tree1cb101f113fda0c1f07774539f817aae87e5d7d8 /demux/demux.c
parent007defb06ff1d2f5a07310be1d77f63f1f6c7538 (diff)
downloadmpv-b157e22838e720b7e3b501f6564110a3692f81de.tar.bz2
mpv-b157e22838e720b7e3b501f6564110a3692f81de.tar.xz
demux: fix typo in a comment
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 5fdfee31cd..be866b1642 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -2687,8 +2687,8 @@ static void execute_cache_seek(struct demux_internal *in,
if (target_pts != MP_NOPTS_VALUE) {
MP_VERBOSE(in, "adjust seek target %f -> %f\n",
pts, target_pts);
- // (We assume the find_seek_target() will return the
- // same target for the video stream.)
+ // (We assume the find_seek_target() call will return
+ // the same target for the video stream.)
pts = target_pts;
flags &= ~SEEK_FORWARD;
}