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..7c0560edaff53e4df6a2a97e979c3bedd02faed2 |
--- /dev/null |
+++ b/webrtc/modules/audio_coding/codecs/audio_encoder_factory.h |
@@ -0,0 +1,41 @@ |
+/* |
+ * Copyright (c) 2016 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 bool IsSupportedEncoder(const SdpAudioFormat& format) = 0; |
+ |
+ virtual rtc::Optional<AudioFormatInfo> QueryAudioFormat( |
the sun
2017/03/14 20:48:29
May be good to add "Encoder" to this method name -
ossu
2017/03/15 11:26:52
The decoder has no QueryAudioFormat method as it s
the sun
2017/03/15 11:57:39
FWIW, I think I'd prefer to drop IsSupported[Encod
kwiberg-webrtc
2017/03/15 13:33:17
Hmm. Having one object implement multiple interfac
kwiberg-webrtc
2017/03/15 13:33:17
The helper is unnecessary---rtc::Optional converts
the sun
2017/03/15 13:37:44
Yeah, but it may make the code more readable...
the sun
2017/03/15 13:37:44
Agree, but in certain cases there may be shared re
kwiberg-webrtc
2017/03/15 14:10:24
In this case not much, I'd argue. It's pretty obvi
kwiberg-webrtc
2017/03/15 14:10:24
In which case the encoder and decoder objects shou
|
+ 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_ |