diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-29 03:48:14 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-29 03:48:14 +0100 |
commit | 9236e9f1e11413edf540485d3f6a8aff4f8dac52 (patch) | |
tree | 3f9822c7efb5c48a12435e90f73e308e7acdaa4f | |
parent | 55a5ded67e0eabe4e81577feb92fb530cd618cf7 (diff) | |
download | ffmpeg-9236e9f1e11413edf540485d3f6a8aff4f8dac52.tar.gz |
lavfi/ebur128: use ff_filter_frame() everywhere.
-rw-r--r-- | libavfilter/f_ebur128.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavfilter/f_ebur128.c b/libavfilter/f_ebur128.c index 7fece1376b..f9da80d1cf 100644 --- a/libavfilter/f_ebur128.c +++ b/libavfilter/f_ebur128.c @@ -625,9 +625,8 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *insamples) /* set pts and push frame */ pic->pts = pts; - if ((ret = ff_start_frame(outlink, avfilter_ref_buffer(pic, ~AV_PERM_WRITE))) < 0 || - (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 || - (ret = ff_end_frame(outlink)) < 0) + ret = ff_filter_frame(outlink, avfilter_ref_buffer(pic, ~AV_PERM_WRITE)); + if (ret < 0) return ret; } |