| 135 | #endif |
| 136 | |
| 137 | static av_always_inline void bytestream2_init(GetByteContext *g, |
| 138 | const uint8_t *buf, |
| 139 | int buf_size) |
| 140 | { |
| 141 | av_assert0(buf_size >= 0); |
| 142 | g->buffer = buf; |
| 143 | g->buffer_start = buf; |
| 144 | g->buffer_end = buf + buf_size; |
| 145 | } |
| 146 | |
| 147 | static av_always_inline void bytestream2_init_writer(PutByteContext *p, |
| 148 | uint8_t *buf, |
no outgoing calls
no test coverage detected