UniMRCP  1.3.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mrcp_verifier_resource.h
Go to the documentation of this file.
1 /*
2  * Copyright 2008-2014 Arsen Chaloyan
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  * $Id:
17  */
18 
19 #ifndef MRCP_VERIFIER_RESOURCE_H
20 #define MRCP_VERIFIER_RESOURCE_H
21 
22 /**
23  * @file mrcp_verifier_resource.h
24  * @brief MRCP Verifier Resource
25  */
26 
27 #include "mrcp_types.h"
28 
30 
31 /** MRCP verifier methods */
32 typedef enum {
33  VERIFIER_SET_PARAMS,
34  VERIFIER_GET_PARAMS,
35  VERIFIER_START_SESSION,
36  VERIFIER_END_SESSION,
37  VERIFIER_QUERY_VOICEPRINT,
38  VERIFIER_DELETE_VOICEPRINT,
39  VERIFIER_VERIFY,
40  VERIFIER_VERIFY_FROM_BUFFER,
41  VERIFIER_VERIFY_ROLLBACK,
42  VERIFIER_STOP,
43  VERIFIER_CLEAR_BUFFER,
44  VERIFIER_START_INPUT_TIMERS,
45  VERIFIER_GET_INTERMIDIATE_RESULT,
46 
47  VERIFIER_METHOD_COUNT
49 
50 /** MRCP verifier events */
51 typedef enum {
52  VERIFIER_START_OF_INPUT,
53  VERIFIER_VERIFICATION_COMPLETE,
54 
55  VERIFIER_EVENT_COUNT
57 
58 /** Create MRCP verifier resource */
60 
62 
63 #endif /* MRCP_VERIFIER_RESOURCE_H */