summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-12-30 08:24:22 -0800
committerGlenn Kasten <gkasten@google.com>2014-12-30 08:24:22 -0800
commit0c7022072205ec9790a5b2c1b626096fc4cba74d (patch)
tree7831cab9bc930b4e704a288b02fdcd9b361d00f9
parentb6e899dac06a1b1f951d39f14fb7c21e3de01202 (diff)
downloadandroid_frameworks_wilhelm-0c7022072205ec9790a5b2c1b626096fc4cba74d.tar.gz
android_frameworks_wilhelm-0c7022072205ec9790a5b2c1b626096fc4cba74d.tar.bz2
android_frameworks_wilhelm-0c7022072205ec9790a5b2c1b626096fc4cba74d.zip
Line length 100
Change-Id: Ic27cdff0edc815284ce4bc0cecd84b0e00d1f3a4
-rw-r--r--src/itf/IAcousticEchoCancellation.c6
-rw-r--r--src/itf/IAutomaticGainControl.c6
-rw-r--r--tests/examples/slesTestDecodeAac.cpp3
3 files changed, 10 insertions, 5 deletions
diff --git a/src/itf/IAcousticEchoCancellation.c b/src/itf/IAcousticEchoCancellation.c
index 728d776..8823083 100644
--- a/src/itf/IAcousticEchoCancellation.c
+++ b/src/itf/IAcousticEchoCancellation.c
@@ -28,7 +28,8 @@ static inline bool NO_ECHOCANCEL(IAndroidAcousticEchoCancellation* v) {
return (v->mAECEffect == 0);
}
-static SLresult IAndroidAcousticEchoCancellation_SetEnabled(SLAndroidAcousticEchoCancellationItf self,
+static SLresult IAndroidAcousticEchoCancellation_SetEnabled(
+ SLAndroidAcousticEchoCancellationItf self,
SLboolean enabled)
{
SL_ENTER_INTERFACE
@@ -47,7 +48,8 @@ static SLresult IAndroidAcousticEchoCancellation_SetEnabled(SLAndroidAcousticEch
SL_LEAVE_INTERFACE
}
-static SLresult IAndroidAcousticEchoCancellation_IsEnabled(SLAndroidAcousticEchoCancellationItf self,
+static SLresult IAndroidAcousticEchoCancellation_IsEnabled(
+ SLAndroidAcousticEchoCancellationItf self,
SLboolean *pEnabled)
{
SL_ENTER_INTERFACE
diff --git a/src/itf/IAutomaticGainControl.c b/src/itf/IAutomaticGainControl.c
index 8512436..f3c5c40 100644
--- a/src/itf/IAutomaticGainControl.c
+++ b/src/itf/IAutomaticGainControl.c
@@ -28,7 +28,8 @@ static inline bool NO_AUTOGAIN(IAndroidAutomaticGainControl* v) {
return (v->mAGCEffect == 0);
}
-SLresult IAndroidAutomaticGainControl_SetEnabled(SLAndroidAutomaticGainControlItf self, SLboolean enabled)
+SLresult IAndroidAutomaticGainControl_SetEnabled(SLAndroidAutomaticGainControlItf self,
+ SLboolean enabled)
{
SL_ENTER_INTERFACE
@@ -46,7 +47,8 @@ SLresult IAndroidAutomaticGainControl_SetEnabled(SLAndroidAutomaticGainControlIt
SL_LEAVE_INTERFACE
}
-SLresult IAndroidAutomaticGainControl_IsEnabled(SLAndroidAutomaticGainControlItf self, SLboolean *pEnabled)
+SLresult IAndroidAutomaticGainControl_IsEnabled(SLAndroidAutomaticGainControlItf self,
+ SLboolean *pEnabled)
{
SL_ENTER_INTERFACE
diff --git a/tests/examples/slesTestDecodeAac.cpp b/tests/examples/slesTestDecodeAac.cpp
index 92ce5a2..bef21a8 100644
--- a/tests/examples/slesTestDecodeAac.cpp
+++ b/tests/examples/slesTestDecodeAac.cpp
@@ -263,7 +263,8 @@ SLresult AndroidBufferQueueCallback(
}
} else if (filelen == 0) {
// signal EOS to the decoder rather than just starving it
- printf("Enqueue EOS: encoded frames=%zu, decoded frames=%zu\n", encodedFrames, decodedFrames);
+ printf("Enqueue EOS: encoded frames=%zu, decoded frames=%zu\n", encodedFrames,
+ decodedFrames);
printf("You should now see %u ADTS completion%s followed by 1 EOS completion\n",
NB_BUFFERS_IN_ADTS_QUEUE - 1, NB_BUFFERS_IN_ADTS_QUEUE != 2 ? "s" : "");
SLAndroidBufferItem msgEos;