diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-12 19:46:39 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-01-13 15:51:06 +0100 |
commit | 3fcf841ff54f2e8ab4f75e3dc1a1249d344b9bed (patch) | |
tree | 9b72f6d8b81e5f3a88bf862b0d9aee31f49222e0 /libavformat/mpegtsenc.c | |
parent | 9a7f2aa958570cc430099c6f94959dffe22411b2 (diff) | |
download | ffmpeg-3fcf841ff54f2e8ab4f75e3dc1a1249d344b9bed.tar.gz |
mpegtsenc: fix some typos: aac -> AAC, adts -> ADTS
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r-- | libavformat/mpegtsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |