diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-18 02:46:42 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-18 02:47:34 +0100 |
commit | 8b63744f483e1f5a5d4f439fc1bbd858232ed581 (patch) | |
tree | 26645dc06617d696882fc784ed48df55731f8df3 /libavformat | |
parent | 1dd33d472a608daba459b628c170e89d796f1795 (diff) | |
download | ffmpeg-8b63744f483e1f5a5d4f439fc1bbd858232ed581.tar.gz |
Fix "bistream" typo and add a check in tools/patcheck.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/flvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 6ee0dd3077..e8b7f6c161 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -494,7 +494,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) } else if (enc->codec_id == AV_CODEC_ID_AAC && pkt->size > 2 && (AV_RB16(pkt->data) & 0xfff0) == 0xfff0) { av_log(s, AV_LOG_ERROR, "Malformed AAC bitstream detected: " - "use audio bistream filter 'aac_adtstoasc' to fix it " + "use audio bitstream filter 'aac_adtstoasc' to fix it " "('-bsf:a aac_adtstoasc' option with ffmpeg)\n"); return AVERROR_INVALIDDATA; } |