~ubuntu-branches/ubuntu/oneiric/lmms/oneiric

« back to all changes in this revision

Viewing changes to include/AudioDummy.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-12 13:32:32 UTC
  • mfrom: (1.1.9 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101112133232-vdld83iyji8srqti
Tags: 0.4.7-2ubuntu1
* Re-sync with Debian (LP: #606533):
  - Replace build-dep on libwine-dev with libwine-dev-unstable to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * AudioDummy.h - dummy audio-device
 
3
 *
 
4
 * Copyright (c) 2004-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
 
5
 *
 
6
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public
 
19
 * License along with this program (see COPYING); if not, write to the
 
20
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
 * Boston, MA 02110-1301 USA.
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef _AUDIO_DUMMY_H
 
26
#define _AUDIO_DUMMY_H
 
27
 
 
28
#include "AudioDevice.h"
 
29
#include "MicroTimer.h"
 
30
 
 
31
 
 
32
class AudioDummy : public AudioDevice, public QThread
 
33
{
 
34
public:
 
35
        AudioDummy( bool & _success_ful, mixer * _mixer ) :
 
36
                AudioDevice( DEFAULT_CHANNELS, _mixer )
 
37
        {
 
38
                _success_ful = true;
 
39
        }
 
40
 
 
41
        virtual ~AudioDummy()
 
42
        {
 
43
                stopProcessing();
 
44
        }
 
45
 
 
46
        inline static QString name()
 
47
        {
 
48
                return QT_TRANSLATE_NOOP( "setupWidget", "Dummy (no sound output)" );
 
49
        }
 
50
 
 
51
 
 
52
        class setupWidget : public AudioDevice::setupWidget
 
53
        {
 
54
        public:
 
55
                setupWidget( QWidget * _parent ) :
 
56
                        AudioDevice::setupWidget( AudioDummy::name(), _parent )
 
57
                {
 
58
                }
 
59
 
 
60
                virtual ~setupWidget()
 
61
                {
 
62
                }
 
63
 
 
64
                virtual void saveSettings()
 
65
                {
 
66
                }
 
67
 
 
68
                virtual void show()
 
69
                {
 
70
                        parentWidget()->hide();
 
71
                        QWidget::show();
 
72
                }
 
73
 
 
74
        } ;
 
75
 
 
76
 
 
77
private:
 
78
        virtual void startProcessing()
 
79
        {
 
80
                start();
 
81
        }
 
82
 
 
83
        virtual void stopProcessing()
 
84
        {
 
85
                if( isRunning() )
 
86
                {
 
87
                        wait( 1000 );
 
88
                        terminate();
 
89
                }
 
90
        }
 
91
 
 
92
        virtual void run()
 
93
        {
 
94
                MicroTimer timer;
 
95
                while( true )
 
96
                {
 
97
                        timer.reset();
 
98
                        const surroundSampleFrame * b =
 
99
                                                getMixer()->nextBuffer();
 
100
                        if( !b )
 
101
                        {
 
102
                                break;
 
103
                        }
 
104
                        delete[] b;
 
105
 
 
106
                        const Sint32 microseconds = static_cast<Sint32>(
 
107
                                        getMixer()->framesPerPeriod() *
 
108
                                        1000000.0f /
 
109
                                getMixer()->processingSampleRate() -
 
110
                                                        timer.elapsed() );
 
111
                        if( microseconds > 0 )
 
112
                        {
 
113
                                usleep( microseconds );
 
114
                        }
 
115
                }
 
116
        }
 
117
 
 
118
} ;
 
119
 
 
120
 
 
121
#endif