| 102 | } |
| 103 | |
| 104 | void ffio_init_write_context(FFIOContext *s, uint8_t *buffer, int buffer_size) |
| 105 | { |
| 106 | ffio_init_context(s, buffer, buffer_size, 1, NULL, NULL, NULL, NULL); |
| 107 | } |
| 108 | |
| 109 | AVIOContext *avio_alloc_context( |
| 110 | unsigned char *buffer, |
no test coverage detected