ossu | a1a040a | 2017-04-06 10:03:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
ossu | eb1fde4 | 2017-05-02 06:46:30 -0700 | [diff] [blame] | 11 | #ifndef WEBRTC_API_AUDIO_CODECS_AUDIO_ENCODER_FACTORY_H_ |
| 12 | #define WEBRTC_API_AUDIO_CODECS_AUDIO_ENCODER_FACTORY_H_ |
ossu | a1a040a | 2017-04-06 10:03:21 -0700 | [diff] [blame] | 13 | |
| 14 | #include <memory> |
| 15 | #include <vector> |
| 16 | |
ossu | eb1fde4 | 2017-05-02 06:46:30 -0700 | [diff] [blame] | 17 | #include "webrtc/api/audio_codecs/audio_encoder.h" |
ossu | a1a040a | 2017-04-06 10:03:21 -0700 | [diff] [blame] | 18 | #include "webrtc/api/audio_codecs/audio_format.h" |
Edward Lemur | c20978e | 2017-07-06 19:44:34 +0200 | [diff] [blame] | 19 | #include "webrtc/rtc_base/refcount.h" |
ossu | a1a040a | 2017-04-06 10:03:21 -0700 | [diff] [blame] | 20 | |
| 21 | namespace webrtc { |
| 22 | |
| 23 | // A factory that creates AudioEncoders. |
| 24 | // NOTE: This class is still under development and may change without notice. |
| 25 | class AudioEncoderFactory : public rtc::RefCountInterface { |
| 26 | public: |
| 27 | // Returns a prioritized list of audio codecs, to use for signaling etc. |
| 28 | virtual std::vector<AudioCodecSpec> GetSupportedEncoders() = 0; |
| 29 | |
| 30 | // Returns information about how this format would be encoded, provided it's |
| 31 | // supported. More format and format variations may be supported than those |
| 32 | // returned by GetSupportedEncoders(). |
| 33 | virtual rtc::Optional<AudioCodecInfo> QueryAudioEncoder( |
| 34 | const SdpAudioFormat& format) = 0; |
| 35 | |
| 36 | // Creates an AudioEncoder for the specified format. The encoder will tags its |
| 37 | // payloads with the specified payload type. |
| 38 | // TODO(ossu): Try to avoid audio encoders having to know their payload type. |
| 39 | virtual std::unique_ptr<AudioEncoder> MakeAudioEncoder( |
| 40 | int payload_type, |
| 41 | const SdpAudioFormat& format) = 0; |
| 42 | }; |
| 43 | |
| 44 | } // namespace webrtc |
| 45 | |
ossu | eb1fde4 | 2017-05-02 06:46:30 -0700 | [diff] [blame] | 46 | #endif // WEBRTC_API_AUDIO_CODECS_AUDIO_ENCODER_FACTORY_H_ |