]> git.sesse.net Git - ffmpeg/blobdiff - ffprobe.c
mpegaudio: merge two #if CONFIG_FLOAT blocks
[ffmpeg] / ffprobe.c
index 6e26c115a7b30ce65ec24d11dfa825c93ff7ff65..b5d19f06d6306fb3c7e1e9ce75b1d0406f83f891 100644 (file)
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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",