| 49 | } |
| 50 | |
| 51 | void ff_put_string(PutBitContext *pb, const char *string, int terminate_string) |
| 52 | { |
| 53 | while(*string){ |
| 54 | put_bits(pb, 8, *string); |
| 55 | string++; |
| 56 | } |
| 57 | if(terminate_string) |
| 58 | put_bits(pb, 8, 0); |
| 59 | } |
| 60 | |
| 61 | void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length) |
| 62 | { |
no outgoing calls
no test coverage detected