Home | History | Annotate | Download | only in a2dp

Lines Matching defs:use

6  *  you may not use this file except in compliance with the License.
52 * Derive 2 items from the CRC byte; one is the "use" bit, the other is the "index".
54 * SBC keeps 2 sets of "use" & "index"; derived the current and the previous frame.
56 * The "use" bit is any bit in SBC_PRTC_USE_MASK is set.
95 UINT8 use;
157 p_last->use = p_cur->use;
159 p_cur->use = p_pkt[A2D_SBC_CRC_IDX] & A2D_SBC_USE_MASK;
161 a2d_sbc_ds_cb.index = (p_cur->use)?A2D_SBC_CIDX:A2D_SBC_LIDX;
163 printf("%05d: ar[%02d]: x%02x, msk: x%02x, use: %s, idx: %02d, ",
166 (p_cur->use)?"cur":"lst", p_cur->idx);