summaryrefslogtreecommitdiffstats
path: root/lib/picoctrl.h
diff options
context:
space:
mode:
authorCharles Chen <clchen@google.com>2009-06-22 16:25:25 -0700
committerCharles Chen <clchen@google.com>2009-06-22 17:14:37 -0700
commit1284d937084a20b457c280259fff59391129509a (patch)
tree5630028284c450b56a56b187d9c99cf7ebcee9cc /lib/picoctrl.h
parentf605ee98e5e03144c25a92af7e5d2a3ec33d375f (diff)
downloadexternal_svox-1284d937084a20b457c280259fff59391129509a.zip
external_svox-1284d937084a20b457c280259fff59391129509a.tar.gz
external_svox-1284d937084a20b457c280259fff59391129509a.tar.bz2
Moving PicoTts plugin under the pico directory of external/svox
Diffstat (limited to 'lib/picoctrl.h')
-rw-r--r--lib/picoctrl.h101
1 files changed, 0 insertions, 101 deletions
diff --git a/lib/picoctrl.h b/lib/picoctrl.h
deleted file mode 100644
index 1dfea54..0000000
--- a/lib/picoctrl.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/*
- * Copyright (C) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/**
- * @file picoctrl.h
- *
- * Copyright (C) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland
- * All rights reserved.
- *
- * History:
- * - 2009-04-20 -- initial version
- *
- */
-
-#ifndef PICOCTRL_H_
-#define PICOCTRL_H_
-
-#include "picodefs.h"
-#include "picoos.h"
-#include "picorsrc.h"
-#include "picodata.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-#if 0
-}
-#endif
-
-#define PICOCTRL_MAX_PROC_UNITS 25
-
-/* temporarily increased for preprocessing
-#define PICOCTRL_DEFAULT_ENGINE_SIZE 200000
-*/
-#define PICOCTRL_DEFAULT_ENGINE_SIZE 1000000
-
-typedef struct picoctrl_engine * picoctrl_Engine;
-
-picoos_int16 picoctrl_isValidEngineHandle(picoctrl_Engine this);
-
-picoctrl_Engine picoctrl_newEngine (
- picoos_MemoryManager mm,
- picorsrc_ResourceManager rm,
- const picoos_char * voiceName
- );
-
-void picoctrl_disposeEngine(
- picoos_MemoryManager mm,
- picorsrc_ResourceManager rm,
- picoctrl_Engine * this
- );
-
-pico_status_t picoctrl_engFeedText(
- picoctrl_Engine engine,
- picoos_char * text,
- picoos_int16 textSize,
- picoos_int16 * bytesPut);
-
-pico_status_t picoctrl_engReset(
- picoctrl_Engine engine
- );
-
-picoos_Common picoctrl_engGetCommon(picoctrl_Engine this);
-
-picodata_step_result_t picoctrl_engFetchOutputItemBytes(
- picoctrl_Engine engine,
- picoos_char * buffer,
- picoos_int16 bufferSize,
- picoos_int16 * bytesReceived
-);
-
-void picoctrl_engResetExceptionManager(
- picoctrl_Engine this
- );
-
-
-picodata_step_result_t picoctrl_getLastScheduledPU(
- picoctrl_Engine engine
- );
-
-picodata_step_result_t picoctrl_getLastProducedItemType(
- picoctrl_Engine engine
- );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /*PICOCTRL_H_*/