*@brief Calculate remaining input buffer length. *@param s codec context *@param gb bitstream reader context *@return remaining size in bits */
| 1555 | *@return remaining size in bits |
| 1556 | */ |
| 1557 | static int remaining_bits(WMAProDecodeCtx *s, GetBitContext *gb) |
| 1558 | { |
| 1559 | return s->buf_bit_size - get_bits_count(gb); |
| 1560 | } |
| 1561 | |
| 1562 | /** |
| 1563 | *@brief Fill the bit reservoir with a (partial) frame. |
no test coverage detected