From d79f3d3fa9e5da3fe13ae280cabe9f8a28b578fa Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Wed, 17 Oct 2012 14:58:55 +0200 Subject: [PATCH] Add comment to warn about change of echo canceller calibration statuses. --- java/common/org/linphone/core/LinphoneCore.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/java/common/org/linphone/core/LinphoneCore.java b/java/common/org/linphone/core/LinphoneCore.java index de1b4743c..562ae86cd 100644 --- a/java/common/org/linphone/core/LinphoneCore.java +++ b/java/common/org/linphone/core/LinphoneCore.java @@ -231,6 +231,8 @@ public interface LinphoneCore { static public class EcCalibratorStatus { static private Vector values = new Vector(); + /* Do not change the values of these constants or the strings associated with them to prevent breaking + the collection of echo canceller calibration results during the wizard! */ public static final int IN_PROGRESS_STATUS=0; public static final int DONE_STATUS=1; public static final int FAILED_STATUS=2;