[FFmpeg-cvslog] r24505 - trunk/ffmpeg.c

stefano subversion
Mon Jul 26 15:39:41 CEST 2010


Author: stefano
Date: Mon Jul 26 15:39:41 2010
New Revision: 24505

Log:
Rename av_transcode() to transcode().

av_ prefix is reserved for libav* libraries functions, it is confusing
to use it for an application function.

Modified:
   trunk/ffmpeg.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	Mon Jul 26 09:10:30 2010	(r24504)
+++ trunk/ffmpeg.c	Mon Jul 26 15:39:41 2010	(r24505)
@@ -1938,7 +1938,7 @@ static int copy_chapters(int infile, int
 /*
  * The following code is the main loop of the file converter
  */
-static int av_transcode(AVFormatContext **output_files,
+static int transcode(AVFormatContext **output_files,
                         int nb_output_files,
                         AVFormatContext **input_files,
                         int nb_input_files,
@@ -4354,7 +4354,7 @@ int main(int argc, char **argv)
     }
 
     ti = getutime();
-    if (av_transcode(output_files, nb_output_files, input_files, nb_input_files,
+    if (transcode(output_files, nb_output_files, input_files, nb_input_files,
                      stream_maps, nb_stream_maps) < 0)
         ffmpeg_exit(1);
     ti = getutime() - ti;



More information about the ffmpeg-cvslog mailing list