diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-09-19 13:26:35 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-19 23:40:34 +0200 |
commit | 39ca7641c8c8ce7031dc67584067dc1faecd6a2d (patch) | |
tree | a39d0dc2f94377f77b3b8d8a03666e7006601ce3 | |
parent | e681baf63884e1060ac5ee4f6c2089050d6b4056 (diff) | |
download | ffmpeg-39ca7641c8c8ce7031dc67584067dc1faecd6a2d.tar.gz |
avresample/resample: remove unused variable
This fixes a -Wunused-variable, see e.g
http://fate.ffmpeg.org/log.cgi?time=20150919162338&log=compile&slot=x86_64-archlinux-gcc-threads.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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 8f920fa6cf..651670d6f8 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); |