Searched defs:sample_rate (Results 1 - 10 of 10) sorted by relevance

/external/flac/libFLAC/include/protected/
H A Dstream_decoder.h47 unsigned sample_rate; /* in Hz */ member in struct:FLAC__StreamDecoderProtected
H A Dstream_encoder.h95 unsigned sample_rate; member in struct:FLAC__StreamEncoderProtected
/external/tinyalsa/
H A Dtinycap.c51 uint32_t sample_rate; member in struct:wav_header
140 header.sample_rate = rate;
168 header.sample_rate, format,
H A Dtinyplay.c55 uint32_t sample_rate; member in struct:chunk_fmt
155 play_sample(file, card, device, chunk_fmt.num_channels, chunk_fmt.sample_rate,
/external/tinycompress/
H A Dcplay.c101 unsigned int *sample_rate, unsigned int *bit_rate)
122 *sample_rate = mp3_sample_rates[mp3_version][sample_rate_idx];
229 codec.sample_rate = rate;
230 if (!codec.sample_rate) {
100 parse_mp3_header(struct mp3_header *header, unsigned int *num_channels, unsigned int *sample_rate, unsigned int *bit_rate) argument
/external/flac/libFLAC/
H A Dformat.c199 FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate) argument
201 if(sample_rate == 0 || sample_rate > FLAC__MAX_SAMPLE_RATE) {
208 FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate) argument
212 else if(sample_rate <= 48000 && blocksize > 4608)
218 FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(unsigned sample_rate) argument
221 !FLAC__format_sample_rate_is_valid(sample_rate) ||
223 sample_rate >= (1u << 16) &&
224 !(sample_rate % 1000 == 0 || sample_rate
[all...]
/external/flac/include/FLAC/
H A Dformat.h415 unsigned sample_rate; member in struct:__anon4968
532 unsigned sample_rate; member in struct:__anon4973
878 * \param sample_rate The sample rate to test for compliance.
883 FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate);
889 * \param sample_rate The sample rate is needed, since the valid subset
895 FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate);
901 * \param sample_rate The sample rate to test for compliance.
906 FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(unsigned sample_rate);
/external/kernel-headers/original/uapi/sound/
H A Dcompress_params.h370 * @sample_rate: Audio sample rate of input data in Hz, use values like 48000
392 __u32 sample_rate; member in struct:snd_codec
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp2550 uint64 Segment::AddAudioTrack(int32 sample_rate, int32 channels, int32 number) { argument
2557 track->set_sample_rate(sample_rate);
H A Dmkvmuxer.hpp513 void set_sample_rate(double sample_rate) { sample_rate_ = sample_rate; } argument
514 double sample_rate() const { return sample_rate_; } function in class:mkvmuxer::AudioTrack
1132 uint64 AddAudioTrack(int32 sample_rate, int32 channels, int32 number);

Completed in 259 milliseconds