diff options
author | Chris Robinson <[email protected]> | 2020-09-20 04:11:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-09-20 04:11:52 -0700 |
commit | 191150d9a8e5dea9350030c8d4cade37fcad1695 (patch) | |
tree | 3d5cb8b6c70c9bdd688d805f7b0d8e5f41d09c27 /examples | |
parent | 8ef242bce084fae0689f2148442d10b5d029a512 (diff) |
Remove deprecated, performance, and error event types
These would be better served with a proper debug API, rather than a general
audio event API.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/alffplay.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/examples/alffplay.cpp b/examples/alffplay.cpp index abffee85..6d6a2471 100644 --- a/examples/alffplay.cpp +++ b/examples/alffplay.cpp @@ -81,10 +81,7 @@ extern "C" { #define AL_EVENT_CALLBACK_USER_PARAM_SOFT 0x1221 #define AL_EVENT_TYPE_BUFFER_COMPLETED_SOFT 0x1222 #define AL_EVENT_TYPE_SOURCE_STATE_CHANGED_SOFT 0x1223 -#define AL_EVENT_TYPE_ERROR_SOFT 0x1224 -#define AL_EVENT_TYPE_PERFORMANCE_SOFT 0x1225 -#define AL_EVENT_TYPE_DEPRECATED_SOFT 0x1226 -#define AL_EVENT_TYPE_DISCONNECTED_SOFT 0x1227 +#define AL_EVENT_TYPE_DISCONNECTED_SOFT 0x1224 typedef void (AL_APIENTRY*ALEVENTPROCSOFT)(ALenum eventType, ALuint object, ALuint param, ALsizei length, const ALchar *message, void *userParam); @@ -904,9 +901,6 @@ void AL_APIENTRY AudioState::EventCallback(ALenum eventType, ALuint object, ALui { case AL_EVENT_TYPE_BUFFER_COMPLETED_SOFT: std::cout<< "Buffer completed"; break; case AL_EVENT_TYPE_SOURCE_STATE_CHANGED_SOFT: std::cout<< "Source state changed"; break; - case AL_EVENT_TYPE_ERROR_SOFT: std::cout<< "API error"; break; - case AL_EVENT_TYPE_PERFORMANCE_SOFT: std::cout<< "Performance"; break; - case AL_EVENT_TYPE_DEPRECATED_SOFT: std::cout<< "Deprecated"; break; case AL_EVENT_TYPE_DISCONNECTED_SOFT: std::cout<< "Disconnected"; break; default: std::cout<< "0x"<<std::hex<<std::setw(4)<<std::setfill('0')<<eventType<<std::dec<< @@ -964,9 +958,8 @@ int AudioState::handler() ALenum fmt; #ifdef AL_SOFT_events - const std::array<ALenum,6> evt_types{{ + const std::array<ALenum,3> evt_types{{ AL_EVENT_TYPE_BUFFER_COMPLETED_SOFT, AL_EVENT_TYPE_SOURCE_STATE_CHANGED_SOFT, - AL_EVENT_TYPE_ERROR_SOFT, AL_EVENT_TYPE_PERFORMANCE_SOFT, AL_EVENT_TYPE_DEPRECATED_SOFT, AL_EVENT_TYPE_DISCONNECTED_SOFT}}; if(alEventControlSOFT) { |