I have a native application which contains a class that implements IAudioOutEventListener.
My class's Create() method attempts to initialize the audio output by calling the Audio Output Construct() method, as follows ...
class SingleAudioOut : public Tizen::Media::IAudioOutEventListener
{
public:
result Create(void);
...
...
private:
AudioOut __audioOut;
...
...
};
result SingleAudioOut::Create(void)
{
result ret = __audioOut.Construct(*this);
...
...
}
The call to Construct() returns 0xA0000780, which is E_INVALID_OPERATION.
Is audio output from a Native Application supported under the emulator ?
If so, any suggestions as to what I am doing wrong ?