diff -r e5a0aab53f3f -r f7565e9c9ce8 devicesrv_plat/autoaudio_plugin_api/inc/autoaudiopskeys.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/devicesrv_plat/autoaudio_plugin_api/inc/autoaudiopskeys.h Fri Jun 11 14:56:08 2010 +0300 @@ -0,0 +1,33 @@ +#ifndef _AUTOAUDIO_PS_KEYS_ +#define _AUTOAUDIO_PS_KEYS_ + +#include + +/// header for defining P&S keys for automotive audio use cases +/// accessory server is responsible for defining below P&S keys during start-up +/// Automotive Server is responsible for publishing key values + +/// key for monitoring the connection status of RTP Streaming +/// client : AutoAudio ASY, publisher : automotive server +/// value : TPSAutoAudioConnectionStatus +const TUint KPSAutoKeyRTPStreamingConnectionStatus = 0x2; + +enum TPSAutoAudioConnectionStatus +{ + ENone, // Notifies Accessory Disconnection + EUnidirectional, // application sound only + EBidirectional // application sound + phone call +}; + + +/// key for monitoring the connection status of USB Audio +/// client : accessory FW, publisher : USB audio class controller +/// value : TPSAutoAudioConnectionStatus +// const TUint KPSAutoKeyUSBAudioConnectionStatus = 0x3; + +/// key for monitoring the successful launch of USB Audio. +/// client : USB audio class controller, publisher : USB Audio streaming implementation +/// value : TPSAutoAudioRunningStatus +// const TUint KPSAutoKeyUSBAudioRunningStatus = 0x4; + +#endif // _AUTOAUDIO_PS_KEYS_