Split av_exit() out of main()

Originally committed as revision 10509 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2007-09-16 18:08:01 +00:00
parent 4ca5ece51e
commit 47f93b61e8
1 changed files with 9 additions and 0 deletions

View File

@ -3789,6 +3789,8 @@ static void show_help(void)
av_opt_show(sws_opts, NULL);
}
static int av_exit();
int main(int argc, char **argv)
{
int i;
@ -3830,6 +3832,13 @@ int main(int argc, char **argv)
printf("bench: utime=%0.3fs\n", ti / 1000000.0);
}
return av_exit();
}
static int av_exit()
{
int i;
/* close files */
for(i=0;i<nb_output_files;i++) {
/* maybe av_close_output_file ??? */