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>2012-07-21 23:59:46 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-07-22 00:17:53 +0400
commit0ecaa447f6ca10f5aec940b1b39013ff00c239db (patch)
tree3547f4b96c893c37d63597fd259a1bf6c5aa32bd /libavfilter
parentdc49105c7f268581b914a9d2c6290fd74db286a4 (diff)
vf_overlay: use unref_bufferP()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_overlay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c
index a3a9cc275c..0ce344b2c5 100644
--- a/libavfilter/vf_overlay.c
+++ b/libavfilter/vf_overlay.c
@@ -146,7 +146,7 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&over->y_expr);
if (over->overpicref)
- avfilter_unref_buffer(over->overpicref);
+ avfilter_unref_bufferp(&over->overpicref);
ff_bufqueue_discard_all(&over->queue_main);
ff_bufqueue_discard_all(&over->queue_over);
}