projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fca05ea
)
Rename av_transcode() to transcode().
author
Stefano Sabatini
<stefano.sabatini-lala@poste.it>
Mon, 26 Jul 2010 13:39:41 +0000
(13:39 +0000)
committer
Stefano Sabatini
<stefano.sabatini-lala@poste.it>
Mon, 26 Jul 2010 13:39:41 +0000
(13:39 +0000)
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
ffmpeg.c
patch
|
blob
|
blame
|
history
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
6625c58
..
00ef744
100644
(file)
--- a/
ffmpeg.c
+++ b/
ffmpeg.c
@@
-1938,7
+1938,7
@@
static int copy_chapters(int infile, int outfile)
/*
* 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;