Commit e22e943e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '674fa491'

* commit '674fa491':
  avconv: do not call avcodec_get_frame_defaults()

Conflicts:
	ffmpeg.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 409a143e 674fa491
......@@ -1080,8 +1080,7 @@ static int reap_filters(void)
if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
return AVERROR(ENOMEM);
} else
avcodec_get_frame_defaults(ost->filtered_frame);
}
filtered_frame = ost->filtered_frame;
while (1) {
......
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