summaryrefslogtreecommitdiff
path: root/libavfilter/sink_buffer.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-28 20:30:30 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-28 22:28:47 +0200
commit514c44c4fa5ed1629a4fa60e349b7a771c4be3d3 (patch)
tree37212cc0f77a8ffb41a0e0092292f4ee5a2d038e /libavfilter/sink_buffer.c
parent75f26a6f0bbc342bb77ef874f62fa803ee72b1f2 (diff)
sink_buffer: fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/sink_buffer.c')
-rw-r--r--libavfilter/sink_buffer.c2
1 files changed, 1 insertions, 1 deletions
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;