From: Mark Michelson Date: Thu, 9 Feb 2012 18:58:40 +0000 (+0000) Subject: Remove outdated comment. X-Git-Tag: 1.8.11.0-rc1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5aa7a6986e816d214024dc9cd9544fd077364d1f;p=thirdparty%2Fasterisk.git Remove outdated comment. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@354640 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/translate.c b/main/translate.c index d6039cc7e9..75ed9cf81f 100644 --- a/main/translate.c +++ b/main/translate.c @@ -517,8 +517,7 @@ static void rebuild_matrix(int samples) /* Is x->y->z a better choice than x->z? * There are three conditions for x->y->z to be a better choice than x->z * 1. if there is no step directly between x->z then x->y->z is the best and only current option. - * 2. if x->y->z costs less and the sample rate conversion is no less optimal. - * 3. if x->y->z results in a more optimal sample rate conversion. */ + * 2. if x->y->z results in a more optimal sample rate conversion. */ if (!tr_matrix[x][z].step) { better_choice = 1; } else if (new_rate_change < tr_matrix[x][z].rate_change) {