Rename av_transcode() to transcode().

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

Originally committed as revision 24505 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-07-26 13:39:41 +00:00
parent fca05ea8a0
commit 3aace1bcac
1 changed files with 2 additions and 2 deletions

View File

@ -1938,7 +1938,7 @@ static int copy_chapters(int infile, int outfile)
/* /*
* The following code is the main loop of the file converter * 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, int nb_output_files,
AVFormatContext **input_files, AVFormatContext **input_files,
int nb_input_files, int nb_input_files,
@ -4354,7 +4354,7 @@ int main(int argc, char **argv)
} }
ti = getutime(); 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) stream_maps, nb_stream_maps) < 0)
ffmpeg_exit(1); ffmpeg_exit(1);
ti = getutime() - ti; ti = getutime() - ti;