2011-09-19 18:54:09 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol client.
|
|
|
|
* Video Redirection Virtual Channel - Audio Device Manager
|
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Vic Lee
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TSMF_AUDIO_H
|
|
|
|
#define __TSMF_AUDIO_H
|
|
|
|
|
|
|
|
#include "drdynvc_types.h"
|
|
|
|
|
|
|
|
typedef struct _ITSMFAudioDevice ITSMFAudioDevice;
|
|
|
|
|
|
|
|
struct _ITSMFAudioDevice
|
|
|
|
{
|
|
|
|
/* Open the audio device. */
|
|
|
|
boolean (*Open) (ITSMFAudioDevice* audio, const char* device);
|
|
|
|
/* Set the audio data format. */
|
|
|
|
boolean (*SetFormat) (ITSMFAudioDevice* audio, uint32 sample_rate, uint32 channels, uint32 bits_per_sample);
|
|
|
|
/* Play audio data. */
|
|
|
|
boolean (*Play) (ITSMFAudioDevice* audio, uint8* data, uint32 data_size);
|
|
|
|
/* Get the latency of the last written sample, in 100ns */
|
|
|
|
uint64 (*GetLatency) (ITSMFAudioDevice* audio);
|
2012-08-08 02:42:45 +04:00
|
|
|
/* Change the playback volume level */
|
|
|
|
void (*ChangeVolume) (ITSMFAudioDevice* audio, uint32 newVolume, uint32 muted);
|
2011-09-19 18:54:09 +04:00
|
|
|
/* Flush queued audio data */
|
|
|
|
void (*Flush) (ITSMFAudioDevice* audio);
|
|
|
|
/* Free the audio device */
|
|
|
|
void (*Free) (ITSMFAudioDevice* audio);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TSMF_AUDIO_DEVICE_EXPORT_FUNC_NAME "TSMFAudioDeviceEntry"
|
|
|
|
typedef ITSMFAudioDevice* (*TSMF_AUDIO_DEVICE_ENTRY) (void);
|
|
|
|
|
|
|
|
ITSMFAudioDevice* tsmf_load_audio_device(const char* name, const char* device);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|