media/webrtc/signaling/src/sipcc/include/cc_device_feature.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* This Source Code Form is subject to the terms of the Mozilla Public
     2  * License, v. 2.0. If a copy of the MPL was not distributed with this
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     5 #ifndef _CC_DEVICE_FEATURE_H_
     6 #define _CC_DEVICE_FEATURE_H_
     8 #include "cc_constants.h"
    11 /**
    12  * Enable or disable video capability of the device.
    13  * @param enable - a flag to indicate that application wants to enable of
    14  * disable video capability of the device.
    15  * @return void
    16  */
    17 void CC_DeviceFeature_enableVideo(cc_boolean enable);
    19 /**
    20  * Indicate native video support for the device
    21  * @param enable - a flag to indicate that device supports native video
    22  * @return void
    23  */
    24 void CC_DeviceFeature_supportsVideo(cc_boolean enable);
    26 /**
    27  * Enable or disable camera capability of the device.
    28  * @param enable - a flag to indicate that application wants to enable of
    29  * disable camera capability of the device.
    30  * @return void
    31  */
    32 void CC_DeviceFeature_enableCamera(cc_boolean enable);
    35 #endif /* _CC_DEVICE_FEATURE_H_ */

mercurial