Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions include/AudioSndio.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
/*
* AudioSndio.h - base-class that implements sndio audio support
*
* Copyright (c) 2010-2016 [email protected]
* Copyright (c) 2016-2017 David Carlier <[email protected]>
*
* This file is part of LMMS - https://lmms.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/

#ifndef _AUDIO_SNDIO_H
#define _AUDIO_SNDIO_H

Expand Down
33 changes: 29 additions & 4 deletions include/MidiSndio.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
/*
* MidiSndio.h - base-class that implements sndio midi support
*
* Copyright (c) 2010-2016 [email protected]
* Copyright (c) 2016-2017 David Carlier <[email protected]>
*
* This file is part of LMMS - https://lmms.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/

#ifndef _MIDI_SNDIO_H
#define _MIDI_SNDIO_H

Expand Down Expand Up @@ -28,10 +53,10 @@ class MidiSndio : public MidiClientRaw, public QThread
return QT_TRANSLATE_NOOP("MidiSetupWidget", "sndio MIDI");
}

inline static QString configSection()
{
return "MidiSndio";
}
inline static QString configSection()
{
return "MidiSndio";
}


protected:
Expand Down
31 changes: 26 additions & 5 deletions src/core/audio/AudioSndio.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
#ifndef SINGLE_SOURCE_COMPILE

/* license */
/*
* AudioSndio.cpp - base-class that implements sndio audio support
*
* Copyright (c) 2010-2016 [email protected]
* Copyright (c) 2016-2017 David Carlier <[email protected]>
*
* This file is part of LMMS - https://lmms.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/

#include "AudioSndio.h"

#ifdef LMMS_HAVE_SNDIO

Expand Down Expand Up @@ -198,5 +221,3 @@ void AudioSndio::setupWidget::saveSettings( void )


#endif /* LMMS_HAVE_SNDIO */

#endif /* SINGLE_SOURCE_COMPILE */
31 changes: 26 additions & 5 deletions src/core/midi/MidiSndio.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
#ifndef SINGLE_SOURCE_COMPILE

/* license */
/*
* MidiSndio.cpp - base-class that implements sndio midi support
*
* Copyright (c) 2010-2016 [email protected]
* Copyright (c) 2016-2017 David Carlier <[email protected]>
*
* This file is part of LMMS - https://lmms.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/

#include "MidiSndio.h"

#ifdef LMMS_HAVE_SNDIO

Expand Down Expand Up @@ -95,5 +118,3 @@ void MidiSndio::run( void )
}

#endif /* LMMS_HAVE_SNDIO */

#endif /* SINGLE_SOURCE_COMPILE */