| 68 | } RMDemuxContext; |
| 69 | |
| 70 | static inline void get_strl(AVIOContext *pb, char *buf, int buf_size, int len) |
| 71 | { |
| 72 | int read = avio_get_str(pb, len, buf, buf_size); |
| 73 | |
| 74 | if (read > 0) |
| 75 | avio_skip(pb, len - read); |
| 76 | } |
| 77 | |
| 78 | static void get_str8(AVIOContext *pb, char *buf, int buf_size) |
| 79 | { |
no test coverage detected