Fix av_freep() call

This commit is contained in:
sfan 2017-07-05 09:39:16 -07:00 committed by Alexander Kojevnikov
parent 766a36afc7
commit ac482d779e

View File

@ -31,7 +31,7 @@ public:
virtual ~FFTPlan()
{
av_freep(this->input);
av_freep(&this->input);
}
int get_input_size() const { return this->input_size; }