diff options
author | Michael Niedermayer | 2014-03-29 00:18:56 +0100 |
---|---|---|
committer | Michael Niedermayer | 2014-03-29 00:38:51 +0100 |
commit | 2cffdcbdd7f6e07b42a4d87f646e4e945ab99aa4 (patch) | |
tree | 58864a89629a39b9bac893379fe19ee39b97af5b /libavformat/img2dec.c | |
parent | 1c13e1ef368ae6b6c7582f39e2e9567df8f200db (diff) |
avformat/img2dec: try to read PROBE_BUF_MIN instead of just enough for .pix probing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/img2dec.c')
-rw-r--r-- | libavformat/img2dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index f6df41d4e6..d4912410cc 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -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); |