Index: webrtc/api/audio_codec/builtin_audio_decoder_factory.cc |
diff --git a/webrtc/api/audio_codec/builtin_audio_decoder_factory.cc b/webrtc/api/audio_codec/builtin_audio_decoder_factory.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..346d25d1f9b95488aec27bf82fcd88cc7eb35622 |
--- /dev/null |
+++ b/webrtc/api/audio_codec/builtin_audio_decoder_factory.cc |
@@ -0,0 +1,21 @@ |
+/* |
+ * 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. |
+ */ |
+ |
+#include "webrtc/api/audio_codec/builtin_audio_decoder_factory.h" |
+ |
+#include "webrtc/modules/audio_coding/codecs/internal_builtin_audio_decoder_factory.h" |
+ |
+namespace webrtc { |
+ |
+rtc::scoped_refptr<AudioDecoderFactory> CreateBuiltinAudioDecoderFactory() { |
+ return InternalCreateBuiltinAudioDecoderFactory(); |
ossu
2017/02/01 15:05:26
Have you seen my bike-shed? In it, I put Internal
kwiberg-webrtc
2017/02/03 09:50:11
OK, I'll repaint my shed to match yours. :-)
|
+} |
+ |
+} // namespace webrtc |