1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_SPEECH_AUDIO_ENCODER_H_
6 #define CONTENT_BROWSER_SPEECH_AUDIO_ENCODER_H_
12 #include "base/basictypes.h"
13 #include "base/memory/ref_counted.h"
14 #include "content/browser/speech/audio_buffer.h"
18 // Provides a simple interface to encode raw audio using the various speech
27 static AudioEncoder
* Create(Codec codec
,
31 virtual ~AudioEncoder();
33 // Encodes |raw audio| to the internal buffer. Use
34 // |GetEncodedDataAndClear| to read the result after this call or when
35 // audio capture completes.
36 virtual void Encode(const AudioChunk
& raw_audio
) = 0;
38 // Finish encoding and flush any pending encoded bits out.
39 virtual void Flush() = 0;
41 // Merges, retrieves and clears all the accumulated encoded audio chunks.
42 scoped_refptr
<AudioChunk
> GetEncodedDataAndClear();
44 const std::string
& mime_type() { return mime_type_
; }
45 int bits_per_sample() { return bits_per_sample_
; }
48 AudioEncoder(const std::string
& mime_type
, int bits_per_sample
);
49 AudioBuffer encoded_audio_buffer_
;
52 std::string mime_type_
;
55 DISALLOW_COPY_AND_ASSIGN(AudioEncoder
);
60 #endif // CONTENT_BROWSER_SPEECH_AUDIO_ENCODER_H_