X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fbindings%2Fqt4%2Fraopcallbacks.h;h=2ad71042247988a6b9ab0d9740db609107ed5ec0;hb=d433e0453fd716468d4d13d7acdd6879d6dc4c94;hp=07fd7ed24c1d40ab56e05b370a0e9d23b705b0de;hpb=f65165f4a61e4ecab5cd6159c01723d5115352b4;p=deb_shairplay.git diff --git a/src/bindings/qt4/raopcallbacks.h b/src/bindings/qt4/raopcallbacks.h index 07fd7ed..2ad7104 100644 --- a/src/bindings/qt4/raopcallbacks.h +++ b/src/bindings/qt4/raopcallbacks.h @@ -1,13 +1,45 @@ +/** + * Copyright (C) 2012 Juho Vähä-Herttua + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + #ifndef RAOPCALLBACKS_H #define RAOPCALLBACKS_H #include -class RaopCallbacks : public QObject +class RaopLogHandler : public QObject +{ + Q_OBJECT +public: + explicit RaopLogHandler(QObject *parent = 0) : QObject(parent) {} + + virtual void logCallback(int level, const char *msg) = 0; +}; + +class RaopAudioHandler : public QObject { Q_OBJECT public: - explicit RaopCallbacks(QObject *parent = 0) : QObject(parent) {} + explicit RaopAudioHandler(QObject *parent = 0) : QObject(parent) {} virtual void *audioInit(int bits, int channels, int samplerate) = 0; virtual void audioProcess(void *session, const QByteArray & buffer) = 0; @@ -17,11 +49,6 @@ public: virtual void audioSetVolume(void *session, float volume) { Q_UNUSED(session) Q_UNUSED(volume) } virtual void audioSetMetadata(void *session, const QByteArray & buffer) { Q_UNUSED(session) Q_UNUSED(buffer) } virtual void audioSetCoverart(void *session, const QByteArray & buffer) { Q_UNUSED(session) Q_UNUSED(buffer) } - -signals: - -public slots: - }; #endif // RAOPCALLBACKS_H