diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 11:13:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 11:54:39 +0200 |
commit | fd6228e65711e63a9e35e9a1087d7ce62040e6e3 (patch) | |
tree | a533de5b0c63597c733c7702f507e4df53f5e8e3 /libavfilter/buffersink.c | |
parent | d69a4177b988cadaaadcd349f4b5dc1abe784a2d (diff) | |
download | ffmpeg-fd6228e65711e63a9e35e9a1087d7ce62040e6e3.tar.gz |
lavfi: remove now unused args parameter from AVFilter.init and init_opaque
This is mostly automated global search and replace
The deprecated aconvert filter is disabled, if it still has users
it should be updated
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r-- | libavfilter/buffersink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c index 0f500d0227..03702dca81 100644 --- a/libavfilter/buffersink.c +++ b/libavfilter/buffersink.c @@ -362,7 +362,7 @@ int attribute_align_arg av_buffersink_poll_frame(AVFilterContext *ctx) return av_fifo_size(buf->fifo)/sizeof(AVFilterBufferRef *) + ff_poll_frame(inlink); } -static av_cold int vsink_init(AVFilterContext *ctx, const char *args, void *opaque) +static av_cold int vsink_init(AVFilterContext *ctx, void *opaque) { BufferSinkContext *buf = ctx->priv; AVBufferSinkParams *params = opaque; @@ -411,7 +411,7 @@ static int64_t *concat_channels_lists(const int64_t *layouts, const int *counts) return list; } -static av_cold int asink_init(AVFilterContext *ctx, const char *args, void *opaque) +static av_cold int asink_init(AVFilterContext *ctx, void *opaque) { BufferSinkContext *buf = ctx->priv; AVABufferSinkParams *params = opaque; |