Initial codec configuration querying modules. Not functional yet.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17137 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
João Mesquita 2010-03-30 03:52:45 +00:00
parent 80a93da4ed
commit e39be69652
3 changed files with 21 additions and 1 deletions

View File

@ -297,6 +297,7 @@ void MainWindow::fshostReady()
tr("Portaudio could not be loaded. Please check if mod_portaudio is properly compiled."),
QMessageBox::Ok);
}
}
void MainWindow::paAnswer()

View File

@ -201,7 +201,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
<number>2</number>
</property>
<widget class="QWidget" name="tab">
<attribute name="title">
@ -525,6 +525,16 @@
</item>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_42">
<property name="text">
<string>Codecs</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QListWidget" name="listAvailableCodecs"/>
</item>
</layout>
</widget>
<widget class="QWidget" name="tab_3">

View File

@ -68,6 +68,15 @@ void PrefSofia::readConfig()
settings.endGroup();
settings.endGroup();
/* This is here to show the proper codec config! */
const switch_codec_implementation_t *codecs[SWITCH_MAX_CODECS];
uint32_t num_codecs = switch_loadable_module_get_codecs(codecs, sizeof(codecs) / sizeof(codecs[0]));
uint32_t x;
for (x = 0; x < num_codecs; x++) {
_ui->listAvailableCodecs->addItem(codecs[x]->iananame);
}
}
void PrefSofia::writeConfig()