Home
last modified time | relevance | path

Searched refs:endbyte_bits (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavformat/
Drtpdec_h261.c32 int endbyte_bits; member
57 rtp_h261_ctx->endbyte_bits = 0; in h261_handle_packet()
112 if (rtp_h261_ctx->endbyte_bits || sbit) { in h261_handle_packet()
113 if (rtp_h261_ctx->endbyte_bits == sbit) { in h261_handle_packet()
115 rtp_h261_ctx->endbyte_bits = 0; in h261_handle_packet()
124 if (rtp_h261_ctx->endbyte_bits) { in h261_handle_packet()
125 rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits); in h261_handle_packet()
130 rtp_h261_ctx->endbyte_bits = get_bits_left(&gb); in h261_handle_packet()
131 if (rtp_h261_ctx->endbyte_bits) in h261_handle_packet()
132 rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) << in h261_handle_packet()
[all …]
Drtpdec_h263_rfc2190.c38 int endbyte_bits; member
64 data->endbyte_bits = 0; in h263_handle_packet()
135 if (data->endbyte_bits || sbit) { in h263_handle_packet()
136 if (data->endbyte_bits == sbit) { in h263_handle_packet()
138 data->endbyte_bits = 0; in h263_handle_packet()
147 if (data->endbyte_bits) { in h263_handle_packet()
148 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits); in h263_handle_packet()
153 data->endbyte_bits = get_bits_left(&gb); in h263_handle_packet()
154 if (data->endbyte_bits) in h263_handle_packet()
155 data->endbyte = get_bits(&gb, data->endbyte_bits) << in h263_handle_packet()
[all …]