From 3fcf841ff54f2e8ab4f75e3dc1a1249d344b9bed Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 12 Jan 2012 19:46:39 +0100 Subject: [PATCH] mpegtsenc: fix some typos: aac -> AAC, adts -> ADTS --- libavformat/mpegtsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 4a1a4bba74..5adce36ec5 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -1024,7 +1024,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt) ADTSContext *adts = ts_st->adts; int new_size, err; if (!adts) { - av_log(s, AV_LOG_ERROR, "aac bitstream not in adts format " + av_log(s, AV_LOG_ERROR, "AAC bitstream not in ADTS format " "and extradata missing\n"); return AVERROR_INVALIDDATA; }