Commit 15672e83 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/utils: remove unused variable

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fcd64dcc
...@@ -347,7 +347,6 @@ int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt, ...@@ -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; 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))) { probe_size = FFMIN(probe_size<<1, FFMAX(max_probe_size, probe_size+1))) {
void *buftmp;
if (probe_size < offset) { if (probe_size < offset) {
continue; continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment