From ee7f2609a0dcac4008759f20ab9558a68d759821 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 18 Aug 2013 21:30:19 +0200 Subject: [PATCH] avformat/mpegts: print packet size warning only if new size differs from old No case is known to have triggered this, but its more correct to check that the new size differs. Signed-off-by: Michael Niedermayer --- libavformat/mpegts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index e1f9865e47..1213ecae46 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1929,7 +1929,7 @@ static void reanalyze(MpegTSContext *ts) { } else if (ts->size_stat[2] > SIZE_STAT_THRESHOLD) { newsize = TS_FEC_PACKET_SIZE; } - if (newsize) { + if (newsize && newsize != ts->raw_packet_size) { av_log(ts->stream, AV_LOG_WARNING, "changing packet size to %d\n", newsize); ts->raw_packet_size = newsize; }