From d0b68a9d57e827dfbe958be99422a1f271b36758 Mon Sep 17 00:00:00 2001 From: rogerdpack Date: Sun, 19 Aug 2012 08:58:49 -0600 Subject: fix spelling Signed-off-by: rogerdpack Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index bace20c95f..bf78a60f9e 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -509,7 +509,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) int64_t max = ost->st->cur_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT); if (ost->st->cur_dts && ost->st->cur_dts != AV_NOPTS_VALUE && max > pkt->dts) { av_log(s, max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG, - "st:%d PTS: %"PRId64" DTS: %"PRId64" < %"PRId64" invalid, cliping\n", pkt->stream_index, pkt->pts, pkt->dts, max); + "st:%d PTS: %"PRId64" DTS: %"PRId64" < %"PRId64" invalid, clipping\n", pkt->stream_index, pkt->pts, pkt->dts, max); if(pkt->pts >= pkt->dts) pkt->pts = FFMAX(pkt->pts, max); pkt->dts = max; -- cgit v1.2.3