diff options
Diffstat (limited to 'libavformat/smacker.c')
-rw-r--r-- | libavformat/smacker.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/smacker.c b/libavformat/smacker.c index 04fde3d037..7a784c7d4c 100644 --- a/libavformat/smacker.c +++ b/libavformat/smacker.c @@ -88,8 +88,6 @@ static const uint8_t smk_pal[64] = { static int smacker_probe(AVProbeData *p) { - if (p->buf_size < 4) - return 0; if(p->buf[0] == 'S' && p->buf[1] == 'M' && p->buf[2] == 'K' && (p->buf[3] == '2' || p->buf[3] == '4')) return AVPROBE_SCORE_MAX; |