gst_plugins_base/gst-libs/gst/rtp/gstrtppayloads.c
changeset 16 8e837d1bf446
parent 0 0e761a78d257
child 30 7e817e7e631c
equal deleted inserted replaced
15:4b0c6ed43234 16:8e837d1bf446
   226   const GstRTPPayloadInfo *result = NULL;
   226   const GstRTPPayloadInfo *result = NULL;
   227   gint i;
   227   gint i;
   228 
   228 
   229   for (i = 0; info[i].media; i++) {
   229   for (i = 0; info[i].media; i++) {
   230     if (strcmp (media, info[i].media) == 0
   230     if (strcmp (media, info[i].media) == 0
   231         && g_strcasecmp (encoding_name, info[i].encoding_name) == 0) {
   231         && g_ascii_strcasecmp (encoding_name, info[i].encoding_name) == 0) {
   232       result = &info[i];
   232       result = &info[i];
   233       break;
   233       break;
   234     }
   234     }
   235   }
   235   }
   236   return result;
   236   return result;