Searched refs:crc_header (Results 1 – 4 of 4) sorted by relevance
102 uint8_t crc_header[11] = { 0 }; in sbc_pack_frame() local133 crc_header[0] = avpkt->data[1]; in sbc_pack_frame()134 crc_header[1] = avpkt->data[2]; in sbc_pack_frame()141 crc_header[crc_pos >> 3] = joint; in sbc_pack_frame()148 crc_header[crc_pos >> 3] <<= 4; in sbc_pack_frame()149 crc_header[crc_pos >> 3] |= frame->scale_factor[ch][sb] & 0x0F; in sbc_pack_frame()156 crc_header[crc_pos >> 3] <<= 8 - (crc_pos % 8); in sbc_pack_frame()158 avpkt->data[3] = ff_sbc_crc8(frame->crc_ctx, crc_header, crc_pos); in sbc_pack_frame()
68 uint8_t crc_header[11] = { 0 }; in sbc_unpack_frame() local114 crc_header[0] = data[1]; in sbc_unpack_frame()115 crc_header[1] = data[2]; in sbc_unpack_frame()126 crc_header[crc_pos / 8] = data[4] & 0xf0; in sbc_unpack_frame()128 crc_header[crc_pos / 8] = data[4]; in sbc_unpack_frame()142 crc_header[crc_pos >> 3] |= in sbc_unpack_frame()150 if (data[3] != ff_sbc_crc8(frame->crc_ctx, crc_header, crc_pos)) in sbc_unpack_frame()
148 gdppay->crc_header = DEFAULT_CRC_HEADER; in gst_gdp_pay_init()150 gdppay->header_flag = gdppay->crc_header | gdppay->crc_payload; in gst_gdp_pay_init()652 this->crc_header = in gst_gdp_pay_set_property()654 this->header_flag = this->crc_header | this->crc_payload; in gst_gdp_pay_set_property()659 this->header_flag = this->crc_header | this->crc_payload; in gst_gdp_pay_set_property()678 g_value_set_boolean (value, this->crc_header); in gst_gdp_pay_get_property()
65 gboolean crc_header; member