2012-11-01 07:04:31 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* FreeRDP Mac OS X Server (Audio Output)
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 MF_RDPSND_H
|
|
|
|
#define MF_RDPSND_H
|
|
|
|
|
2013-01-25 04:21:56 +04:00
|
|
|
#include <CoreAudio/CoreAudio.h>
|
|
|
|
#include <AudioToolbox/AudioToolbox.h>
|
|
|
|
|
2012-11-01 07:04:31 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/listener.h>
|
|
|
|
#include <freerdp/server/rdpsnd.h>
|
|
|
|
|
2013-01-24 01:09:09 +04:00
|
|
|
#include "mf_interface.h"
|
2012-11-01 07:04:31 +04:00
|
|
|
#include "mfreerdp.h"
|
|
|
|
|
2013-01-25 04:21:56 +04:00
|
|
|
void mf_rdpsnd_derive_buffer_size (AudioQueueRef audioQueue,
|
|
|
|
AudioStreamBasicDescription *ASBDescription,
|
|
|
|
Float64 seconds,
|
|
|
|
UInt32 *outBufferSize);
|
|
|
|
|
|
|
|
void mf_peer_rdpsnd_input_callback (void *inUserData,
|
2013-02-20 00:06:42 +04:00
|
|
|
AudioQueueRef inAQ,
|
|
|
|
AudioQueueBufferRef inBuffer,
|
|
|
|
const AudioTimeStamp *inStartTime,
|
|
|
|
UInt32 inNumberPacketDescriptions,
|
|
|
|
const AudioStreamPacketDescription *inPacketDescs);
|
2013-01-25 04:21:56 +04:00
|
|
|
|
2012-11-01 07:04:31 +04:00
|
|
|
|
2013-03-06 03:24:03 +04:00
|
|
|
#define SND_NUMBUFFERS 3
|
2013-01-25 04:21:56 +04:00
|
|
|
struct _AQRecorderState
|
|
|
|
{
|
2013-02-20 00:06:42 +04:00
|
|
|
AudioStreamBasicDescription dataFormat;
|
|
|
|
AudioQueueRef queue;
|
2013-03-06 03:24:03 +04:00
|
|
|
AudioQueueBufferRef buffers[SND_NUMBUFFERS];
|
2013-02-20 00:06:42 +04:00
|
|
|
AudioFileID audioFile;
|
|
|
|
UInt32 bufferByteSize;
|
|
|
|
SInt64 currentPacket;
|
|
|
|
bool isRunning;
|
|
|
|
rdpsnd_server_context* snd_context;
|
|
|
|
|
2013-01-25 04:21:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AQRecorderState AQRecorderState;
|
|
|
|
|
2013-01-25 05:03:44 +04:00
|
|
|
BOOL mf_peer_rdpsnd_init(mfPeerContext* context);
|
2013-02-15 01:20:43 +04:00
|
|
|
BOOL mf_peer_rdpsnd_stop(void);
|
2013-01-25 05:03:44 +04:00
|
|
|
|
2012-11-01 07:04:31 +04:00
|
|
|
#endif /* MF_RDPSND_H */
|
|
|
|
|