mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-04 12:29:27 +00:00
Add info to core.h types.h for wrapper
This commit is contained in:
parent
02e20501c9
commit
a0080315de
2 changed files with 3 additions and 1 deletions
|
|
@ -3719,6 +3719,7 @@ LINPHONE_PUBLIC void linphone_core_set_device_rotation(LinphoneCore *lc, int rot
|
|||
* This is needed on some mobile platforms to get the number of degrees the camera sensor
|
||||
* is rotated relative to the screen.
|
||||
* @param lc The linphone core related to the operation
|
||||
* @ingroup media_parameters
|
||||
* @return The camera sensor rotation in degrees (0 to 360) or -1 if it could not be retrieved
|
||||
*/
|
||||
LINPHONE_PUBLIC int linphone_core_get_camera_sensor_rotation(LinphoneCore *lc);
|
||||
|
|
|
|||
|
|
@ -487,8 +487,9 @@ typedef struct belle_sip_dict LinphoneDictionary;
|
|||
|
||||
/**
|
||||
* Enum describing the result of the echo canceller calibration process.
|
||||
* @ingroup media_parameters
|
||||
**/
|
||||
typedef enum {
|
||||
typedef enum _LinphoneEcCalibratorStatus {
|
||||
LinphoneEcCalibratorInProgress, /**< The echo canceller calibration process is on going */
|
||||
LinphoneEcCalibratorDone, /**< The echo canceller calibration has been performed and produced an echo delay measure */
|
||||
LinphoneEcCalibratorFailed, /**< The echo canceller calibration process has failed */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue