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
96
97
98
99
100
101
102
103
104
105
106
|
/*
* Simple Wave Format Support
* Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
*
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <stdio.h>
#include "local.h"
#include <asm/byteorder.h>
#include <sound/ainstr_simple.h>
int snd_instr_simple_free(snd_instr_simple_t *simple)
{
if (simple == NULL)
return 0;
free(simple);
return 0;
}
static long simple_size(simple_instrument_t *instr)
{
int size;
size = instr->size;
if (instr->format & SIMPLE_WAVE_16BIT)
size <<= 1;
if (instr->format & SIMPLE_WAVE_STEREO)
size <<= 1;
return size;
}
int snd_instr_simple_convert_to_stream(snd_instr_simple_t *simple,
const char *name,
snd_instr_header_t **__data,
size_t *__size)
{
snd_instr_header_t *put;
int size;
char *ptr;
simple_instrument_t *instr;
simple_xinstrument_t *xinstr;
if (simple == NULL || __data == NULL)
return -EINVAL;
instr = (simple_instrument_t *)simple;
*__data = NULL;
*__size = 0;
size = simple_size(simple);
if (snd_instr_header_malloc(&put, sizeof(simple_xinstrument_t) + size) < 0)
return -ENOMEM;
/* build header */
if (name)
snd_instr_header_set_name(put, name);
snd_instr_header_set_type(put, SND_SEQ_INSTR_ATYPE_DATA);
snd_instr_header_set_format(put, SND_SEQ_INSTR_ID_SIMPLE);
/* build data section */
xinstr = (simple_xinstrument_t *)snd_instr_header_get_data(put);
xinstr->stype = SIMPLE_STRU_INSTR;
xinstr->share_id[0] = __cpu_to_le32(instr->share_id[0]);
xinstr->share_id[1] = __cpu_to_le32(instr->share_id[1]);
xinstr->share_id[2] = __cpu_to_le32(instr->share_id[2]);
xinstr->share_id[3] = __cpu_to_le32(instr->share_id[3]);
xinstr->format = __cpu_to_le32(instr->format);
xinstr->size = __cpu_to_le32(instr->size);
xinstr->start = __cpu_to_le32(instr->start);
xinstr->loop_start = __cpu_to_le32(instr->loop_start);
xinstr->loop_end = __cpu_to_le32(instr->loop_end);
xinstr->loop_repeat = __cpu_to_le16(instr->loop_repeat);
xinstr->effect1 = instr->effect1;
xinstr->effect1_depth = instr->effect1_depth;
xinstr->effect2 = instr->effect2;
xinstr->effect2_depth = instr->effect2_depth;
ptr = (char *)(xinstr + 1);
memcpy(ptr, instr->address.ptr, size);
/* write result */
*__data = put;
*__size = sizeof(*put) + sizeof(simple_xinstrument_t) + size;
return 0;
}
int snd_instr_simple_convert_from_stream(snd_instr_header_t *__data ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED,
snd_instr_simple_t **simple ATTRIBUTE_UNUSED)
{
/* TODO */
return -ENXIO;
}
|