diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-03-05 21:08:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-03-05 21:08:03 +0000 |
commit | cb50328dbb4d29efd393b1ff8ba082b3e3d73cef (patch) | |
tree | 9ba6c02d85348ab013a10224318465998a05f158 /ffmpeg.c | |
parent | 4dcc383a4d7f9a4f4f2cf25a4be3f02622460677 (diff) | |
download | ffmpeg-cb50328dbb4d29efd393b1ff8ba082b3e3d73cef.tar.gz |
free opt_names at the end of main() based on a patch by Limin Wang
Originally committed as revision 8268 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3810,6 +3810,7 @@ int main(int argc, char **argv) av_free(intra_matrix); av_free(inter_matrix); + av_free(opt_names); #ifdef CONFIG_POWERPC_PERF extern void powerpc_display_perf_report(void); |