summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-04 00:32:29 +0100
committerwm4 <wm4@nowhere>2014-03-04 00:32:29 +0100
commit44fc61cec0be8f3238761b11e32de43edff0996a (patch)
tree40c8b5b5efe40b44d09d1c75c53bdc4065244d61
parent5606cf29482b096df7a6b4b515c9ecb3d40fdf89 (diff)
downloadmpv-44fc61cec0be8f3238761b11e32de43edff0996a.tar.bz2
mpv-44fc61cec0be8f3238761b11e32de43edff0996a.tar.xz
demux_lavf: fix typo in comment
Pushed too early...
-rw-r--r--demux/demux_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c
index cc503383ea..b781971669 100644
--- a/demux/demux_lavf.c
+++ b/demux/demux_lavf.c
@@ -468,7 +468,7 @@ static void handle_stream(demuxer_t *demuxer, int i)
if (r.num < 1 || r.den < 1)
sh_sub->frame_based = av_q2d(av_inv_q(codec->time_base));
} else {
- // Older libavcodec versions. If the FPS matches the microdvd
+ // Older libavformat versions. If the FPS matches the microdvd
// reader's default, assume it uses frame based timing.
if (codec->time_base.num == 125 && codec->time_base.den == 2997)
sh_sub->frame_based = 23.976;