diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-18 12:32:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-18 19:57:43 +0100 |
commit | 74f408cc8e9ab637e22e1fe9c892854eeb275542 (patch) | |
tree | fb433fc141b2e25623824d00a82198a04f84e8db /libavformat/mov.c | |
parent | 5f2c4d044f769c598d7443b6c8fb7e9402f83de8 (diff) | |
download | ffmpeg-74f408cc8e9ab637e22e1fe9c892854eeb275542.tar.gz |
avformat/mov: Fix the the typo
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 57fcda0154..28d60289aa 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -3536,7 +3536,7 @@ static void mov_fix_index(MOVContext *mov, AVStream *st) if ((curr_cts + frame_duration >= (edit_list_duration + edit_list_media_time)) && ((flags & AVINDEX_KEYFRAME) || ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)))) { if (ctts_data_old) { - // If we have CTTS and this is the the first keyframe after edit elist, + // If we have CTTS and this is the first keyframe after edit elist, // wait for one more, because there might be trailing B-frames after this I-frame // that do belong to the edit. if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO && found_keyframe_after_edit == 0) { |