Home | History | Annotate | Download | only in speech

Lines Matching defs:AudioChunk

18 class CONTENT_EXPORT AudioChunk :
19 public base::RefCountedThreadSafe<AudioChunk> {
21 explicit AudioChunk(int bytes_per_sample);
22 AudioChunk(const uint8* data, size_t length, int bytes_per_sample);
33 ~AudioChunk() {}
34 friend class base::RefCountedThreadSafe<AudioChunk>;
39 DISALLOW_COPY_AND_ASSIGN(AudioChunk);
43 // allocations of AudioChunk(s) (which uses a string as storage).
55 scoped_refptr<AudioChunk> DequeueSingleChunk();
58 scoped_refptr<AudioChunk> DequeueAll();
67 typedef std::deque<scoped_refptr<AudioChunk> > ChunksContainer;