Browse Source

avformat/img2dec: avoid seekback on probeing

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
6691eee48c
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      libavformat/img2dec.c

+ 2
- 3
libavformat/img2dec.c View File

@@ -29,6 +29,7 @@
#include "libavutil/parseutils.h" #include "libavutil/parseutils.h"
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "avformat.h" #include "avformat.h"
#include "avio_internal.h"
#include "internal.h" #include "internal.h"
#include "img2.h" #include "img2.h"


@@ -308,7 +309,6 @@ int ff_img_read_header(AVFormatContext *s1)
uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE); uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE);
AVInputFormat *fmt = NULL; AVInputFormat *fmt = NULL;
AVProbeData pd; AVProbeData pd;
int ret;


if (!probe_buffer) if (!probe_buffer)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
@@ -319,7 +319,6 @@ int ff_img_read_header(AVFormatContext *s1)
return probe_buffer_size; return probe_buffer_size;
} }
memset(probe_buffer + probe_buffer_size, 0, AVPROBE_PADDING_SIZE); memset(probe_buffer + probe_buffer_size, 0, AVPROBE_PADDING_SIZE);
avio_seek(s1->pb, -8, SEEK_CUR);


pd.buf = probe_buffer; pd.buf = probe_buffer;
pd.buf_size = 8; pd.buf_size = 8;
@@ -336,7 +335,7 @@ int ff_img_read_header(AVFormatContext *s1)
break; break;
} }
} }
av_free(probe_buffer);
ffio_rewind_with_probe_data(s1->pb, &probe_buffer, probe_buffer_size);
} }
if (st->codec->codec_id == AV_CODEC_ID_NONE) if (st->codec->codec_id == AV_CODEC_ID_NONE)
st->codec->codec_id = ff_guess_image2_codec(s->path); st->codec->codec_id = ff_guess_image2_codec(s->path);


Loading…
Cancel
Save