summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-04 13:50:34 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-04 13:50:34 +0000
commitac61f59a7604020b7254de49e690518307b41ff2 (patch)
treee24ad5b7761d5af6f55dff397c6b55813b2a8479 /ffmpeg.c
parent37f57ab4dddf463dfb34736a43a13e0eed099742 (diff)
Rename av_encode() to av_transcode(), the new name is more meaningful.
Originally committed as revision 22797 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 37ed1653f0..a6672e918a 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1726,7 +1726,7 @@ static int copy_chapters(int infile, int outfile)
/*
* The following code is the main loop of the file converter
*/
-static int av_encode(AVFormatContext **output_files,
+static int av_transcode(AVFormatContext **output_files,
int nb_output_files,
AVFormatContext **input_files,
int nb_input_files,
@@ -4115,7 +4115,7 @@ int main(int argc, char **argv)
}
ti = getutime();
- if (av_encode(output_files, nb_output_files, input_files, nb_input_files,
+ if (av_transcode(output_files, nb_output_files, input_files, nb_input_files,
stream_maps, nb_stream_maps) < 0)
av_exit(1);
ti = getutime() - ti;