[asterisk-dev] asterisk-gui not recognizing codec_g729a, with patch

Jim Capp jcapp at anteil.com
Fri Nov 9 13:13:11 CST 2007


Hi Folks,

     I ran into a problem where the g729 codec was not being listed as
an option in the Codec Preferences pop-up.  I narrowed the problem down
to CODECSETTINGS.selectbox_add() looking for 'g729' whereas
load_codecs_fromast() returns 'g729a' for the Digium G729 codec.

I checked asterisk-gui/branches/1.4 and asterisk-gui/trunk and could not
find any recent commits that led me to believe this was being addressed.

I patched load_codecs_fromast() to substitute 'g729' for 'g729a' and
have enclosed this patch.  If I had write access to a trunk, I'd commit
it myself.  But since no ones knows me (yet), I am submitting this patch
for review.

================================================================================================================================
--- /usr/src/asterisk-gui/config/users.html     2007-11-09
13:34:37.000000000 -0500
+++ users.html  2007-11-09 13:59:43.000000000 -0500
@@ -287,6 +287,9 @@
                                        if(resp[i][1][0] == "a") {
                                                continue; /* codec is a_mu, alaw to mulaw direct codec/decoder, not a codec preference. */
                                        }
+                                       if(resp[i][1][0] == "g729a") {
+                                               resp[i][1][0] = "g729"; /* g729a needs to be reported as g729 in order to be recognized */
+                                       }
                                                allcodecs[i] = resp[i][1][0];
                                }
                        }
================================================================================================================================

Cheers,

Jim





More information about the asterisk-dev mailing list