Browse Source

Replace call to deprecated avcodec_build() with avcodec_version().

Originally committed as revision 14521 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun 16 years ago
parent
commit
7254edb5ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmdutils.c

+ 1 - 1
cmdutils.c

@@ -223,7 +223,7 @@ void show_version(void) {
            "libavcodec  %d\n"
            "libavformat %d\n"
            "libavdevice %d\n",
-           LIBAVUTIL_BUILD, avcodec_build(), LIBAVFORMAT_BUILD, LIBAVDEVICE_BUILD);
+           LIBAVUTIL_BUILD, avcodec_version(), LIBAVFORMAT_BUILD, LIBAVDEVICE_BUILD);
 }
 
 void show_license(void)