diff options
author | Eric Laurent <elaurent@google.com> | 2012-04-18 09:24:29 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2012-04-18 15:04:46 -0700 |
commit | 0ca3cf94c0dfc173ad7886ae162c4b67067539f6 (patch) | |
tree | bc156e7822e663626b78ec2ad09ef3970fbb48c5 /libvideoeditor | |
parent | ee685f6d19a6cc3b0bf02e69eb5dea11a2aeb601 (diff) | |
download | frameworks_av-0ca3cf94c0dfc173ad7886ae162c4b67067539f6.zip frameworks_av-0ca3cf94c0dfc173ad7886ae162c4b67067539f6.tar.gz frameworks_av-0ca3cf94c0dfc173ad7886ae162c4b67067539f6.tar.bz2 |
rename audio policy output flags
Change-Id: I27c46bd1d1b2b5f96b87af7d05b951fef18a1312
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-x | libvideoeditor/lvpp/VideoEditorAudioPlayer.cpp | 2 | ||||
-rwxr-xr-x | libvideoeditor/lvpp/VideoEditorPlayer.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorAudioPlayer.cpp b/libvideoeditor/lvpp/VideoEditorAudioPlayer.cpp index d0ee51b..797686c 100755 --- a/libvideoeditor/lvpp/VideoEditorAudioPlayer.cpp +++ b/libvideoeditor/lvpp/VideoEditorAudioPlayer.cpp @@ -537,7 +537,7 @@ status_t VideoEditorAudioPlayer::start(bool sourceAlreadyStarted) { (numChannels == 2) ? AUDIO_CHANNEL_OUT_STEREO : AUDIO_CHANNEL_OUT_MONO, - 0, AUDIO_POLICY_OUTPUT_FLAG_NONE, &AudioCallback, this, 0); + 0, AUDIO_OUTPUT_FLAG_NONE, &AudioCallback, this, 0); if ((err = mAudioTrack->initCheck()) != OK) { delete mAudioTrack; diff --git a/libvideoeditor/lvpp/VideoEditorPlayer.cpp b/libvideoeditor/lvpp/VideoEditorPlayer.cpp index 1ba1f44..c9cff81 100755 --- a/libvideoeditor/lvpp/VideoEditorPlayer.cpp +++ b/libvideoeditor/lvpp/VideoEditorPlayer.cpp @@ -442,7 +442,7 @@ status_t VideoEditorPlayer::VeAudioOutput::open( format, channelMask, frameCount, - AUDIO_POLICY_OUTPUT_FLAG_NONE, + AUDIO_OUTPUT_FLAG_NONE, CallbackWrapper, this); } else { |