Home
last modified time | relevance | path

Searched refs:bytes_per_channel (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/media/base/
Daudio_buffer.cc31 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); in AudioBuffer() local
32 DCHECK_LE(bytes_per_channel, kChannelAlignment); in AudioBuffer()
33 int data_size = frame_count * bytes_per_channel; in AudioBuffer()
211 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format_); in ReadFrames() local
212 int frame_size = channel_count_ * bytes_per_channel; in ReadFrames()
215 source_data, dest_frame_offset, frames_to_copy, bytes_per_channel); in ReadFrames()
Daudio_decoder_config.cc96 (bytes_per_channel() == config.bytes_per_channel()) && in Matches()
Daudio_decoder_config.h82 int bytes_per_channel() const { return bytes_per_channel_; } in bytes_per_channel() function
/external/chromium_org/media/ffmpeg/
Dffmpeg_common_unittest.cc95 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); in TEST_F() local
96 EXPECT_EQ(bytes_per_channel, single_buffer_size); in TEST_F()
/external/chromium_org/media/filters/
Dffmpeg_audio_decoder.cc179 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); in GetAudioBuffer() local
195 int frames_required = buffer_size_in_bytes / bytes_per_channel / channels; in GetAudioBuffer()
343 (bytes_per_channel_ != config.bytes_per_channel() || in ConfigureDecoder()
348 << " -> " << config.bytes_per_channel(); in ConfigureDecoder()