Commit 3fcf841f authored by Stefano Sabatini's avatar Stefano Sabatini

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

parent 9a7f2aa9
...@@ -1024,7 +1024,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -1024,7 +1024,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
ADTSContext *adts = ts_st->adts; ADTSContext *adts = ts_st->adts;
int new_size, err; int new_size, err;
if (!adts) { 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"); "and extradata missing\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment