Home
last modified time | relevance | path

Searched refs:joint (Results 1 - 10 of 10) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dsbc_parser.c37 int sr, blocks, mode, subbands, bitpool, channels, joint; in sbc_parse_header() local
63 joint = mode == SBC_MODE_JOINT_STEREO; in sbc_parse_header()
67 + (joint * subbands)) + 7) / 8; in sbc_parse_header()
H A Dsbcenc.c99 int joint, int msbc) in sbc_pack_frame()
142 put_bits(&pb, frame->subbands, joint); in sbc_pack_frame()
143 crc_header[crc_pos >> 3] = joint; in sbc_pack_frame()
283 uint8_t joint = frame->mode == SBC_MODE_JOINT_STEREO; in sbc_encode_frame() local
289 + joint * frame->subbands) + 7) / 8; in sbc_encode_frame()
98 sbc_pack_frame(AVPacket *avpkt, struct sbc_frame *frame, int joint, int msbc) sbc_pack_frame() argument
H A Dsbc.h102 /* bit number x set means joint stereo has been used in subband x */
103 uint8_t joint; member
H A Dsbcdsp.c292 int blk, joint = 0; in sbc_calc_scalefactors_j() local
296 /* last subband does not use joint stereo */ in sbc_calc_scalefactors_j()
311 /* the rest of subbands can use joint stereo */ in sbc_calc_scalefactors_j()
345 /* decide whether to use joint stereo for this subband */ in sbc_calc_scalefactors_j()
347 joint |= 1 << (subbands - 1 - sb); in sbc_calc_scalefactors_j()
357 /* bitmask with the information about subbands using joint stereo */ in sbc_calc_scalefactors_j()
358 return joint; in sbc_calc_scalefactors_j()
H A Dsbcdec.c124 frame->joint = 0x00; in sbc_unpack_frame()
126 frame->joint |= ((data[4] >> (7 - sb)) & 0x01) << sb; in sbc_unpack_frame()
196 if (frame->joint & (0x01 << sb)) { in sbc_unpack_frame()
H A Dwavpack.c71 int joint; member
879 if (s->joint) in wv_unpack_stereo()
1145 s->joint = s->frame_flags & WV_JOINT_STEREO; in wavpack_decode_block()
H A Dwavpackenc.c109 int joint; member
1834 if (s->joint != -1) { in wv_stereo()
1835 force_js = s->joint; in wv_stereo()
1836 force_ts = !s->joint; in wv_stereo()
2952 { "joint_stereo", "", OFFSET(joint), AV_OPT_TYPE_BOOL, {.i64=-1}, -1, 1, FLAGS },
/third_party/skia/third_party/externals/freetype/src/raster/
H A Dftraster.c489 Bool joint; /* signals that the last arc ended */ member
668 ras.joint = FALSE; in New_Profile()
741 ras.joint = FALSE; in End_Profile()
869 * Subdivide one conic Bezier into two joint sub-arcs in the Bezier
910 * Subdivide a third-order Bezier arc into two joint sub-arcs in the
1039 if ( ras.joint ) in Line_Up()
1042 ras.joint = FALSE; in Line_Up()
1045 ras.joint = (char)( f2 == 0 ); in Line_Up()
1216 if ( ras.joint ) in Bezier_Up()
1219 ras.joint in Bezier_Up()
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dsbcdsp_neon.S270 * output: q0, q1 - scale factors without joint stereo
271 * q2, q3 - scale factors with joint stereo
272 * q15 - joint stereo selection mask
311 * input: q15 - joint stereo selection mask
382 @ return r0 = joint
405 @ check whether to use joint stereo for subbands 0, 1, 2
408 vmov.s32 d31[1], r10 @ last subband -> no joint
412 @ calculate and save to memory 'joint' variable
436 @ check whether to use joint stereo for subbands 4, 5, 6
439 vmov.s32 d31[1], r10 @ last subband -> no joint
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dfallback.rs194 let mut joint = false; in fmt() variables
196 if i != 0 && !joint { in fmt()
199 joint = false; in fmt()
204 joint = tt.spacing() == Spacing::Joint; in fmt()

Completed in 14 milliseconds