[FFmpeg-soc] [soc]: r5203 - concat/libavformat/pls.c

gkovacs subversion at mplayerhq.hu
Thu Aug 20 17:29:33 CEST 2009


Author: gkovacs
Date: Thu Aug 20 17:29:33 2009
New Revision: 5203

Log:
probe for larger segment of pls header tag

Modified:
   concat/libavformat/pls.c

Modified: concat/libavformat/pls.c
==============================================================================
--- concat/libavformat/pls.c	Thu Aug 20 17:20:09 2009	(r5202)
+++ concat/libavformat/pls.c	Thu Aug 20 17:29:33 2009	(r5203)
@@ -37,7 +37,7 @@ static const AVCodecTag codec_pls_tags[]
 
 static int pls_probe(AVProbeData *p)
 {
-    if (!strncmp(p->buf, "[playli", 7))
+    if (!strncmp(p->buf, "[playlist]", 10))
         return AVPROBE_SCORE_MAX;
     else
         return 0;


More information about the FFmpeg-soc mailing list