~paulliu/ubuntu/quantal/freerdp/fixext

« back to all changes in this revision

Viewing changes to channels/drdynvc/audin/audin_main.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20120131100214-zvig71djj2sqgq22
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
   Copyright (c) 2010 Vic Lee
3
 
 
4
 
   Permission is hereby granted, free of charge, to any person obtaining a
5
 
   copy of this software and associated documentation files (the "Software"),
6
 
   to deal in the Software without restriction, including without limitation
7
 
   the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
 
   and/or sell copies of the Software, and to permit persons to whom the
9
 
   Software is furnished to do so, subject to the following conditions:
10
 
 
11
 
   The above copyright notice and this permission notice shall be included
12
 
   in all copies or substantial portions of the Software.
13
 
 
14
 
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
 
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
 
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
 
   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
 
   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19
 
   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20
 
   DEALINGS IN THE SOFTWARE.
21
 
 
22
 
*/
 
1
/**
 
2
 * FreeRDP: A Remote Desktop Protocol client.
 
3
 * Audio Input Redirection Virtual Channel
 
4
 *
 
5
 * Copyright 2010-2011 Vic Lee
 
6
 *
 
7
 * Licensed under the Apache License, Version 2.0 (the "License");
 
8
 * you may not use this file except in compliance with the License.
 
9
 * You may obtain a copy of the License at
 
10
 *
 
11
 *     http://www.apache.org/licenses/LICENSE-2.0
 
12
 *
 
13
 * Unless required by applicable law or agreed to in writing, software
 
14
 * distributed under the License is distributed on an "AS IS" BASIS,
 
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
16
 * See the License for the specific language governing permissions and
 
17
 * limitations under the License.
 
18
 */
23
19
 
24
20
#ifndef __AUDIN_MAIN_H
25
21
#define __AUDIN_MAIN_H
26
22
 
27
 
typedef int (*wave_in_receive_func) (char * wave_data, int size, void * user_data);
28
 
 
29
 
void *
30
 
wave_in_new(void);
31
 
void
32
 
wave_in_free(void * device_data);
33
 
int
34
 
wave_in_format_supported(void * device_data, char * snd_format, int size);
35
 
int
36
 
wave_in_set_format(void * device_data, uint32 FramesPerPacket, char * snd_format, int size);
37
 
int
38
 
wave_in_open(void * device_data, wave_in_receive_func receive_func, void * user_data);
39
 
int
40
 
wave_in_close(void * device_data);
41
 
 
42
 
#endif
 
23
#include "drdynvc_types.h"
 
24
 
 
25
typedef boolean (*AudinReceive) (uint8* data, int size, void* user_data);
 
26
 
 
27
typedef struct audin_format audinFormat;
 
28
struct audin_format
 
29
{
 
30
        uint16 wFormatTag;
 
31
        uint16 nChannels;
 
32
        uint32 nSamplesPerSec;
 
33
        uint16 nBlockAlign;
 
34
        uint16 wBitsPerSample;
 
35
        uint16 cbSize;
 
36
        uint8* data;
 
37
};
 
38
 
 
39
typedef struct _IAudinDevice IAudinDevice;
 
40
struct _IAudinDevice
 
41
{
 
42
        void (*Open) (IAudinDevice* devplugin, AudinReceive receive, void* user_data);
 
43
        boolean (*FormatSupported) (IAudinDevice* devplugin, audinFormat* format);
 
44
        void (*SetFormat) (IAudinDevice* devplugin, audinFormat* format, uint32 FramesPerPacket);
 
45
        void (*Close) (IAudinDevice* devplugin);
 
46
        void (*Free) (IAudinDevice* devplugin);
 
47
};
 
48
 
 
49
#define AUDIN_DEVICE_EXPORT_FUNC_NAME "FreeRDPAudinDeviceEntry"
 
50
 
 
51
typedef void (*PREGISTERAUDINDEVICE)(IWTSPlugin* plugin, IAudinDevice* device);
 
52
 
 
53
struct _FREERDP_AUDIN_DEVICE_ENTRY_POINTS
 
54
{
 
55
        IWTSPlugin* plugin;
 
56
        PREGISTERAUDINDEVICE pRegisterAudinDevice;
 
57
        RDP_PLUGIN_DATA* plugin_data;
 
58
};
 
59
typedef struct _FREERDP_AUDIN_DEVICE_ENTRY_POINTS FREERDP_AUDIN_DEVICE_ENTRY_POINTS;
 
60
typedef FREERDP_AUDIN_DEVICE_ENTRY_POINTS* PFREERDP_AUDIN_DEVICE_ENTRY_POINTS;
 
61
 
 
62
typedef int (*PFREERDP_AUDIN_DEVICE_ENTRY)(PFREERDP_AUDIN_DEVICE_ENTRY_POINTS pEntryPoints);
 
63
 
 
64
#endif /* __AUDIN_MAIN_H */
43
65