Commit 2cffdcbd authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/img2dec: try to read PROBE_BUF_MIN instead of just enough for .pix probing

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1c13e1ef
......@@ -354,11 +354,11 @@ int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
if (codec->codec_id == AV_CODEC_ID_NONE) {
AVProbeData pd;
AVInputFormat *ifmt;
uint8_t header[20 + AVPROBE_PADDING_SIZE];
uint8_t header[PROBE_BUF_MIN + AVPROBE_PADDING_SIZE];
int ret;
int score = 0;
ret = avio_read(f[0], header, 20);
ret = avio_read(f[0], header, PROBE_BUF_MIN);
if (ret < 0)
return ret;
avio_skip(f[0], -ret);
......
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