OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wasted_bits
(Results
1 - 5
of
5
) sorted by null
/external/flac/libFLAC/include/private/
stream_encoder_framing.h
41
FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw);
42
FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw);
43
FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw);
44
FLAC__bool FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw);
/external/flac/libFLAC/
stream_encoder_framing.c
362
FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw)
367
FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK | (
wasted_bits
? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN) &&
368
(
wasted_bits
? FLAC__bitwriter_write_unary_unsigned(bw,
wasted_bits
-1) : true) &&
375
FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw)
379
if(!FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK | (subframe->order<<1) | (
wasted_bits
? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN))
381
if(
wasted_bits
)
382
if(!FLAC__bitwriter_write_unary_unsigned(bw,
wasted_bits
-1))
413
FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned
wasted_bits
, FLAC__BitWriter *bw)
417
if(!FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK | ((subframe->order-1)<<1) | (
wasted_bits
? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN (…)
[
all
...]
stream_encoder.c
[
all
...]
stream_decoder.c
2485
FLAC__bool
wasted_bits
;
local
[
all
...]
/external/flac/include/FLAC/
format.h
352
unsigned
wasted_bits
;
member in struct:__anon12634
[
all
...]
Completed in 66 milliseconds