diff options
author | Dustin Brody <libav@parsoma.net> | 2011-09-15 09:34:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-15 09:34:38 +0200 |
commit | d7d2f0e63c8187d531168256a0ce2aac21d5fce6 (patch) | |
tree | 95e503e893f16eeb15ae31de9a25974cfbd20dd6 /libavformat | |
parent | 4a9628f276a883949f361058b4a7a20477276da0 (diff) | |
download | ffmpeg-d7d2f0e63c8187d531168256a0ce2aac21d5fce6.tar.gz |
matroskadec: fix typo.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 8402967da3..01c9a7b3ce 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1332,7 +1332,7 @@ static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap) } if (encodings_list->nb_elem > 1) { av_log(matroska->ctx, AV_LOG_ERROR, - "Multiple combined encodings no supported"); + "Multiple combined encodings not supported"); } else if (encodings_list->nb_elem == 1) { if (encodings[0].type || (encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP && |