summaryrefslogtreecommitdiffstats
path: root/libvideoeditor/lvpp
diff options
context:
space:
mode:
authorDanny Fernandes <dannyfernandes@google.com>2011-02-14 10:43:10 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-02-14 10:43:10 -0800
commita14f40684961771d656ff88cce7c2b758511e92f (patch)
tree308608dad88a2cad313ad2c4655a5291a859d450 /libvideoeditor/lvpp
parent5bc7fb407ce1bab13d4a4a67d34a1a3192ee3186 (diff)
parentd196f1c368746d13c3a7dc470ebe3a4c33d2c74d (diff)
downloadframeworks_av-a14f40684961771d656ff88cce7c2b758511e92f.zip
frameworks_av-a14f40684961771d656ff88cce7c2b758511e92f.tar.gz
frameworks_av-a14f40684961771d656ff88cce7c2b758511e92f.tar.bz2
Merge "Fixed issue 3385135: change min audio buffer count to match awesome player"
Diffstat (limited to 'libvideoeditor/lvpp')
-rwxr-xr-xlibvideoeditor/lvpp/VideoEditorPlayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorPlayer.cpp b/libvideoeditor/lvpp/VideoEditorPlayer.cpp
index 46b18d9..7df6669 100755
--- a/libvideoeditor/lvpp/VideoEditorPlayer.cpp
+++ b/libvideoeditor/lvpp/VideoEditorPlayer.cpp
@@ -304,7 +304,7 @@ VideoEditorPlayer::VeAudioOutput::~VeAudioOutput() {
void VideoEditorPlayer::VeAudioOutput::setMinBufferCount() {
mIsOnEmulator = false;
- mMinBufferCount =12;
+ mMinBufferCount = 4;
}
bool VideoEditorPlayer::VeAudioOutput::isOnEmulator() {
@@ -368,8 +368,8 @@ status_t VideoEditorPlayer::VeAudioOutput::open(
// Check argument "bufferCount" against the mininum buffer count
if (bufferCount < mMinBufferCount) {
- LOGD("bufferCount (%d) is too small and increased to %d",
- bufferCount, mMinBufferCount);
+ LOGV("bufferCount (%d) is too small and increased to %d",
+ bufferCount, mMinBufferCount);
bufferCount = mMinBufferCount;
}