Home | History | Annotate | Download | only in src

Lines Matching refs:sptr1

286                     const char *sptr1, *eptr1;
290 sptr1 = line_start_ptr + oscl_strlen("a=rtpmap:");
291 sptr1 = skip_whitespace(sptr1, line_end_ptr);
295 if (sptr1 >= line_end_ptr)
300 eptr1 = skip_to_whitespace(sptr1, line_end_ptr);
301 if (eptr1 <= sptr1)
307 if (PV_atoi(sptr1, 'd', (eptr1 - sptr1), payloadNumber) == true)
333 sptr1 = skip_whitespace(eptr1, line_end_ptr);
334 if (sptr1 >= line_end_ptr)
340 eptr1 = skip_to_whitespace(sptr1, line_end_ptr);
341 if (eptr1 <= sptr1)
349 for( ii = 0; ii < (eptr1-sptr1); ii++ )
351 if(sptr1[ii] == '/')
353 tmp_end_ptr = sptr1 + ii;
359 tmp_end_ptr = oscl_strstr(sptr1, SDP_FWD_SLASH);
372 tempBufLen = oscl_strlen(mediaStr->getType()) + (tmp_end_ptr - sptr1) + 2;
383 oscl_strncat(tmpBuf, sptr1, (tmp_end_ptr - sptr1));
453 sptr1 = line_start_ptr + oscl_strlen("a=control:");
454 sptr1 = skip_whitespace(sptr1, line_end_ptr);
456 if (sptr1 >= line_end_ptr)
461 memFrag.ptr = (void*)sptr1;
462 memFrag.len = (line_end_ptr - sptr1);
465 for (int ii = 0; ii < (line_end_ptr - sptr1); ii++)
467 if (sptr1[ii] == '=')
470 sptr1 = skip_whitespace((sptr1 + ii + 1), line_end_ptr);
471 if (sptr1 >= line_end_ptr)
476 if ((PV_atoi(sptr1, 'd', 1, trackID) == true))
486 sptr1 = line_start_ptr + oscl_strlen("a=range:");
487 sptr1 = skip_whitespace(sptr1, line_end_ptr);
491 if (sptr1 >= line_end_ptr)
495 parseRtspRange(sptr1, line_end_ptr - sptr1, *(mediaStr->getRtspRange()));
499 sptr1 = line_start_ptr + oscl_strlen("a=depends_on:");
500 memFrag.ptr = (void*)sptr1;
501 memFrag.len = (line_end_ptr - sptr1);
504 for (int ii = 0; ii < (line_end_ptr - sptr1); ii++)
506 if (sptr1[ii] == '=')
509 sptr1 = skip_whitespace((sptr1 + ii + 1), line_end_ptr);
510 if (sptr1 >= line_end_ptr)
515 if ((PV_atoi(sptr1, 'd', 1, trackID) == true))