diff options
author | compn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-01-24 22:14:32 +0000 |
---|---|---|
committer | compn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-01-24 22:14:32 +0000 |
commit | 79d4434b882667cff3df8b6439c086d6ab3c8ac8 (patch) | |
tree | cec5994e86db1b5cc5ff432edf47f7bd678c8032 | |
parent | 39b7c1576d826cfd72f34a3491a094d07b3d7041 (diff) |
add "<!DOCTYPE smil" to smil playlist
patch by Gavin McCullagh gmccullagh!gmail!com
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28349 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | playtreeparser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/playtreeparser.c b/playtreeparser.c index ab80bde020..3a06b0cdab 100644 --- a/playtreeparser.c +++ b/playtreeparser.c @@ -453,6 +453,8 @@ parse_smil(play_tree_parser_t* p) { continue; if (strncasecmp(line,"<?xml",5)==0) // smil in xml continue; + if (strncasecmp(line,"<!DOCTYPE smil",13)==0) // smil in xml + continue; if (strncasecmp(line,"<smil",5)==0 || strncasecmp(line,"<?wpl",5)==0 || strncasecmp(line,"(smil-document",14)==0) break; // smil header found |