summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2013-09-03 09:59:17 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-03 09:59:17 -0700
commit1d02870f5ea828b199030eefe592b680e6e52556 (patch)
treea2b14de261a60a717df557901e51aa2b2bc34441
parent2706e1ca0c118cb78fbbbc977e4e95e14fdedebc (diff)
parent250c97d651797efd5d95c8bbe1ac777572b03e43 (diff)
downloadsrec-1d02870f5ea828b199030eefe592b680e6e52556.tar.gz
am 250c97d6: Merge "Marking file-local inline functions as static"
* commit '250c97d651797efd5d95c8bbe1ac777572b03e43': Marking file-local inline functions as static
-rw-r--r--srec/Recognizer/src/RecognizerImpl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/srec/Recognizer/src/RecognizerImpl.c b/srec/Recognizer/src/RecognizerImpl.c
index f64a1db..4edf2dc 100644
--- a/srec/Recognizer/src/RecognizerImpl.c
+++ b/srec/Recognizer/src/RecognizerImpl.c
@@ -2601,7 +2601,7 @@ CLEANUP:
* INPUT STATES: SR_RECOGNIZER_INTERNAL_BOS_DETECTION, SR_RECOGNIZER_INTERNAL_EOS_DETECTION
* OUTPUT STATES: same or SR_RECOGNIZER_INTERNAL_EOI
*/
-PINLINE ESR_ReturnCode canPushAudioIntoRecognizer(SR_RecognizerImpl* impl)
+static PINLINE ESR_ReturnCode canPushAudioIntoRecognizer(SR_RecognizerImpl* impl)
{
ESR_ReturnCode rc;
@@ -2654,7 +2654,7 @@ CLEANUP:
* INPUT STATES: SR_RECOGNIZER_INTERNAL_BOS_DETECTION, SR_RECOGNIZER_INTERNAL_EOS_DETECTION
* OUTPUT STATES: same
*/
-PINLINE ESR_ReturnCode pushAudioIntoRecognizer(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
+static PINLINE ESR_ReturnCode pushAudioIntoRecognizer(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
SR_RecognizerResultType* type,
SR_RecognizerResult* result)
{
@@ -2714,7 +2714,7 @@ CLEANUP:
* INPUT STATES: SR_RECOGNIZER_INTERNAL_BOS_DETECTION, SR_RECOGNIZER_INTERNAL_EOS_DETECTION
* OUTPUT STATES: same
*/
-PINLINE ESR_ReturnCode generateFrameFromAudio(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
+static PINLINE ESR_ReturnCode generateFrameFromAudio(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
SR_RecognizerResultType* type,
SR_RecognizerResult* result)
{
@@ -2757,7 +2757,7 @@ PINLINE ESR_ReturnCode generateFrameFromAudio(SR_RecognizerImpl* impl, SR_Recogn
* INPUT STATES: SR_RECOGNIZER_INTERNAL_EOS_DETECTION
* OUTPUT STATES: same
*/
-PINLINE ESR_ReturnCode generateFrameStats(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
+static PINLINE ESR_ReturnCode generateFrameStats(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
SR_RecognizerResultType* type,
SR_RecognizerResult* result)
{
@@ -2780,7 +2780,7 @@ PINLINE ESR_ReturnCode generateFrameStats(SR_RecognizerImpl* impl, SR_Recognizer
* INPUT STATES: SR_RECOGNIZER_INTERNAL_EOS_DETECTION
* OUTPUT STATES: same or SR_RECOGNIZER_INTERNAL_EOI, SR_RECOGNIZER_INTERNAL_EOS
*/
-PINLINE ESR_ReturnCode generatePatternFromFrame(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
+static PINLINE ESR_ReturnCode generatePatternFromFrame(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
SR_RecognizerResultType* type,
SR_RecognizerResult* result)
{
@@ -2889,7 +2889,7 @@ CLEANUP:
* INPUT STATES: SR_RECOGNIZER_INTERNAL_EOI
* OUTPUT STATES: same or SR_RECOGNIZER_INTERNAL_EOS
*/
-PINLINE ESR_ReturnCode generatePatternFromFrameEOI(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
+static PINLINE ESR_ReturnCode generatePatternFromFrameEOI(SR_RecognizerImpl* impl, SR_RecognizerStatus* status,
SR_RecognizerResultType* type,
SR_RecognizerResult* result)
{