Replace deprecated guess_format() with av_guess_format().
authorMartin Storsjö <martin@martin.st>
Fri, 22 Jan 2010 23:09:08 +0000 (23:09 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 22 Jan 2010 23:09:08 +0000 (23:09 +0000)
Patch by Martin Storsjö reverse(<ts.nitram@nitram>).

Originally committed as revision 21387 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/output-example.c

index 7eb3352..ac7db48 100644 (file)
@@ -447,10 +447,10 @@ int main(int argc, char **argv)
 
     /* auto detect the output format from the name. default is
        mpeg. */
-    fmt = guess_format(NULL, filename, NULL);
+    fmt = av_guess_format(NULL, filename, NULL);
     if (!fmt) {
         printf("Could not deduce output format from file extension: using MPEG.\n");
-        fmt = guess_format("mpeg", NULL, NULL);
+        fmt = av_guess_format("mpeg", NULL, NULL);
     }
     if (!fmt) {
         fprintf(stderr, "Could not find suitable output format\n");