* Pad the bitstream with zeros up to the next byte boundary. */
| 443 | * Pad the bitstream with zeros up to the next byte boundary. |
| 444 | */ |
| 445 | static inline void align_put_bits(PutBitContext *s) |
| 446 | { |
| 447 | put_bits(s, s->bit_left & 7, 0); |
| 448 | } |
| 449 | |
| 450 | #undef AV_WBBUF |
| 451 | #undef AV_WLBUF |
no test coverage detected