Browse code

mpegtsenc: fix some typos: aac -> AAC, adts -> ADTS

Stefano Sabatini authored on 2012/01/13 03:46:39
Showing 1 changed files
... ...
@@ -1024,7 +1024,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
1024 1024
             ADTSContext *adts = ts_st->adts;
1025 1025
             int new_size, err;
1026 1026
             if (!adts) {
1027
-                av_log(s, AV_LOG_ERROR, "aac bitstream not in adts format "
1027
+                av_log(s, AV_LOG_ERROR, "AAC bitstream not in ADTS format "
1028 1028
                        "and extradata missing\n");
1029 1029
                 return AVERROR_INVALIDDATA;
1030 1030
             }