Quoting Vittorio Giovara (2016-02-09 22:43:13)
> On Tue, Feb 9, 2016 at 4:02 PM, Anton Khirnov <[email protected]> wrote:
> > ---
> >  libavfilter/buffersrc.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c
> > index f5b852f..0079f51 100644
> > --- a/libavfilter/buffersrc.c
> > +++ b/libavfilter/buffersrc.c
> > @@ -327,7 +327,7 @@ static int request_frame(AVFilterLink *link)
> >      }
> >      av_fifo_generic_read(c->fifo, &frame, sizeof(frame), NULL);
> >
> > -    ff_filter_frame(link, frame);
> > +    ret = ff_filter_frame(link, frame);
> >
> >      return ret;
> >  }
> 
> how about `return ff_filter_frame(link, frame);`

To what end?

-- 
Anton Khirnov
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to