Commit 410905f7 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: use av_freep() for forced_kf_pts

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1e1015f3
...@@ -3259,7 +3259,7 @@ static int transcode(void) ...@@ -3259,7 +3259,7 @@ static int transcode(void)
ost->logfile = NULL; ost->logfile = NULL;
} }
av_freep(&ost->st->codec->subtitle_header); av_freep(&ost->st->codec->subtitle_header);
av_free(ost->forced_kf_pts); av_freep(&ost->forced_kf_pts);
av_dict_free(&ost->opts); av_dict_free(&ost->opts);
av_dict_free(&ost->swr_opts); av_dict_free(&ost->swr_opts);
av_dict_free(&ost->resample_opts); av_dict_free(&ost->resample_opts);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment