HomeSort by relevance Sort by last modified time
    Searched refs:bytes_per_channel (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/media/ffmpeg/
ffmpeg_common_unittest.cc 95 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); local
96 EXPECT_EQ(bytes_per_channel, single_buffer_size);
  /external/chromium_org/media/base/
audio_buffer.cc 31 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); local
32 DCHECK_LE(bytes_per_channel, kChannelAlignment);
33 int data_size = frame_count * bytes_per_channel;
211 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format_); local
212 int frame_size = channel_count_ * bytes_per_channel;
215 source_data, dest_frame_offset, frames_to_copy, bytes_per_channel);
audio_decoder_config.cc 96 (bytes_per_channel() == config.bytes_per_channel()) &&
audio_decoder_config.h 46 // TODO(dalecurtis): FFmpeg API uses |bytes_per_channel| instead of
82 int bytes_per_channel() const { return bytes_per_channel_; } function in class:media::AudioDecoderConfig
  /external/chromium_org/media/filters/
ffmpeg_audio_decoder.cc 179 int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format); local
195 int frames_required = buffer_size_in_bytes / bytes_per_channel / channels;
343 (bytes_per_channel_ != config.bytes_per_channel() ||
348 << " -> " << config.bytes_per_channel();

Completed in 46 milliseconds