diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-13 22:37:31 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-14 01:59:11 +0100 |
commit | 05c78f345b623a3eed203ab17da6e1419d56abd0 (patch) | |
tree | 043c7614288dfcc2fe14694cca92a43559e716ed /libavformat/utils.c | |
parent | 05886c9d4edddb07a4cdc6afee8b30cd9c80b4db (diff) | |
download | ffmpeg-05c78f345b623a3eed203ab17da6e1419d56abd0.tar.gz |
avformat/utils: av_probe_input_buffer2 decrease difference to libav
This removes the initialization of 2 unused fields
The change was part of c1868e7ee7b07b40a0fe15f50df89fe499a01a50
but wasnt merged as the fields could still be used
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 29ec5b471e..3f4446deaf 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -342,7 +342,7 @@ int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt, const char *filename, void *logctx, unsigned int offset, unsigned int max_probe_size) { - AVProbeData pd = { filename ? filename : "", NULL, -offset }; + AVProbeData pd = { filename ? filename : "" }; uint8_t *buf = NULL; uint8_t *mime_type; int ret = 0, probe_size, buf_offset = 0; @@ -371,7 +371,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))) { - score = probe_size < max_probe_size ? AVPROBE_SCORE_RETRY : 0; /* read probe data */ |