# HG changeset patch # User reimar # Date 1243689353 0 # Node ID 8b0f2c4971f4104d02cad6839701cdf1276afdf9 # Parent da50918c96e87fd7ca6881e370dccf2feccdf3a2 100l, demuxer info tags are _not_ case sensitive, so use strcasecmp. diff -r da50918c96e8 -r 8b0f2c4971f4 mplayer.c --- a/mplayer.c Thu May 28 15:53:27 2009 +0000 +++ b/mplayer.c Sat May 30 13:15:53 2009 +0000 @@ -452,7 +452,7 @@ return NULL; for (n = 0; info[2*n] != NULL ; n++) - if (!strcmp (info[2*n], tag)) + if (!strcasecmp (info[2*n], tag)) break; return info[2*n+1] ? strdup (info[2*n+1]) : NULL;