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

1 2

  /external/chromium_org/media/base/
audio_pull_fifo.h 25 typedef base::Callback<void(int frame_delay, AudioBus* audio_bus)> ReadCB;
31 AudioPullFifo(int channels, int frames, const ReadCB& read_cb);
37 // ReadCB implementation.
49 const ReadCB read_cb_;
multi_channel_resampler.h 26 typedef base::Callback<void(int frame_delay, AudioBus* audio_bus)> ReadCB;
35 const ReadCB& read_cb);
55 // SincResampler::ReadCB implementation. ProvideInput() will be called for
60 ReadCB read_cb_;
65 // Buffers for audio data going into SincResampler from ReadCB.
data_source.h 17 typedef base::Callback<void(int)> ReadCB;
28 const DataSource::ReadCB& read_cb) = 0;
demuxer_stream.h 58 const scoped_refptr<DecoderBuffer>&)>ReadCB;
59 virtual void Read(const ReadCB& read_cb) = 0;
fake_text_track_stream.h 21 virtual void Read(const ReadCB&) OVERRIDE;
43 ReadCB read_cb_;
sinc_resampler.h 40 typedef base::Callback<void(int frames, float* destination)> ReadCB;
50 const ReadCB& read_cb);
105 const ReadCB read_cb_;
  /external/chromium_org/media/filters/
file_data_source_unittest.cc 24 MOCK_METHOD1(ReadCB, void(int size));
59 EXPECT_CALL(handler, ReadCB(10));
61 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
66 EXPECT_CALL(handler, ReadCB(1));
68 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
71 EXPECT_CALL(handler, ReadCB(0));
73 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
75 EXPECT_CALL(handler, ReadCB(5));
77 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
fake_demuxer_stream.h 31 virtual void Read(const ReadCB& read_cb) OVERRIDE;
95 ReadCB read_cb_;
file_data_source.h 30 const DataSource::ReadCB& read_cb) OVERRIDE;
decrypting_demuxer_stream.h 48 virtual void Read(const ReadCB& read_cb) OVERRIDE;
104 ReadCB read_cb_;
decoder_stream.h 51 typedef base::Callback<void(Status, const scoped_refptr<Output>&)> ReadCB;
71 void Read(const ReadCB& read_cb);
171 ReadCB read_cb_;
  /external/chromium_org/chromecast/media/cma/base/
coded_frame_provider.h 25 const ::media::VideoDecoderConfig&)> ReadCB;
36 virtual void Read(const ReadCB& read_cb) = 0;
mock_frame_provider.h 27 virtual void Read(const ReadCB& read_cb) OVERRIDE;
31 void DoRead(const ReadCB& read_cb);
buffering_frame_provider.h 46 virtual void Read(const ReadCB& read_cb) OVERRIDE;
106 ReadCB read_cb_;
mock_frame_provider.cc 38 void MockFrameProvider::Read(const ReadCB& read_cb) {
60 void MockFrameProvider::DoRead(const ReadCB& read_cb) {
  /external/chromium_org/media/audio/
fake_audio_consumer.h 24 // |worker_task_runner| is the task runner on which the ReadCB provided to
35 typedef base::Callback<void(AudioBus* audio_bus)> ReadCB;
36 void Start(const ReadCB& read_cb);
38 // Stop executing the ReadCB provided to Start(). Blocks until the worker
39 // loop is not inside a ReadCB invocation. Safe to call multiple times. Must
fake_audio_consumer.cc 29 void Start(const ReadCB& read_cb);
52 ReadCB read_cb_;
73 void FakeAudioConsumer::Start(const ReadCB& read_cb) {
106 void FakeAudioConsumer::Worker::Start(const ReadCB& read_cb) {
  /external/chromium_org/chrome/utility/media_galleries/
ipc_data_source.h 37 const ReadCB& read_cb) OVERRIDE;
51 ReadCB callback;
55 const ReadCB& read_cb);
  /external/chromium_org/chromecast/media/cma/ipc_streamer/
coded_frame_provider_host.h 31 virtual void Read(const ReadCB& read_cb) OVERRIDE;
46 ReadCB read_cb_;
  /external/chromium_org/chromecast/media/cma/filters/
demuxer_stream_adapter.h 42 virtual void Read(const ReadCB& read_cb) OVERRIDE;
48 void ReadInternal(const ReadCB& read_cb);
49 void RequestBuffer(const ReadCB& read_cb);
52 void OnNewBuffer(const ReadCB& read_cb,
demuxer_stream_adapter.cc 83 void DemuxerStreamAdapter::Read(const ReadCB& read_cb) {
94 void DemuxerStreamAdapter::ReadInternal(const ReadCB& read_cb) {
145 void DemuxerStreamAdapter::RequestBuffer(const ReadCB& read_cb) {
153 const ReadCB& read_cb,
  /external/chromium_org/media/mojo/services/
mojo_demuxer_stream_adapter.h 35 virtual void Read(const ReadCB& read_cb) OVERRIDE;
58 // The last ReadCB received through a call to Read().
63 DemuxerStream::ReadCB read_cb_;
  /external/chromium_org/media/tools/player_x11/
data_source_logger.h 28 const media::DataSource::ReadCB& read_cb) OVERRIDE;
data_source_logger.cc 11 const media::DataSource::ReadCB& read_cb, int result) {
30 const media::DataSource::ReadCB& read_cb) {
  /external/chromium_org/media/blink/
buffered_resource_loader.h 119 typedef base::Callback<void(Status, int)> ReadCB;
121 uint8* buffer, const ReadCB& read_cb);
294 ReadCB read_cb_;

Completed in 352 milliseconds

1 2