Searched refs:FLAC__byte (Results 1 - 25 of 68) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dformat.c92 const FLAC__byte *string;
95 { 0, (const FLAC__byte*)"" , true },
96 { 1, (const FLAC__byte*)"" , true },
97 { 1, (const FLAC__byte*)"\x01" , true },
98 { 1, (const FLAC__byte*)"\x7f" , true },
99 { 1, (const FLAC__byte*)"\x80" , false },
100 { 1, (const FLAC__byte*)"\x81" , false },
101 { 1, (const FLAC__byte*)"\xc0" , false },
102 { 1, (const FLAC__byte*)"\xe0" , false },
103 { 1, (const FLAC__byte*)"\xf
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dogg_mapping.c40 const FLAC__byte FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE = 0x7f;
42 const FLAC__byte * const FLAC__OGG_MAPPING_MAGIC = (const FLAC__byte * const)"FLAC";
H A Dmd5.c181 static void FLAC__MD5Update(FLAC__MD5Context *ctx, FLAC__byte const *buf, unsigned len)
193 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, len);
197 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, t);
238 void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *ctx)
241 FLAC__byte *p = (FLAC__byte *)ctx->in + count;
253 p = (FLAC__byte *)ctx->in;
277 static void format_input_(FLAC__byte *buf, const FLAC__int32 * const signal[], unsigned channels, unsigned samples, unsigned bytes_per_sample)
281 register FLAC__byte *buf_ = buf;
302 *buf_++ = (FLAC__byte)a_wor
[all...]
H A Dogg_encoder_aspect.c41 static const FLAC__byte FLAC__OGG_MAPPING_VERSION_MAJOR = 1;
42 static const FLAC__byte FLAC__OGG_MAPPING_VERSION_MINOR = 0;
111 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)
125 FLAC__byte synthetic_first_packet_body[
140 FLAC__byte *b = synthetic_first_packet_body;
162 *b = (FLAC__byte)(aspect->num_metadata >> 8);
164 *b = (FLAC__byte)(aspect->num_metadata);
H A Dbitreader.c212 FLAC__byte *target;
230 target = ((FLAC__byte*)(br->buffer+br->words)) + br->bytes;
641 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals)
653 *val++ = (FLAC__byte)x;
663 val[0] = (FLAC__byte)(word >> 24);
664 val[1] = (FLAC__byte)(word >> 16);
665 val[2] = (FLAC__byte)(word >> 8);
666 val[3] = (FLAC__byte)word;
668 val[0] = (FLAC__byte)(word >> 56);
669 val[1] = (FLAC__byte)(wor
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dogg_mapping.h42 extern const FLAC__byte FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE; /* = 0x7f */
47 extern const FLAC__byte * const FLAC__OGG_MAPPING_MAGIC; /* = "FLAC" */
H A Dcrc.h41 extern FLAC__byte const FLAC__crc8_table[256];
43 void FLAC__crc8_update(const FLAC__byte data, FLAC__uint8 *crc);
44 void FLAC__crc8_update_block(const FLAC__byte *data, unsigned len, FLAC__uint8 *crc);
45 FLAC__uint8 FLAC__crc8(const FLAC__byte *data, unsigned len);
59 unsigned FLAC__crc16(const FLAC__byte *data, unsigned len);
H A Dmd5.h35 FLAC__byte *internal_buf;
40 void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *context);
H A Dogg_decoder_aspect.h75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77 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);
H A Dogg_encoder_aspect.h59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
61 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);
H A Dbitreader.h45 typedef FLAC__bool (*FLAC__BitReaderReadCallback)(FLAC__byte buffer[], size_t *bytes, void *client_data);
80 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! */
95 FLAC__bool FLAC__bitreader_read_utf8_uint32(FLAC__BitReader *br, FLAC__uint32 *val, FLAC__byte *raw, unsigned *rawlen);
96 FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *val, FLAC__byte *raw, unsigned *rawlen);
H A Dbitwriter.h60 FLAC__bool FLAC__bitwriter_get_write_crc8(FLAC__BitWriter *bw, FLAC__byte *crc);
75 FLAC__bool FLAC__bitwriter_get_buffer(FLAC__BitWriter *bw, const FLAC__byte **buffer, size_t *bytes);
86 FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Ddither.h26 size_t FLAC__plugin_common__pack_pcm_signed_big_endian(FLAC__byte *data, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, unsigned source_bps, unsigned target_bps);
27 size_t FLAC__plugin_common__pack_pcm_signed_little_endian(FLAC__byte *data, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, unsigned source_bps, unsigned target_bps);
H A Ddither.c108 size_t FLAC__plugin_common__pack_pcm_signed_big_endian(FLAC__byte *data, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, unsigned source_bps, unsigned target_bps)
111 FLAC__byte * const start = data;
143 data[0] = (FLAC__byte)(sample >> 8);
144 data[1] = (FLAC__byte)sample;
147 data[0] = (FLAC__byte)(sample >> 16);
148 data[1] = (FLAC__byte)(sample >> 8);
149 data[2] = (FLAC__byte)sample;
171 data[0] = (FLAC__byte)(sample >> 8);
172 data[1] = (FLAC__byte)sample;
175 data[0] = (FLAC__byte)(sampl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/grabbag/
H A Dreplaygain.h38 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_REFERENCE_LOUDNESS; /* = "REPLAYGAIN_REFERENCE_LOUDNESS" */
39 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_GAIN; /* = "REPLAYGAIN_TRACK_GAIN" */
40 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_PEAK; /* = "REPLAYGAIN_TRACK_PEAK" */
41 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_GAIN; /* = "REPLAYGAIN_ALBUM_GAIN" */
42 extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_PEAK; /* = "REPLAYGAIN_ALBUM_PEAK" */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dformat.h170 extern FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]; /* = "fLaC" */
533 FLAC__byte md5sum[16];
563 FLAC__byte id[4];
564 FLAC__byte *data;
623 FLAC__byte *entry;
650 FLAC__byte number;
667 FLAC__byte number;
679 FLAC__byte num_indices;
781 FLAC__byte *description;
805 FLAC__byte *dat
[all...]
H A Dordinals.h67 typedef FLAC__uint8 FLAC__byte; typedef
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dencode.h117 int flac__encode_aif(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options, FLAC__bool is_aifc);
118 int flac__encode_wav(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options);
119 int flac__encode_raw(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options);
120 int flac__encode_flac(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, flac_encode_options_t options, FLAC__bool input_is_ogg);
H A Diffscan.c35 static FLAC__uint32 unpack32be_(const FLAC__byte *b)
40 static FLAC__uint32 unpack32le_(const FLAC__byte *b)
45 static FLAC__uint32 unpack32_(const FLAC__byte *b, foreign_block_type_t type)
101 size = unpack32_((const FLAC__byte*)buf+4, fm->type);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/replaygain_synthesis/
H A Dreplaygain_synthesis.c304 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)
386 FLAC__byte * const start = data_out;
436 data_out[2] = (FLAC__byte)(uval32 >> 16);
439 data_out[1] = (FLAC__byte)(uval32 >> 8);
442 data_out[0] = (FLAC__byte)uval32;
449 data_out[0] = (FLAC__byte)(uval32 >> 16);
450 data_out[1] = (FLAC__byte)(uval32 >> 8);
451 data_out[2] = (FLAC__byte)uval32;
454 data_out[0] = (FLAC__byte)(uval32 >> 8);
455 data_out[1] = (FLAC__byte)uval3
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/
H A Dreplaygain_synthesis.h49 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);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Ddecoder.h127 virtual bool set_metadata_respond_application(const FLAC__byte id[4]); ///< See FLAC__stream_decoder_set_metadata_respond_application()
130 virtual bool set_metadata_ignore_application(const FLAC__byte id[4]); ///< See FLAC__stream_decoder_set_metadata_ignore_application()
160 virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes) = 0;
189 static ::FLAC__StreamDecoderReadStatus read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
235 virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
H A Dmetadata.h326 const FLAC__byte *get_md5sum() const;
336 void set_md5sum(const FLAC__byte value[16]);
443 const FLAC__byte *get_id() const;
444 const FLAC__byte *get_data() const;
446 void set_id(const FLAC__byte value[4]);
448 bool set_data(const FLAC__byte *data, unsigned length);
449 bool set_data(FLAC__byte *data, unsigned length, bool copy);
651 const FLAC__byte *get_vendor_string() const; // NUL-terminated UTF-8 string
655 bool set_vendor_string(const FLAC__byte *string); // NUL-terminated UTF-8 string
697 inline FLAC__byte get_numbe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Dutils.h33 void hexdump(const char *filename, const FLAC__byte *buf, unsigned bytes, const char *indent);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dmetadata.cpp282 const FLAC__byte *StreamInfo::get_md5sum() const
348 void StreamInfo::set_md5sum(const FLAC__byte value[16])
385 const FLAC__byte *Application::get_id() const
391 const FLAC__byte *Application::get_data() const
397 void Application::set_id(const FLAC__byte value[4])
404 bool Application::set_data(const FLAC__byte *data, unsigned length)
407 return (bool)::FLAC__metadata_object_application_set_data(object_, (FLAC__byte*)data, length, true);
410 bool Application::set_data(FLAC__byte *data, unsigned length, bool copy)
574 if(!::FLAC__format_vorbiscomment_entry_is_legal((const ::FLAC__byte*)field, field_length))
579 if(0 == (entry_.entry = (FLAC__byte*)safe_malloc_add_2op
[all...]

Completed in 125 milliseconds

123