Skip to content

Commit

Permalink
ffmpeg: use av_freep() for forced_kf_pts
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed May 8, 2013
1 parent 1e1015f commit 410905f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffmpeg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3259,7 +3259,7 @@ static int transcode(void)
ost->logfile = NULL;
}
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->swr_opts);
av_dict_free(&ost->resample_opts);
Expand Down

0 comments on commit 410905f

Please sign in to comment.