Lines Matching defs:next
101 int skip_bytes; ///< number of bytes to skip from the input FLV stream in the next write call
127 int nb_streamid; ///< The next stream id to return on createStream calls
1757 char *next = strchr(ptr, '&');
1759 if (next)
1760 *next++ = '\0';
1779 ptr = next;
2352 const uint8_t *next;
2364 next = pkt->data;
2370 while (next - pkt->data < pkt->size - RTMP_HEADER) {
2371 type = bytestream_get_byte(&next);
2372 size = bytestream_get_be24(&next);
2373 cts = bytestream_get_be24(&next);
2374 cts |= bytestream_get_byte(&next) << 24;
2379 if (size + 3 + 4 > pkt->data + pkt->size - next)
2385 memcpy(p, next, size + 3 + 4);
2388 next += size + 3 + 4;
2446 // with the next packet. handle_invoke will get us out of this state
2715 char *next = *path ? path + 1 : path;
2716 char *p = strchr(next, '/');
2721 fname = next;
2724 av_strlcpy(rt->app, next, APP_MAX_LENGTH);