From c0b3c0ffb7e086f07ef40730018e8dbde8116986 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 21 Jun 2012 11:53:10 +0200 Subject: lavfi/audio: remove unused variable in ff_filter_samples() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix warning: libavfilter/audio.c: In function ‘ff_filter_samples’: libavfilter/audio.c:193:13: warning: unused variable ‘size’ [-Wunused-variable] --- libavfilter/audio.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavfilter/audio.c') diff --git a/libavfilter/audio.c b/libavfilter/audio.c index d473b99393..0a5248936a 100644 --- a/libavfilter/audio.c +++ b/libavfilter/audio.c @@ -190,7 +190,6 @@ void ff_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref) /* prepare to copy the samples if the buffer has insufficient permissions */ if ((dst->min_perms & samplesref->perms) != dst->min_perms || dst->rej_perms & samplesref->perms) { - int size; av_log(link->dst, AV_LOG_DEBUG, "Copying audio data in avfilter (have perms %x, need %x, reject %x)\n", samplesref->perms, link->dstpad->min_perms, link->dstpad->rej_perms); -- cgit v1.2.3