Browse Source

Replace deprecated guess_format() with av_guess_format().

Patch by Martin Storsjö reverse(<ts.nitram@nitram>).

Originally committed as revision 21387 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Martin Storsjö Stefano Sabatini 16 years ago
parent
commit
a52ce57d4e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/output-example.c

+ 2
- 2
libavformat/output-example.c View 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");


Loading…
Cancel
Save