Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-12-12 02:36:10 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-12-12 02:36:10 +0400
commite22e943ef90e5698df128ed245a530d4b97dc317 (patch)
tree9dcd4e4f1f3c233d30a236db0c903c80a6bb3d95 /ffmpeg.c
parent409a143e4b49b9d1176aaf6c76da536ffd90152b (diff)
parent674fa49110a661694188a958be13d529b7c8c5dd (diff)
Merge commit '674fa49110a661694188a958be13d529b7c8c5dd'
* commit '674fa49110a661694188a958be13d529b7c8c5dd': avconv: do not call avcodec_get_frame_defaults() Conflicts: ffmpeg.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index e68620c3ab..a8167ede3f 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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) {