summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2016-03-28 14:07:47 -0800
committerLou Logan <lou@lrcd.com>2016-03-28 14:13:17 -0800
commit06eef96b69d73a31f2b390955d1be0537214a0c8 (patch)
treeca45453b9853a6ad358966292639148a036f3a1a /libavformat/movenc.c
parent99f2a59c2f298c2a8c0d1058759fd0ae81bc8c2e (diff)
fix some a/an typos
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 9af44e3b71..efaac36ba6 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -2523,7 +2523,7 @@ static int mov_write_edts_tag(AVIOContext *pb, MOVMuxContext *mov,
} else {
/* Avoid accidentally ending up with start_ct = -1 which has got a
* special meaning. Normally start_ct should end up positive or zero
- * here, but use FFMIN in case dts is a a small positive integer
+ * here, but use FFMIN in case dts is a small positive integer
* rounded to 0 when represented in MOV_TIMESCALE units. */
av_assert0(av_rescale_rnd(start_dts, MOV_TIMESCALE, track->timescale, AV_ROUND_DOWN) <= 0);
start_ct = -FFMIN(start_dts, 0);