# HG changeset patch # User rbultje # Date 1236439255 0 # Node ID 7d88e3f6943d06d30654c3e7db0523e790aadb1c # Parent bf7e0b55d9ecb3e463c017353cf24d3cbe445ead rtpmap is case-insensitive, see comment from Luca in "[PATCH] rtsp.c: keep-alive" thread. diff -r bf7e0b55d9ec -r 7d88e3f6943d rtsp.c --- a/rtsp.c Fri Mar 06 21:19:16 2009 +0000 +++ b/rtsp.c Sat Mar 07 15:20:55 2009 +0000 @@ -124,7 +124,7 @@ if (payload_type >= RTP_PT_PRIVATE) { RTPDynamicProtocolHandler *handler= RTPFirstDynamicPayloadHandler; while(handler) { - if (!strcmp(buf, handler->enc_name) && (codec->codec_type == handler->codec_type)) { + if (!strcasecmp(buf, handler->enc_name) && (codec->codec_type == handler->codec_type)) { codec->codec_id = handler->codec_id; rtsp_st->dynamic_handler= handler; if(handler->open) {