OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__BitWriter
(Results
1 - 5
of
5
) sorted by null
/external/flac/libFLAC/include/private/
bitwriter.h
41
struct
FLAC__BitWriter
;
42
typedef struct
FLAC__BitWriter
FLAC__BitWriter
;
47
FLAC__BitWriter
*FLAC__bitwriter_new(void);
48
void FLAC__bitwriter_delete(
FLAC__BitWriter
*bw);
49
FLAC__bool FLAC__bitwriter_init(
FLAC__BitWriter
*bw);
50
void FLAC__bitwriter_free(
FLAC__BitWriter
*bw); /* does not 'free(buffer)' */
51
void FLAC__bitwriter_clear(
FLAC__BitWriter
*bw);
52
void FLAC__bitwriter_dump(const
FLAC__BitWriter
*bw, FILE *out);
59
FLAC__bool FLAC__bitwriter_get_write_crc16(
FLAC__BitWriter
*bw, FLAC__uint16 *crc)
[
all
...]
stream_encoder_framing.h
38
FLAC__bool FLAC__add_metadata_block(const FLAC__StreamMetadata *metadata,
FLAC__BitWriter
*bw);
39
FLAC__bool FLAC__frame_add_header(const FLAC__FrameHeader *header,
FLAC__BitWriter
*bw);
40
FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw);
41
FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw);
42
FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw);
43
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/
bitwriter.c
102
struct
FLAC__BitWriter
{
120
static FLAC__bool bitwriter_grow_(
FLAC__BitWriter
*bw, unsigned bits_to_add)
160
FLAC__BitWriter
*FLAC__bitwriter_new(void)
162
FLAC__BitWriter
*bw = (
FLAC__BitWriter
*)calloc(1, sizeof(
FLAC__BitWriter
));
167
void FLAC__bitwriter_delete(
FLAC__BitWriter
*bw)
181
FLAC__bool FLAC__bitwriter_init(
FLAC__BitWriter
*bw)
194
void FLAC__bitwriter_free(
FLAC__BitWriter
*bw)
205
void FLAC__bitwriter_clear(
FLAC__BitWriter
*bw
[
all
...]
stream_encoder_framing.c
47
static FLAC__bool add_entropy_coding_method_(
FLAC__BitWriter
*bw, const FLAC__EntropyCodingMethod *method);
48
static FLAC__bool add_residual_partitioned_rice_(
FLAC__BitWriter
*bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned partition_order, const FLAC__bool is_extended);
50
FLAC__bool FLAC__add_metadata_block(const FLAC__StreamMetadata *metadata,
FLAC__BitWriter
*bw)
219
FLAC__bool FLAC__frame_add_header(const FLAC__FrameHeader *header,
FLAC__BitWriter
*bw)
366
FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw)
379
FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw)
417
FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw)
463
FLAC__bool FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned wasted_bits,
FLAC__BitWriter
*bw)
481
FLAC__bool add_entropy_coding_method_(
FLAC__BitWriter
*bw, const FLAC__EntropyCodingMethod *method)
497
FLAC__bool add_residual_partitioned_rice_(
FLAC__BitWriter
*bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order (…)
[
all
...]
stream_encoder.c
181
FLAC__BitWriter
*frame
360
FLAC__BitWriter
*frame; /* the current frame being worked on */
[
all
...]
Completed in 634 milliseconds