diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-20 22:50:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-20 23:19:29 +0200 |
commit | 15672e832f47dd729f3214e5e1a5bc8e2d1e9cc1 (patch) | |
tree | e0838de5bcc978a4298f1e375e696611ff107e6a | |
parent | fcd64dcc374e1f50773e6c7c5d06ce6217ee3800 (diff) | |
download | ffmpeg-15672e832f47dd729f3214e5e1a5bc8e2d1e9cc1.tar.gz |
avformat/utils: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index aefee354e9..1c5f08805a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -347,7 +347,6 @@ int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt, for(probe_size= PROBE_BUF_MIN; probe_size<=max_probe_size && !*fmt; probe_size = FFMIN(probe_size<<1, FFMAX(max_probe_size, probe_size+1))) { - void *buftmp; if (probe_size < offset) { continue; |