summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showwaves.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-11-29 03:56:07 +0100
committerClément Bœsch <ubitux@gmail.com>2012-11-29 11:44:20 +0100
commit9262f13269b1dfdd01deee4104a233f8916c1597 (patch)
tree826a404f4c275df810ca4d4d1c59a8fb8c54099e /libavfilter/avf_showwaves.c
parent605f1d9865d46f3db5b56b7cac343a3f33637950 (diff)
lavfi/show{spectrum,waves}: use ff_filter_frame().
Diffstat (limited to 'libavfilter/avf_showwaves.c')
-rw-r--r--libavfilter/avf_showwaves.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c
index 765e998694..30a8e1e62f 100644
--- a/libavfilter/avf_showwaves.c
+++ b/libavfilter/avf_showwaves.c
@@ -153,9 +153,7 @@ inline static void push_frame(AVFilterLink *outlink)
{
ShowWavesContext *showwaves = outlink->src->priv;
- ff_start_frame(outlink, showwaves->outpicref);
- ff_draw_slice(outlink, 0, outlink->h, 1);
- ff_end_frame(outlink);
+ ff_filter_frame(outlink, showwaves->outpicref);
showwaves->req_fullfilled = 1;
showwaves->outpicref = NULL;
showwaves->buf_idx = 0;