Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Drtpdec_h261.c31 uint8_t endbyte; member
114 rtp_h261_ctx->endbyte |= buf[0] & (0xff >> sbit); in h261_handle_packet()
118 avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte); in h261_handle_packet()
125 rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits); in h261_handle_packet()
126 avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte); in h261_handle_packet()
132 rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) << in h261_handle_packet()
142 rtp_h261_ctx->endbyte = buf[len - 1] & (0xff << ebit); in h261_handle_packet()
154 avio_w8(rtp_h261_ctx->buf, rtp_h261_ctx->endbyte); in h261_handle_packet()
Drtpdec_h263_rfc2190.c37 uint8_t endbyte; member
137 data->endbyte |= buf[0] & (0xff >> sbit); in h263_handle_packet()
141 avio_w8(data->buf, data->endbyte); in h263_handle_packet()
148 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits); in h263_handle_packet()
149 avio_w8(data->buf, data->endbyte); in h263_handle_packet()
155 data->endbyte = get_bits(&gb, data->endbyte_bits) << in h263_handle_packet()
165 data->endbyte = buf[len - 1] & (0xff << ebit); in h263_handle_packet()
174 avio_w8(data->buf, data->endbyte); in h263_handle_packet()