diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-03-13 21:22:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-12 13:03:10 +0200 |
commit | 9c3f5ef663f2f36e951945969f99776bb12a3e7a (patch) | |
tree | 818d1ed6b4cf96f22a3c98d21d318fd92c1363a7 /ffprobe.c | |
parent | c7d22c5d678e4a1977071296df7c151693358156 (diff) | |
download | ffmpeg-9c3f5ef663f2f36e951945969f99776bb12a3e7a.tar.gz |
ffprobe: tweak error message in open_input_file()
Replace "codec (id=%d)" with "codec with id %d", slightly more
readable.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -285,7 +285,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename) AVCodec *codec; if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) { - fprintf(stderr, "Unsupported codec (id=%d) for input stream %d\n", + fprintf(stderr, "Unsupported codec with id %d for input stream %d\n", stream->codec->codec_id, stream->index); } else if (avcodec_open(stream->codec, codec) < 0) { fprintf(stderr, "Error while opening codec for input stream %d\n", |