[FFmpeg-cvslog] examples/filtering_audio: fix frame leak.

Nicolas George git at videolan.org
Thu Apr 18 20:36:22 CEST 2013


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Thu Apr 18 15:15:22 2013 +0200| [300ca0763b6dd8431011d9edaf74c78af2b57b43] | committer: Nicolas George

examples/filtering_audio: fix frame leak.

The frame is not used after being added to the filter
graph, there is no need to keep the reference.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=300ca0763b6dd8431011d9edaf74c78af2b57b43
---

 doc/examples/filtering_audio.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c
index f674052..b6b05a2 100644
--- a/doc/examples/filtering_audio.c
+++ b/doc/examples/filtering_audio.c
@@ -227,7 +227,7 @@ int main(int argc, char **argv)
 
             if (got_frame) {
                 /* push the audio data from decoded frame into the filtergraph */
-                if (av_buffersrc_add_frame_flags(buffersrc_ctx, frame, AV_BUFFERSRC_FLAG_KEEP_REF) < 0) {
+                if (av_buffersrc_add_frame_flags(buffersrc_ctx, frame, 0) < 0) {
                     av_log(NULL, AV_LOG_ERROR, "Error while feeding the audio filtergraph\n");
                     break;
                 }



More information about the ffmpeg-cvslog mailing list