fft-test: free buffers before exiting

Originally committed as revision 24708 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-08-06 07:09:12 +00:00
parent 7e13022a4d
commit 85fbad4555

View File

@ -446,5 +446,12 @@ int main(int argc, char **argv)
ff_dct_end(d);
break;
}
av_free(tab);
av_free(tab1);
av_free(tab2);
av_free(tab_ref);
av_free(exptab);
return err;
}