vulkan/common: Add put_bytes_count

pull/391/head
IndecisiveTurtle 2 months ago committed by Lynne
parent e3ac63b213
commit 351fd8460a
  1. 6
      libavcodec/vulkan/common.comp

@ -172,3 +172,9 @@ uint64_t put_bits_count(in PutBitContext pb)
{
return (pb.buf - pb.buf_start)*8 + BUF_BITS - pb.bit_left;
}
uint32_t put_bytes_count(in PutBitContext pb)
{
uint64_t num_bytes = (pb.buf - pb.buf_start) + ((BUF_BITS - pb.bit_left) >> 3);
return uint32_t(num_bytes);
}

Loading…
Cancel
Save