[WASAPI] fix stream types and frequencies enumeration
[xbmc.git] / xbmc / speech / SpeechRecognitionErrors.h
blob140011c057b98bf489caf4058a460f672ee64aae
1 /*
2 * Copyright (C) 2005-2022 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 namespace speech
13 namespace RecognitionError
15 static constexpr int UNKNOWN = 1;
16 static constexpr int NETWORK_TIMEOUT = 2;
17 static constexpr int NETWORK = 3;
18 static constexpr int AUDIO = 4;
19 static constexpr int SERVER = 5;
20 static constexpr int CLIENT = 6;
21 static constexpr int SPEECH_TIMEOUT = 7;
22 static constexpr int NO_MATCH = 8;
23 static constexpr int RECOGNIZER_BUSY = 9;
24 static constexpr int INSUFFICIENT_PERMISSIONS = 10;
25 static constexpr int SERVICE_NOT_AVAILABLE = 11;
27 } // namespace RecognitionError
28 } // namespace speech