[asterisk-commits] dvossel: branch dvossel/fixtheworld_phase2 r306869 - /team/dvossel/fixtheworl...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 8 11:10:29 CST 2011
Author: dvossel
Date: Tue Feb 8 11:10:25 2011
New Revision: 306869
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=306869
Log:
Fixes error in loading custom formats into rtp_engine
Modified:
team/dvossel/fixtheworld_phase2/main/format.c
Modified: team/dvossel/fixtheworld_phase2/main/format.c
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/fixtheworld_phase2/main/format.c?view=diff&rev=306869&r1=306868&r2=306869
==============================================================================
--- team/dvossel/fixtheworld_phase2/main/format.c (original)
+++ team/dvossel/fixtheworld_phase2/main/format.c Tue Feb 8 11:10:25 2011
@@ -1115,7 +1115,6 @@
for (x = 0; x < f_len; x++) {
if (f_list[x].format.id == tmp_wrapper.id) {
ast_rtp_engine_load_format(&f_list[x].format);
- break;
}
}
@@ -1151,7 +1150,6 @@
for (x = 0; x < f_len; x++) {
if (f_list[x].format.id == tmp_wrapper.id) {
ast_rtp_engine_unload_format(&f_list[x].format);
- break;
}
}
More information about the asterisk-commits
mailing list