summaryrefslogtreecommitdiff
path: root/usr/src/cmd/audio/include/AudioDevicectl.h
blob: f090fcd74651e47dc76d452d559def2f5f1d17af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright (c) 1992-2001 by Sun Microsystems, Inc.
 * All rights reserved.
 */

#ifndef _MULTIMEDIA_AUDIODEVICECTL_H
#define	_MULTIMEDIA_AUDIODEVICECTL_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#include <AudioDevice.h>

#ifdef __cplusplus
extern "C" {
#endif

// This is the audio control device class
//
// The audio control device cannot be read or written.

class AudioDevicectl : public AudioDevice {
private:
	AudioDevicectl operator=(AudioDevicectl);	// Assignment is illegal

protected:

public:
	// Constructor with path
	AudioDevicectl(
	    const char	*path = "");		// default device
	virtual ~AudioDevicectl() {}		// Destructor

	// class AudioDevice methods specialized here
	virtual AudioError tryopen(
	    const char *, int);		// open with a given pathname

	// class Audio methods specialized here
	virtual AudioHdr GetReadHeader();	// Get header

	// Device control and status functions
	// Turn SIGPOLL on/off
	virtual AudioError SetSignal(
	    Boolean on);


	// No-op methods
	virtual AudioError Create()
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError ReadData(void*, size_t&, Double&)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError WriteData(void*, size_t&, Double&)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError SetHeader(const AudioHdr&)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError SetReadHeader(AudioHdr&)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError SetWriteHeader(AudioHdr&)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError WriteEof()
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError Flush(const FileAccess)
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }
	virtual AudioError DrainOutput()
	    { return (RaiseError(AUDIO_ERR_NOEFFECT)); }

	virtual Boolean isDevice() const { return (TRUE); } // XXX ??
	virtual Boolean isDevicectl() const { return (TRUE); }
};

#ifdef __cplusplus
}
#endif

#endif /* !_MULTIMEDIA_AUDIODEVICECTL_H */