summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceAsync/src
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-02-21 10:46:12 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-02-21 10:46:12 +0100
commit906f202f7663e6c372c192d3bd7015d32a0fbc34 (patch)
treefc4b20038c058098b632e1a2a2f13537244c6e6f /PluginRoutingInterfaceAsync/src
parentad7b1f5816c6a3bdf2590d52a383f7aa0c52f275 (diff)
downloadaudiomanager-906f202f7663e6c372c192d3bd7015d32a0fbc34.tar.gz
* [GAM-12] Change project types as discussed in the F2F: changed in all tests, updated audiomanagertypes.h and projecttypes.h
* change towards the versioning scheme of the audiomanager in CMakelists.txt
Diffstat (limited to 'PluginRoutingInterfaceAsync/src')
-rw-r--r--PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp b/PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp
index 5027452..4993f76 100644
--- a/PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp
+++ b/PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp
@@ -118,7 +118,7 @@ void* AsyncRoutingSender::InterruptEvents(void *data)
{
am_sourceID_t sourceID;
- am_InterruptState_e state=IS_MIN;
+ am_InterruptState_e state=IS_UNKNOWN;
dbus_message_iter_init(msg, &args);
dbus_message_iter_get_basic(&args,(void*) &sourceID);
reply = dbus_message_new_method_return(msg);
@@ -763,17 +763,17 @@ std::vector<am_Sink_s> AsyncRoutingSender::createSinkTable()
std::vector<am_Sink_s> table;
am_Sink_s item;
am_SoundProperty_s sp;
- sp.type = SP_BASS;
+ sp.type = SP_EXAMPLE_BASS;
sp.value = 0;
std::vector<am_MainSoundProperty_s> listMainSoundProperties;
am_MainSoundProperty_s msp;
- msp.type = MSP_BASS;
+ msp.type = MSP_EXAMPLE_BASS;
msp.value = 5;
listMainSoundProperties.push_back(msp);
- msp.type = MSP_MID;
+ msp.type = MSP_EXAMPLE_MID;
listMainSoundProperties.push_back(msp);
- msp.type = MSP_TREBLE;
+ msp.type = MSP_EXAMPLE_TREBLE;
listMainSoundProperties.push_back(msp);
for (int16_t i = 0; i <= 10; i++)
{
@@ -789,7 +789,7 @@ std::vector<am_Sink_s> AsyncRoutingSender::createSinkTable()
item.listSoundProperties.push_back(sp);
item.listMainSoundProperties = listMainSoundProperties;
item.visible = true;
- item.listConnectionFormats.push_back(CF_ANALOG);
+ item.listConnectionFormats.push_back(CF_GENIVI_ANALOG);
item.muteState = MS_MUTED;
item.mainVolume = 0;
table.push_back(item);
@@ -815,7 +815,7 @@ std::vector<am_Source_s> AsyncRoutingSender::createSourceTable()
item.visible = true;
item.available.availability = A_AVAILABLE;
item.available.availabilityReason = AR_UNKNOWN;
- item.listConnectionFormats.push_back(CF_ANALOG);
+ item.listConnectionFormats.push_back(CF_GENIVI_ANALOG);
table.push_back(item);
}
return (table);