Skip to content

Commit

Permalink
Audio: Add a few missing things to latest commit, oeps!
Browse files Browse the repository at this point in the history
  • Loading branch information
Fagulhas committed Dec 20, 2012
1 parent 02523ae commit d2d437d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion audio/AudioHardware.cpp
Expand Up @@ -270,7 +270,7 @@ status_t AudioHardware::initCheck()
return mInit ? NO_ERROR : NO_INIT;
}

AudioStreamOut* AudioHardware::openOutputStream(uint32_t devices, int *format, uint32_t *channels,
AudioStreamOut* AudioHardware::openOutputStream(uint32_t devices, audio_output_flags_t flags, int *format, uint32_t *channels,
uint32_t *sampleRate, status_t *status)
{
ALOGD("openOutputStream: devices = %u format = %x channels = %u sampleRate = %u flags %x\n",
Expand Down
1 change: 1 addition & 0 deletions audio/AudioHardware.h
Expand Up @@ -211,6 +211,7 @@ class AudioHardware : public AudioHardwareBase
// create I/O streams
virtual AudioStreamOut* openOutputStream(
uint32_t devices,
audio_output_flags_t flags,
int *format=0,
uint32_t *channels=0,
uint32_t *sampleRate=0,
Expand Down

0 comments on commit d2d437d

Please sign in to comment.