diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-24 22:35:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-24 22:35:27 +0100 |
commit | bd16f0a331eb351a84ed6e71c8329aaaee3d8fb2 (patch) | |
tree | 2d21713eb67f603f024a3dd95a986a4fb1bfb400 /libavfilter/avfiltergraph.c | |
parent | 70d5cd103a72d9a6a82244bfe9dd82f28cc429fa (diff) | |
download | ffmpeg-bd16f0a331eb351a84ed6e71c8329aaaee3d8fb2.tar.gz |
avfiltergraph: put variables used in #if 0 code themselfs under #if 0
Fixes unused variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 9164559779..bd772a87d2 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -271,10 +271,12 @@ static int insert_conv_filter(AVFilterGraph *graph, AVFilterLink *link, static int query_formats(AVFilterGraph *graph, AVClass *log_ctx) { int i, j, ret; +#if 0 char filt_args[128]; AVFilterFormats *formats; AVFilterChannelLayouts *chlayouts; AVFilterFormats *samplerates; +#endif int scaler_count = 0, resampler_count = 0; for (j = 0; j < 2; j++) { |