libavformat/mtv: add test for audio magic

MTV files have the string "MP3" as audio magic on their
header. Always.
Signed-off-by: 's avatarReynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
parent ef034cbf
......@@ -63,6 +63,10 @@ static int mtv_probe(AVProbeData *p)
if (*p->buf != 'A' || *(p->buf + 1) != 'M' || *(p->buf + 2) != 'V')
return 0;
/* Audio magic is always MP3 */
if (p->buf[43] != 'M' || p->buf[44] != 'P' || p->buf[45] != '3')
return 0;
/* Check for nonzero in bpp and (width|height) header fields */
if(!(p->buf[51] && AV_RL16(&p->buf[52]) | AV_RL16(&p->buf[54])))
return 0;
......
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