[FFmpeg-cvslog] ffplay: simplify code by using avfilter_unref_bufferp()
Stefano Sabatini
git at videolan.org
Thu Jun 28 22:28:37 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Jun 26 15:17:24 2012 +0200| [7877b50d181be1e044eb8b57f203c763297651b1] | committer: Stefano Sabatini
ffplay: simplify code by using avfilter_unref_bufferp()
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7877b50d181be1e044eb8b57f203c763297651b1
---
ffplay.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/ffplay.c b/ffplay.c
index c4b8f8e..ab4eae5 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -908,10 +908,7 @@ static void stream_close(VideoState *is)
for (i = 0; i < VIDEO_PICTURE_QUEUE_SIZE; i++) {
vp = &is->pictq[i];
#if CONFIG_AVFILTER
- if (vp->picref) {
- avfilter_unref_buffer(vp->picref);
- vp->picref = NULL;
- }
+ avfilter_unref_bufferp(&vp->picref);
#endif
if (vp->bmp) {
SDL_FreeYUVOverlay(vp->bmp);
@@ -1317,9 +1314,7 @@ static void alloc_picture(AllocEventProps *event_props)
SDL_FreeYUVOverlay(vp->bmp);
#if CONFIG_AVFILTER
- if (vp->picref)
- avfilter_unref_buffer(vp->picref);
- vp->picref = NULL;
+ avfilter_unref_bufferp(&vp->picref);
#endif
vp->width = frame->width;
@@ -1425,8 +1420,7 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts1, int64_
if (vp->bmp) {
AVPicture pict = { { 0 } };
#if CONFIG_AVFILTER
- if (vp->picref)
- avfilter_unref_buffer(vp->picref);
+ avfilter_unref_bufferp(&vp->picref);
vp->picref = src_frame->opaque;
#endif
More information about the ffmpeg-cvslog
mailing list