diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-09-26 16:24:02 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-09-29 14:33:01 +0200 |
commit | 84dfc426cea7242099aea9d47121cea65dffd936 (patch) | |
tree | 1c7a829c4dac13112e48aa055fc4cee4a0682319 /libavresample | |
parent | 4885bde3187a2bb0cae85b67796e07db233bf77f (diff) | |
download | ffmpeg-84dfc426cea7242099aea9d47121cea65dffd936.tar.gz |
avresample: Remove an unused variable
This fixes a -Wunused-variable warning.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/resample.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavresample/resample.c b/libavresample/resample.c index 0c941862d6..705644595a 100644 --- a/libavresample/resample.c +++ b/libavresample/resample.c @@ -234,7 +234,6 @@ int avresample_set_compensation(AVAudioResampleContext *avr, int sample_delta, int compensation_distance) { ResampleContext *c; - AudioData *fifo_buf = NULL; if (compensation_distance < 0) return AVERROR(EINVAL); |