summaryrefslogtreecommitdiff
path: root/libavfilter/vf_phase.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2014-05-03 22:42:54 +0200
committerClément Bœsch <u@pkh.me>2014-05-08 22:59:47 +0200
commit8de600de553a133bead1b54128c482bcaaa2d292 (patch)
tree6c3b6a4ee84bd8f9556a4589b94d62f6dd4dfe0d /libavfilter/vf_phase.c
parent687119aa9d2d93ee069ae4a320f8d63ee791e6c4 (diff)
avfilter/phase: avoid a memcpy per frame.
Diffstat (limited to 'libavfilter/vf_phase.c')
-rw-r--r--libavfilter/vf_phase.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/libavfilter/vf_phase.c b/libavfilter/vf_phase.c
index 11337e47d2..dd3ecedd10 100644
--- a/libavfilter/vf_phase.c
+++ b/libavfilter/vf_phase.c
@@ -251,13 +251,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_copy_props(out, in);
if (!s->frame) {
+ s->frame = in;
mode = PROGRESSIVE;
- s->frame = ff_get_video_buffer(outlink, outlink->w, outlink->h);
- if (!s->frame) {
- av_frame_free(&in);
- av_frame_free(&out);
- return AVERROR(ENOMEM);
- }
} else {
mode = analyze_plane(ctx, s->mode, s->frame, in);
}
@@ -269,7 +264,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
for (y = 0, top = 1; y < s->planeheight[plane]; y++, top ^= 1) {
memcpy(to, mode == (top ? BOTTOM_FIRST : TOP_FIRST) ? buf : from, s->linesize[plane]);
- memcpy(buf, from, s->linesize[plane]);
buf += s->frame->linesize[plane];
from += in->linesize[plane];
@@ -277,7 +271,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
- av_frame_free(&in);
+ if (in != s->frame)
+ av_frame_free(&s->frame);
+ s->frame = in;
return ff_filter_frame(outlink, out);
}