OLD | NEW |
---|---|
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 30 matching lines...) Expand all Loading... | |
41 namespace cricket { | 41 namespace cricket { |
42 | 42 |
43 class WebRtcMediaEngineFactory { | 43 class WebRtcMediaEngineFactory { |
44 public: | 44 public: |
45 static MediaEngineInterface* Create( | 45 static MediaEngineInterface* Create( |
46 webrtc::AudioDeviceModule* adm, | 46 webrtc::AudioDeviceModule* adm, |
47 WebRtcVideoEncoderFactory* encoder_factory, | 47 WebRtcVideoEncoderFactory* encoder_factory, |
48 WebRtcVideoDecoderFactory* decoder_factory); | 48 WebRtcVideoDecoderFactory* decoder_factory); |
49 }; | 49 }; |
50 | 50 |
51 extern const std::map<std::string, int> kBweExtensionPriorities; | |
52 | |
53 std::vector<RtpHeaderExtension> FilterOverlappingRtpExtensions( | |
pbos-webrtc
2015/10/29 14:16:22
s/Overlapping/Redundant imo.
stefan-webrtc
2015/10/29 14:51:11
Done.
| |
54 const std::vector<RtpHeaderExtension>& extensions, | |
55 const std::map<std::string, int>& extension_prios); | |
56 | |
51 } // namespace cricket | 57 } // namespace cricket |
52 | 58 |
53 #endif // TALK_MEDIA_WEBRTCMEDIAENGINE_H_ | 59 #endif // TALK_MEDIA_WEBRTCMEDIAENGINE_H_ |
OLD | NEW |