summaryrefslogtreecommitdiff
path: root/src/input/librtsp/rtsp.c
diff options
context:
space:
mode:
authorStefan Holst <holstsn@users.sourceforge.net>2002-12-14 00:02:30 +0000
committerStefan Holst <holstsn@users.sourceforge.net>2002-12-14 00:02:30 +0000
commit5b1e75b3f7a62fee2732541fb69fcd4319f53edc (patch)
tree9e654fdff0cd6419ce98c012ceba8bdce2ebf79e /src/input/librtsp/rtsp.c
parent4ee79ef2a5f0843917309052bd672060a2a2e06e (diff)
downloadxine-lib-5b1e75b3f7a62fee2732541fb69fcd4319f53edc.tar.gz
xine-lib-5b1e75b3f7a62fee2732541fb69fcd4319f53edc.tar.bz2
- rtsp audio only streams now work better
- a hack to handle REDIRECT rtsp method - make rtsp fields case insensitive - add '.rm' suffix to mrls to force handling by demux_real. CVS patchset: 3516 CVS date: 2002/12/14 00:02:30
Diffstat (limited to 'src/input/librtsp/rtsp.c')
-rw-r--r--src/input/librtsp/rtsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/librtsp/rtsp.c b/src/input/librtsp/rtsp.c
index f851de9c4..b1f92ce6a 100644
--- a/src/input/librtsp/rtsp.c
+++ b/src/input/librtsp/rtsp.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: rtsp.c,v 1.1 2002/12/12 22:14:55 holstsn Exp $
+ * $Id: rtsp.c,v 1.2 2002/12/14 00:02:31 holstsn Exp $
*
* a minimalistic implementation of rtsp protocol,
* *not* RFC 2326 compilant yet.
@@ -654,7 +654,7 @@ char *rtsp_search_answers(rtsp_t *s, const char *tag) {
answer=s->answers;
while (*answer) {
- if (!strncmp(*answer,tag,strlen(tag))) {
+ if (!strncasecmp(*answer,tag,strlen(tag))) {
ptr=strchr(*answer,':');
ptr++;
while(*ptr==' ') ptr++;