Index: webrtc/modules/audio_coding/codecs/audio_encoder_factory.h |
diff --git a/webrtc/modules/audio_coding/codecs/audio_encoder_factory.h b/webrtc/modules/audio_coding/codecs/audio_encoder_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..284b4df5bef0c3e6764f739a488bf1be7f3e3a00 |
--- /dev/null |
+++ b/webrtc/modules/audio_coding/codecs/audio_encoder_factory.h |
@@ -0,0 +1,39 @@ |
+/* |
+ * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+#ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_ENCODER_FACTORY_H_ |
+#define WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_ENCODER_FACTORY_H_ |
+ |
+#include <memory> |
+#include <vector> |
+ |
+#include "webrtc/api/audio_codecs/audio_format.h" |
+#include "webrtc/base/refcount.h" |
+#include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
+ |
+namespace webrtc { |
+ |
+// A factory that creates AudioEncoders. |
+// NOTE: This class is still under development and may change without notice. |
+class AudioEncoderFactory : public rtc::RefCountInterface { |
+ public: |
+ virtual std::vector<AudioCodecSpec> GetSupportedEncoders() = 0; |
+ |
+ virtual rtc::Optional<AudioCodecInfo> QueryAudioEncoder( |
the sun
2017/03/17 09:07:31
nit: A short line describing what the method is su
ossu
2017/03/17 09:55:39
I'll document them all!
|
+ const SdpAudioFormat& format) = 0; |
+ |
+ virtual std::unique_ptr<AudioEncoder> MakeAudioEncoder( |
+ int payload_type, |
+ const SdpAudioFormat& format) = 0; |
+}; |
+ |
+} // namespace webrtc |
+ |
+#endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_ENCODER_FACTORY_H_ |