diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-27 01:36:53 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-29 14:49:29 +0200 |
commit | fa0a8faaa4510c946901446e4d2651e3f5f41b60 (patch) | |
tree | 525e2773915552cb29c2f45cffefb442726cee56 | |
parent | 337c68d07142d1eeb540d73e2049896b9ab4f04e (diff) | |
download | ffmpeg-fa0a8faaa4510c946901446e4d2651e3f5f41b60.tar.gz |
ffprobe: fix usage of av_get_codec_tag_string()
-rw-r--r-- | ffprobe.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2382,8 +2382,7 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id #endif /* print AVI/FourCC tag */ - av_get_codec_tag_string(val_str, sizeof(val_str), par->codec_tag); - print_str("codec_tag_string", val_str); + print_str("codec_tag_string", av_fourcc2str(par->codec_tag)); print_fmt("codec_tag", "0x%04x", par->codec_tag); switch (par->codec_type) { |