diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-01-22 12:18:52 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-01-22 20:34:29 +0100 |
commit | 5b10c5e7e4d79750974026f39940164d10b891cb (patch) | |
tree | 568e0124e72db0a5abc094efb971fe8e97b2186a | |
parent | 379d03b0c9fd85f30e66a3fd19b18e0a2c28c1ef (diff) | |
download | ffmpeg-5b10c5e7e4d79750974026f39940164d10b891cb.tar.gz |
lavfi/showwaves: fix check on showwaves->outpicref
outpicref is not always in synch with showwaves->outpicref, which is
changed as a side effect of the call to functions.
Fix regression introduced in 5f634480d1c4ed7711a15d1be07e49177cf351c1,
+10l to me.
-rw-r--r-- | libavfilter/avf_showwaves.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c index 3e5f39f3c9..20f127e63a 100644 --- a/libavfilter/avf_showwaves.c +++ b/libavfilter/avf_showwaves.c @@ -193,7 +193,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *insamples) /* draw data in the buffer */ for (i = 0; i < nb_samples; i++) { - if (!outpicref) { + if (!showwaves->outpicref) { showwaves->outpicref = outpicref = ff_get_video_buffer(outlink, AV_PERM_WRITE|AV_PERM_ALIGN, outlink->w, outlink->h); |