HomeSort by relevance Sort by last modified time
    Searched refs:joint (Results 1 - 6 of 6) sorted by null

  /external/bluetooth/bluez/sbc/
sbcenc.c 47 static void encode(char *filename, int subbands, int bitpool, int joint,
113 if (joint || dualchannel) {
114 fprintf(stderr, "Audio is mono but joint or "
118 } else if (joint && !dualchannel)
120 else if (!joint && dualchannel)
122 else if (!joint && !dualchannel)
125 fprintf(stderr, "Both joint and dualchannel mode have been "
220 "\t-j, --joint Joint stereo\n"
232 { "joint", 0, 0, 'j' }
241 int i, opt, subbands = 8, bitpool = 32, joint = 0, dualchannel = 0; local
    [all...]
sbc_primitives_neon.c 300 int joint, i; local
315 * output: q0, q1 - scale factors without joint stereo
316 * q2, q3 - scale factors with joint stereo
317 * q15 - joint stereo selection mask
355 * input: q15 - joint stereo selection mask
428 /* check whether to use joint stereo for subbands 0, 1, 2 */
431 "vmov.s32 d31[1], %[zero]\n" /* last subband -> no joint */
435 /* calculate and save to memory 'joint' variable */
444 " vst1.32 {d16[0]}, [%[joint]]\n"
459 /* check whether to use joint stereo for subbands 4, 5, 6 *
    [all...]
sbc.c 77 /* bit number x set means joint stereo has been used in subband x */
78 uint8_t joint; member in struct:sbc_frame
455 frame->joint = 0x00;
457 frame->joint |= ((data[4] >> (7 - sb)) & 0x01) << sb;
520 if (frame->joint & (0x01 << sb)) {
762 int joint)
820 joint, frame_subbands);
821 crc_header[crc_pos >> 3] = joint;
877 int joint)
882 data, frame, len, 4, 1, joint);
1119 uint8_t subbands, channels, blocks, joint, bitpool; local
    [all...]
sbc_primitives.c 449 int blk, joint = 0; local
453 /* last subband does not use joint stereo */
468 /* the rest of subbands can use joint stereo */
502 /* decide whether to use joint stereo for this subband */
504 joint |= 1 << (subbands - 1 - sb);
514 /* bitmask with the information about subbands using joint stereo */
515 return joint;
  /external/bluetooth/bluez/audio/
gstsbcutil.c 97 gboolean joint, stereo, dual, mono; local
100 joint = stereo = dual = mono = FALSE;
105 if (strcmp("joint", aux) == 0)
106 joint = TRUE;
118 if (joint)
119 return "joint";
242 return "joint";
250 if (g_ascii_strcasecmp(mode, "joint") == 0)
  /external/freetype/src/raster/
ftraster.c 481 Bool joint; /* signals that the last arc ended */ member in struct:TWorker_
    [all...]

Completed in 180 milliseconds