[FFmpeg-cvslog] lavfi/show{spectrum, waves}: use ff_filter_frame().
Clément Bœsch
git at videolan.org
Thu Nov 29 11:47:15 CET 2012
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Nov 29 03:56:07 2012 +0100| [9262f13269b1dfdd01deee4104a233f8916c1597] | committer: Clément Bœsch
lavfi/show{spectrum,waves}: use ff_filter_frame().
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9262f13269b1dfdd01deee4104a233f8916c1597
---
libavfilter/avf_showspectrum.c | 4 +---
libavfilter/avf_showwaves.c | 4 +---
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/libavfilter/avf_showspectrum.c b/libavfilter/avf_showspectrum.c
index 5a0aea2..977fca9 100644
--- a/libavfilter/avf_showspectrum.c
+++ b/libavfilter/avf_showspectrum.c
@@ -188,9 +188,7 @@ inline static void push_frame(AVFilterLink *outlink)
showspectrum->filled = 0;
showspectrum->req_fullfilled = 1;
- ff_start_frame(outlink, avfilter_ref_buffer(showspectrum->outpicref, ~AV_PERM_WRITE));
- ff_draw_slice(outlink, 0, outlink->h, 1);
- ff_end_frame(outlink);
+ ff_filter_frame(outlink, avfilter_ref_buffer(showspectrum->outpicref, ~AV_PERM_WRITE));
}
static int request_frame(AVFilterLink *outlink)
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c
index 765e998..30a8e1e 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;
More information about the ffmpeg-cvslog
mailing list