[xiph-commits] r18084 - trunk/ffmpeg2theora/src

j at svn.xiph.org j at svn.xiph.org
Tue Sep 13 18:49:38 PDT 2011


Author: j
Date: 2011-09-13 18:49:38 -0700 (Tue, 13 Sep 2011)
New Revision: 18084

Modified:
   trunk/ffmpeg2theora/src/ffmpeg2theora.c
Log:
fix av api

Modified: trunk/ffmpeg2theora/src/ffmpeg2theora.c
===================================================================
--- trunk/ffmpeg2theora/src/ffmpeg2theora.c	2011-09-12 15:03:49 UTC (rev 18083)
+++ trunk/ffmpeg2theora/src/ffmpeg2theora.c	2011-09-14 01:49:38 UTC (rev 18084)
@@ -2842,7 +2842,7 @@
         }
     }
     if (avformat_open_input(&convert->context, inputfile_name, input_fmt, &format_opts) >= 0) {
-        if (avformat_find_stream_info(convert->context, NULL) >= 0) {
+        if (av_find_stream_info(convert->context) >= 0) {
 
                 if (output_filename_needs_building) {
                     int i;



More information about the commits mailing list