| 37 | #include "put_bits.h" |
| 38 | |
| 39 | void ff_put_string(PutBitContext *pb, const char *string, int terminate_string) |
| 40 | { |
| 41 | while (*string) { |
| 42 | put_bits(pb, 8, *string); |
| 43 | string++; |
| 44 | } |
| 45 | if (terminate_string) |
| 46 | put_bits(pb, 8, 0); |
| 47 | } |
| 48 | |
| 49 | void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length) |
| 50 | { |
no test coverage detected