HomeSort by relevance Sort by last modified time
    Searched refs:FLAC__byte (Results 1 - 25 of 35) sorted by null

1 2

  /external/flac/libFLAC/
ogg_mapping.c 41 const FLAC__byte FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE = 0x7f;
43 const FLAC__byte * const FLAC__OGG_MAPPING_MAGIC = (const FLAC__byte * const)"FLAC";
ogg_encoder_aspect.c 42 static const FLAC__byte FLAC__OGG_MAPPING_VERSION_MAJOR = 1;
43 static const FLAC__byte FLAC__OGG_MAPPING_VERSION_MINOR = 0;
112 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data)
126 FLAC__byte synthetic_first_packet_body[
141 FLAC__byte *b = synthetic_first_packet_body;
163 *b = (FLAC__byte)(aspect->num_metadata >> 8);
165 *b = (FLAC__byte)(aspect->num_metadata);
bitreader.c 150 FLAC__byte *target;
168 target = ((FLAC__byte*)(br->buffer+br->words)) + br->bytes;
574 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals)
586 *val++ = (FLAC__byte)x;
596 val[0] = (FLAC__byte)(word >> 24);
597 val[1] = (FLAC__byte)(word >> 16);
598 val[2] = (FLAC__byte)(word >> 8);
599 val[3] = (FLAC__byte)word;
601 val[0] = (FLAC__byte)(word >> 56);
602 val[1] = (FLAC__byte)(word >> 48)
    [all...]
md5.c 178 static void FLAC__MD5Update(FLAC__MD5Context *ctx, FLAC__byte const *buf, unsigned len)
190 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, len);
194 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, t);
235 void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *ctx)
238 FLAC__byte *p = (FLAC__byte *)ctx->in + count;
250 p = (FLAC__byte *)ctx->in;
276 FLAC__byte *buf_ = mbuf->p8;
384 *buf_++ = (FLAC__byte)a_word; a_word >>= 8;
385 *buf_++ = (FLAC__byte)a_word; a_word >>= 8
    [all...]
ogg_decoder_aspect.c 103 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data)
163 const FLAC__byte *b = aspect->working_packet.packet;
220 switch(read_callback(decoder, (FLAC__byte*)oggbuf, &ogg_bytes_read, client_data)) {
format.c 52 FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
312 static unsigned utf8len_(const FLAC__byte *utf8)
362 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
373 const FLAC__byte *end = value + length;
386 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
388 const FLAC__byte *s, *end;
494 FLAC__byte *b;
crc.c 41 FLAC__byte const FLAC__crc8_table[256] = {
114 void FLAC__crc8_update(const FLAC__byte data, FLAC__uint8 *crc)
119 void FLAC__crc8_update_block(const FLAC__byte *data, unsigned len, FLAC__uint8 *crc)
125 FLAC__uint8 FLAC__crc8(const FLAC__byte *data, unsigned len)
135 unsigned FLAC__crc16(const FLAC__byte *data, unsigned len)
stream_encoder.c 91 const FLAC__byte *data;
138 static FLAC__StreamEncoderWriteStatus write_frame_(FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, FLAC__bool is_last_block);
298 static FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
303 static FLAC__StreamEncoderReadStatus file_read_callback_(const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
306 static FLAC__StreamEncoderWriteStatus file_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
    [all...]
ogg_helper.c 45 static FLAC__bool full_read_(FLAC__StreamEncoder *encoder, FLAC__byte *buffer, size_t bytes, FLAC__StreamEncoderReadCallback read_callback, void *client_data)
99 FLAC__byte crc[4];
  /external/flac/libFLAC/include/private/
ogg_mapping.h 43 extern const FLAC__byte FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE; /* = 0x7f */
48 extern const FLAC__byte * const FLAC__OGG_MAPPING_MAGIC; /* = "FLAC" */
crc.h 42 extern FLAC__byte const FLAC__crc8_table[256];
44 void FLAC__crc8_update(const FLAC__byte data, FLAC__uint8 *crc);
45 void FLAC__crc8_update_block(const FLAC__byte *data, unsigned len, FLAC__uint8 *crc);
46 FLAC__uint8 FLAC__crc8(const FLAC__byte *data, unsigned len);
60 unsigned FLAC__crc16(const FLAC__byte *data, unsigned len);
md5.h 32 FLAC__byte *p8;
46 void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *context);
ogg_decoder_aspect.h 76 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
78 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);
ogg_encoder_aspect.h 60 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
62 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
bitreader.h 46 typedef FLAC__bool (*FLAC__BitReaderReadCallback)(FLAC__byte buffer[], size_t *bytes, void *client_data);
81 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals); /* WATCHOUT: does not CRC the read data! */
89 FLAC__bool FLAC__bitreader_read_utf8_uint32(FLAC__BitReader *br, FLAC__uint32 *val, FLAC__byte *raw, unsigned *rawlen);
90 FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *val, FLAC__byte *raw, unsigned *rawlen);
bitwriter.h 61 FLAC__bool FLAC__bitwriter_get_write_crc8(FLAC__BitWriter *bw, FLAC__byte *crc);
76 FLAC__bool FLAC__bitwriter_get_buffer(FLAC__BitWriter *bw, const FLAC__byte **buffer, size_t *bytes);
87 FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals);
  /external/flac/include/share/grabbag/
replaygain.h 39 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_REFERENCE_LOUDNESS; /* = "REPLAYGAIN_REFERENCE_LOUDNESS" */
40 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_GAIN; /* = "REPLAYGAIN_TRACK_GAIN" */
41 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_PEAK; /* = "REPLAYGAIN_TRACK_PEAK" */
42 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_GAIN; /* = "REPLAYGAIN_ALBUM_GAIN" */
43 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_PEAK; /* = "REPLAYGAIN_ALBUM_PEAK" */
  /external/flac/include/FLAC/
format.h 171 extern FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]; /* = "fLaC" */
536 FLAC__byte md5sum[16];
566 FLAC__byte id[4];
567 FLAC__byte *data;
626 FLAC__byte *entry;
653 FLAC__byte number;
670 FLAC__byte number;
682 FLAC__byte num_indices;
784 FLAC__byte *description;
808 FLAC__byte *data
    [all...]
ordinals.h 72 typedef FLAC__uint8 FLAC__byte;
metadata.h 237 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors);
531 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_get_application_id(FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id);
    [all...]
stream_decoder.h 481 * FLAC__StreamDecoderReadStatus read_cb(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
485 * *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, file);
517 typedef FLAC__StreamDecoderReadStatus (*FLAC__StreamDecoderReadCallback)(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
    [all...]
  /external/flac/include/share/
replaygain_synthesis.h 50 size_t FLAC__replaygain_synthesis__apply_gain(FLAC__byte *data_out, FLAC__bool little_endian_data_out, FLAC__bool unsigned_data_out, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, const unsigned source_bps, const unsigned target_bps, const double scale, const FLAC__bool hard_limit, FLAC__bool do_dithering, DitherContext *dither_context);
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h 75 const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[],
79 const FLAC__byte buffer[],
  /hardware/google/av/media/codecs/flac/
C2SoftFlacEnc.h 57 const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[],
61 const FLAC__byte buffer[], size_t bytes, unsigned samples,
  /frameworks/av/media/libstagefright/flac/dec/
FLACDecoder.h 97 FLAC__StreamDecoderReadStatus readCallback(FLAC__byte buffer[], size_t *bytes);

Completed in 648 milliseconds

1 2