OSDN Git Service

examples/muxing: fix case inconsistency in message
authorStefano Sabatini <stefasab@gmail.com>
Mon, 15 Oct 2012 13:20:35 +0000 (15:20 +0200)
committerStefano Sabatini <stefasab@gmail.com>
Mon, 15 Oct 2012 13:35:49 +0000 (15:35 +0200)
doc/examples/muxing.c

index f46f0be..6daeb9e 100644 (file)
@@ -98,7 +98,7 @@ static void open_audio(AVFormatContext *oc, AVCodec *codec, AVStream *st)
 
     /* open it */
     if (avcodec_open2(c, codec, NULL) < 0) {
-        fprintf(stderr, "could not open codec\n");
+        fprintf(stderr, "Could not open codec\n");
         exit(1);
     }