| 83 | } |
| 84 | |
| 85 | static void init_packetizer(ByteIOContext *pb, uint8_t *buf, int len) |
| 86 | { |
| 87 | init_put_byte(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL); |
| 88 | |
| 89 | /* this "fills" the buffer with its current content */ |
| 90 | pb->pos = len; |
| 91 | pb->buf_end = buf + len; |
| 92 | } |
| 93 | |
| 94 | void ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p) |
| 95 | { |
no test coverage detected