123456789101112131415161718192021222324252627 |
- #ifndef CALL_ADAPTATION_DEGRADATION_PREFERENCE_PROVIDER_H_
- #define CALL_ADAPTATION_DEGRADATION_PREFERENCE_PROVIDER_H_
- #include "api/rtp_parameters.h"
- namespace webrtc {
- class DegradationPreferenceProvider {
- public:
- virtual ~DegradationPreferenceProvider();
- virtual DegradationPreference degradation_preference() const = 0;
- };
- }
- #endif
|