Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
H A 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()
126 if (rtp_h261_ctx->endbyte_bits) { in h261_handle_packet()
127 rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits); in h261_handle_packet()
132 rtp_h261_ctx->endbyte_bits = get_bits_left(&gb); in h261_handle_packet()
133 if (rtp_h261_ctx->endbyte_bits) in h261_handle_packet()
134 rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) << in h261_handle_packet()
[all...]
H A 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()
149 if (data->endbyte_bits) { in h263_handle_packet()
150 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits); in h263_handle_packet()
155 data->endbyte_bits = get_bits_left(&gb); in h263_handle_packet()
156 if (data->endbyte_bits) in h263_handle_packet()
157 data->endbyte = get_bits(&gb, data->endbyte_bits) << in h263_handle_packet()
[all...]

Completed in 2 milliseconds