[FFmpeg-cvslog] af_resample: fix request_frame() behavior.

Anton Khirnov git at videolan.org
Mon Jul 9 22:43:09 CEST 2012


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Jul  4 16:46:17 2012 +0200| [1ffb6456629314e992e2b55dd0649f0fb975b6fa] | committer: Anton Khirnov

af_resample: fix request_frame() behavior.

Make sure that an output frame has really been produced before returning
0.

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

 libavfilter/af_resample.c |   14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/libavfilter/af_resample.c b/libavfilter/af_resample.c
index b62a374..8fbe60b 100644
--- a/libavfilter/af_resample.c
+++ b/libavfilter/af_resample.c
@@ -38,6 +38,9 @@ typedef struct ResampleContext {
     AVAudioResampleContext *avr;
 
     int64_t next_pts;
+
+    /* set by filter_samples() to signal an output frame to request_frame() */
+    int got_output;
 } ResampleContext;
 
 static av_cold void uninit(AVFilterContext *ctx)
@@ -124,7 +127,11 @@ static int request_frame(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     ResampleContext   *s = ctx->priv;
-    int ret = ff_request_frame(ctx->inputs[0]);
+    int ret = 0;
+
+    s->got_output = 0;
+    while (ret >= 0 && !s->got_output)
+        ret = ff_request_frame(ctx->inputs[0]);
 
     /* flush the lavr delay buffer */
     if (ret == AVERROR_EOF && s->avr) {
@@ -203,10 +210,13 @@ static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *buf)
             s->next_pts = buf_out->pts + buf_out->audio->nb_samples;
 
             ff_filter_samples(outlink, buf_out);
+            s->got_output = 1;
         }
         avfilter_unref_buffer(buf);
-    } else
+    } else {
         ff_filter_samples(outlink, buf);
+        s->got_output = 1;
+    }
 }
 
 AVFilter avfilter_af_resample = {



More information about the ffmpeg-cvslog mailing list