diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 20:30:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 22:28:47 +0200 |
commit | 514c44c4fa5ed1629a4fa60e349b7a771c4be3d3 (patch) | |
tree | 37212cc0f77a8ffb41a0e0092292f4ee5a2d038e /libavfilter | |
parent | 75f26a6f0bbc342bb77ef874f62fa803ee72b1f2 (diff) | |
download | ffmpeg-514c44c4fa5ed1629a4fa60e349b7a771c4be3d3.tar.gz |
sink_buffer: fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/sink_buffer.c | 2 |
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; |