| 89 | } |
| 90 | |
| 91 | static void init_packetizer(FFIOContext *pb, uint8_t *buf, int len) |
| 92 | { |
| 93 | ffio_init_context(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL); |
| 94 | |
| 95 | /* this "fills" the buffer with its current content */ |
| 96 | pb->pub.pos = len; |
| 97 | pb->pub.buf_end = buf + len; |
| 98 | } |
| 99 | |
| 100 | int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p) |
| 101 | { |
no test coverage detected