diff options
author | Clément Bœsch <u@pkh.me> | 2016-01-30 13:08:37 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-01-30 13:08:37 +0100 |
commit | d3d03fd55e082a2ea14381d4ccfd94d8c2a9abd4 (patch) | |
tree | d49cac8adc4c134b431a45d9d881c7b5d2c7109c /libavformat/vqf.c | |
parent | 0dd201d947e213887960fe8835586c0b0d73a40e (diff) | |
download | ffmpeg-d3d03fd55e082a2ea14381d4ccfd94d8c2a9abd4.tar.gz |
lavf/vqf: fix suported/supported typo
Diffstat (limited to 'libavformat/vqf.c')
-rw-r--r-- | libavformat/vqf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vqf.c b/libavformat/vqf.c index a544356168..3c897e1cc6 100644 --- a/libavformat/vqf.c +++ b/libavformat/vqf.c @@ -211,7 +211,7 @@ static int vqf_read_header(AVFormatContext *s) size = 2048; break; default: - av_log(s, AV_LOG_ERROR, "Mode not suported: %d Hz, %"PRId64" kb/s.\n", + av_log(s, AV_LOG_ERROR, "Mode not supported: %d Hz, %"PRId64" kb/s.\n", st->codec->sample_rate, (int64_t)st->codec->bit_rate); return -1; } |