OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadCB
(Results
1 - 25
of
45
) 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);
51
// SincResampler::
ReadCB
implementation. ProvideInput() will be called for
56
ReadCB
read_cb_;
61
// Buffers for audio data going into SincResampler from
ReadCB
.
audio_decoder.h
49
ReadCB
;
50
virtual void Read(const
ReadCB
& read_cb) = 0;
demuxer_stream.h
55
const scoped_refptr<DecoderBuffer>&)>
ReadCB
;
56
virtual void Read(const
ReadCB
& read_cb) = 0;
fake_text_track_stream.h
21
virtual void Read(const
ReadCB
&) OVERRIDE;
41
ReadCB
read_cb_;
data_source.h
35
typedef base::Callback<void(int)>
ReadCB
;
47
const DataSource::
ReadCB
& read_cb) = 0;
sinc_resampler.h
45
typedef base::Callback<void(int frames, float* destination)>
ReadCB
;
55
const
ReadCB
& read_cb);
110
const
ReadCB
read_cb_;
audio_pull_fifo.cc
14
AudioPullFifo::AudioPullFifo(int channels, int frames, const
ReadCB
& read_cb)
fake_text_track_stream.cc
23
void FakeTextTrackStream::Read(const
ReadCB
& read_cb) {
multi_channel_resampler.cc
17
const
ReadCB
& read_cb)
/external/chromium_org/media/audio/
fake_audio_consumer.h
24
// |worker_loop| is the loop on which the
ReadCB
provided to Start() will be
34
typedef base::Callback<void(AudioBus* audio_bus)>
ReadCB
;
35
void Start(const
ReadCB
& read_cb);
37
// Stop executing the
ReadCB
provided to Start(). Blocks until the worker
38
// 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/media/filters/
file_data_source_unittest.cc
25
MOCK_METHOD1(
ReadCB
, void(int size));
76
EXPECT_CALL(handler,
ReadCB
(10));
78
&ReadCBHandler::
ReadCB
, base::Unretained(&handler)));
83
EXPECT_CALL(handler,
ReadCB
(1));
85
&ReadCBHandler::
ReadCB
, base::Unretained(&handler)));
88
EXPECT_CALL(handler,
ReadCB
(0));
90
&ReadCBHandler::
ReadCB
, base::Unretained(&handler)));
92
EXPECT_CALL(handler,
ReadCB
(5));
94
&ReadCBHandler::
ReadCB
, base::Unretained(&handler)));
fake_demuxer_stream.h
31
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
76
ReadCB
read_cb_;
video_frame_stream.h
45
typedef base::Callback<void(Status, const scoped_refptr<VideoFrame>&)>
ReadCB
;
62
void Read(const
ReadCB
& read_cb);
145
ReadCB
read_cb_;
decrypting_demuxer_stream.h
53
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
108
ReadCB
read_cb_;
ffmpeg_audio_decoder.h
43
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
94
ReadCB
read_cb_;
opus_audio_decoder.h
38
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
75
ReadCB
read_cb_;
file_data_source.h
31
const DataSource::
ReadCB
& read_cb) OVERRIDE;
decrypting_audio_decoder.h
49
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
116
ReadCB
read_cb_;
file_data_source.cc
49
const DataSource::
ReadCB
& read_cb) {
ffmpeg_demuxer.h
82
virtual void Read(const
ReadCB
& read_cb) OVERRIDE;
126
ReadCB
read_cb_;
/external/chromium_org/media/tools/player_x11/
data_source_logger.h
29
const media::DataSource::
ReadCB
& read_cb) OVERRIDE;
data_source_logger.cc
16
const media::DataSource::
ReadCB
& read_cb, int result) {
40
const media::DataSource::
ReadCB
& read_cb) {
/external/chromium_org/content/renderer/media/
buffered_resource_loader.h
125
typedef base::Callback<void(Status, int)>
ReadCB
;
127
uint8* buffer, const
ReadCB
& read_cb);
299
ReadCB
read_cb_;
Completed in 238 milliseconds
1
2