#ifndef COREAV_H #define COREAV_H #include #if defined(__APPLE__) && defined(__MACH__) #include #include #else #include #include #endif class QTimer; struct ToxCall { public: ToxAvCSettings codecSettings; QTimer *sendAudioTimer, *sendVideoTimer; int callId; int friendId; bool videoEnabled; bool active; bool muteMic; ALuint alSource; }; #endif // COREAV_H