From 514c44c4fa5ed1629a4fa60e349b7a771c4be3d3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 28 Sep 2011 20:30:30 +0200 Subject: [PATCH] sink_buffer: fix typo Signed-off-by: Michael Niedermayer --- libavfilter/sink_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/sink_buffer.c b/libavfilter/sink_buffer.c index 6f7c542498..1c4996708a 100644 --- a/libavfilter/sink_buffer.c +++ b/libavfilter/sink_buffer.c @@ -161,7 +161,7 @@ static av_cold int vsink_init(AVFilterContext *ctx, const char *args, void *opaq return AVERROR(EINVAL); } else { #if FF_API_OLD_VSINK_API - buf->pixel_fmts = (const enum PixelFormats *)opaque; + buf->pixel_fmts = (const enum PixelFormat *)opaque; #else params = (AVBufferSinkParams *)opaque; buf->pixel_fmts = params->pixel_fmts;