Lines Matching refs:next_ptr
45 const char *next_ptr;
48 if (av_strstart(identifier, "$$", &next_ptr)) {
50 *ptr = next_ptr;
51 } else if (av_strstart(identifier, "$RepresentationID$", &next_ptr)) {
56 *ptr = next_ptr;
58 if (av_strstart(identifier, "$Number", &next_ptr))
60 else if (av_strstart(identifier, "$Bandwidth", &next_ptr))
62 else if (av_strstart(identifier, "$Time", &next_ptr))
68 // (next_ptr now points at the first '%' at the beginning of the format-tag)
71 if (next_ptr[0] == '$') { // no dash format-tag
73 *ptr = &next_ptr[1];
77 if (av_strstart(next_ptr, "%0", &width_ptr) &&
79 av_strstart(&width_ptr[1], "d$", &next_ptr)) {
82 *ptr = next_ptr;
86 "where width must be a single digit\n", next_ptr);