Lines Matching refs:endbyte_bits
32 int endbyte_bits;
57 rtp_h261_ctx->endbyte_bits = 0;
112 if (rtp_h261_ctx->endbyte_bits || sbit) {
113 if (rtp_h261_ctx->endbyte_bits == sbit) {
115 rtp_h261_ctx->endbyte_bits = 0;
126 if (rtp_h261_ctx->endbyte_bits) {
127 rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits);
132 rtp_h261_ctx->endbyte_bits = get_bits_left(&gb);
133 if (rtp_h261_ctx->endbyte_bits)
134 rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) <<
135 (8 - rtp_h261_ctx->endbyte_bits);
143 rtp_h261_ctx->endbyte_bits = 8 - ebit;
155 if (rtp_h261_ctx->endbyte_bits)
157 rtp_h261_ctx->endbyte_bits = 0;