diff --git a/channels/chan_sip.c b/channels/chan_sip.c index c439f9d6d0f6d76d3523671781962d0ade054c69..02606fd6849cd826ed77ec7a019b3994be56bcaf 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -5856,7 +5856,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req) /* Note: should really look at the 'freq' and '#chans' params too */ /* Note: This should all be done in the context of the m= above */ - if (!strncasecmp(mimeSubtype, "H26",3)) { /* Video */ + if (!strncasecmp(mimeSubtype, "H26", 3) || !strncasecmp(mimeSubtype, "MP4", 3)) { /* Video */ /* Not going to do anything here for the moment, but we will soon */ } else if (!strncasecmp(mimeSubtype, "T140",4)) { /* Text */ if (p->trtp) {