On Fri, Oct 02, 2015 at 05:13:17PM +0200, Nicolas George wrote:
> Signed-off-by: Nicolas George <geo...@nsup.org>
> ---
>  libavfilter/vf_fps.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/libavfilter/vf_fps.c b/libavfilter/vf_fps.c
> index 6154f6d..0f0ed24 100644
> --- a/libavfilter/vf_fps.c
> +++ b/libavfilter/vf_fps.c
> @@ -129,8 +129,7 @@ static int request_frame(AVFilterLink *outlink)
>      int frames_out = s->frames_out;

>      int ret = 0;

init is unneeded after this


>  
> -    while (ret >= 0 && s->frames_out == frames_out)
> -        ret = ff_request_frame(ctx->inputs[0]);
> +    ret = ff_request_frame(ctx->inputs[0]);

frames_out becomes unused

no more comments from me

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

DNS cache poisoning attacks, popular search engine, Google internet authority
dont be evil, please

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to