diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-27 09:45:35 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-29 14:49:29 +0200 |
commit | bec96a7286bc415dd737c8c8f430f0176999e720 (patch) | |
tree | b89f90048e94b153a4a3d7e494d93c57cc7db0a2 /libavformat/westwood_vqa.c | |
parent | d3cedc54cc872a376851828c88103c653fc8c395 (diff) | |
download | ffmpeg-bec96a7286bc415dd737c8c8f430f0176999e720.tar.gz |
lavf: use av_fourcc2str() where appropriate
Diffstat (limited to 'libavformat/westwood_vqa.c')
-rw-r--r-- | libavformat/westwood_vqa.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/westwood_vqa.c b/libavformat/westwood_vqa.c index 3635c6ab36..5a54f130a0 100644 --- a/libavformat/westwood_vqa.c +++ b/libavformat/westwood_vqa.c @@ -144,9 +144,8 @@ static int wsvqa_read_header(AVFormatContext *s) break; default: - av_log (s, AV_LOG_ERROR, " note: unknown chunk seen (%c%c%c%c)\n", - scratch[0], scratch[1], - scratch[2], scratch[3]); + av_log(s, AV_LOG_ERROR, " note: unknown chunk seen (%s)\n", + av_fourcc2str(chunk_tag)); break; } |