1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/signaling/src/sipcc/include/cc_device_feature.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#ifndef _CC_DEVICE_FEATURE_H_ 1.9 +#define _CC_DEVICE_FEATURE_H_ 1.10 + 1.11 +#include "cc_constants.h" 1.12 + 1.13 + 1.14 +/** 1.15 + * Enable or disable video capability of the device. 1.16 + * @param enable - a flag to indicate that application wants to enable of 1.17 + * disable video capability of the device. 1.18 + * @return void 1.19 + */ 1.20 +void CC_DeviceFeature_enableVideo(cc_boolean enable); 1.21 + 1.22 +/** 1.23 + * Indicate native video support for the device 1.24 + * @param enable - a flag to indicate that device supports native video 1.25 + * @return void 1.26 + */ 1.27 +void CC_DeviceFeature_supportsVideo(cc_boolean enable); 1.28 + 1.29 +/** 1.30 + * Enable or disable camera capability of the device. 1.31 + * @param enable - a flag to indicate that application wants to enable of 1.32 + * disable camera capability of the device. 1.33 + * @return void 1.34 + */ 1.35 +void CC_DeviceFeature_enableCamera(cc_boolean enable); 1.36 + 1.37 + 1.38 +#endif /* _CC_DEVICE_FEATURE_H_ */