summaryrefslogtreecommitdiff
path: root/common/snd_codec.c
blob: 6dcadb7d13c2e447899ae255d0e33d256f1bfe84 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
   Copyright (C) 2013 Jeremy White

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library 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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/

/* snd_codec.c
     General purpose sound codec routines for use by Spice.
   These routines abstract the work of picking a codec and
   encoding and decoding the buffers.
     Note:  these routines have some peculiarities that come from
   wanting to provide full backwards compatibility with the original
   Spice celt 0.51 implementation.  It has some hard requirements
   (fixed sample size, fixed compressed buffer size).

   See below for documentation of the public routines.
*/

#include "config.h"
#include <stdio.h>
#include <string.h>
#include <spice/macros.h>
#include <spice/enums.h>


#include "snd_codec.h"
#include "mem.h"
#include "log.h"

typedef struct
{
    int mode;
    int frequency;
#if HAVE_CELT051
    CELTMode *celt_mode;
    CELTEncoder *celt_encoder;
    CELTDecoder *celt_decoder;
#endif
} SndCodecInternal;



/* celt 0.51 specific support routines */
#if HAVE_CELT051
static void snd_codec_destroy_celt051(SndCodecInternal *codec)
{
    if (codec->celt_decoder) {
        celt051_decoder_destroy(codec->celt_decoder);
        codec->celt_decoder = NULL;
    }

    if (codec->celt_encoder) {
        celt051_encoder_destroy(codec->celt_encoder);
        codec->celt_encoder = NULL;
    }

    if (codec->celt_mode) {
        celt051_mode_destroy(codec->celt_mode);
        codec->celt_mode = NULL;
    }
}

static int snd_codec_create_celt051(SndCodecInternal *codec, int purpose)
{
    int celt_error;

    codec->celt_mode = celt051_mode_create(codec->frequency,
                                           SND_CODEC_CELT_PLAYBACK_CHAN,
                                           SND_CODEC_CELT_FRAME_SIZE, &celt_error);
    if (! codec->celt_mode) {
        spice_printerr("create celt mode failed %d", celt_error);
        return SND_CODEC_UNAVAILABLE;
    }

    if (purpose & SND_CODEC_ENCODE) {
        codec->celt_encoder = celt051_encoder_create(codec->celt_mode);
        if (! codec->celt_encoder) {
            spice_printerr("create celt encoder failed");
            goto error;
        }
    }

    if (purpose & SND_CODEC_DECODE) {
        codec->celt_decoder = celt051_decoder_create(codec->celt_mode);
        if (! codec->celt_decoder) {
            spice_printerr("create celt decoder failed");
            goto error;
        }
    }

    codec->mode = SPICE_AUDIO_DATA_MODE_CELT_0_5_1;
    return SND_CODEC_OK;

error:
    snd_codec_destroy_celt051(codec);
    return SND_CODEC_UNAVAILABLE;
}

static int snd_codec_encode_celt051(SndCodecInternal *codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
{
    int n;
    if (in_size != SND_CODEC_CELT_FRAME_SIZE * SND_CODEC_CELT_PLAYBACK_CHAN * 2)
        return SND_CODEC_INVALID_ENCODE_SIZE;
    n = celt051_encode(codec->celt_encoder, (celt_int16_t *) in_ptr, NULL, out_ptr, *out_size);
    if (n < 0) {
        spice_printerr("celt051_encode failed %d\n", n);
        return SND_CODEC_ENCODE_FAILED;
    }
    *out_size = n;
    return SND_CODEC_OK;
}

static int snd_codec_decode_celt051(SndCodecInternal *codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
{
    int n;
    n = celt051_decode(codec->celt_decoder, in_ptr, in_size, (celt_int16_t *) out_ptr);
    if (n < 0) {
        spice_printerr("celt051_decode failed %d\n", n);
        return SND_CODEC_DECODE_FAILED;
    }
    *out_size = SND_CODEC_CELT_FRAME_SIZE * SND_CODEC_CELT_PLAYBACK_CHAN * 2 /* 16 fmt */;
    return SND_CODEC_OK;
}
#endif



/*----------------------------------------------------------------------------
**          PUBLIC INTERFACE
**--------------------------------------------------------------------------*/

/*
  snd_codec_is_capable
    Returns TRUE if the current spice implementation can
      use the given codec, FALSE otherwise.
   mode must be a SPICE_AUDIO_DATA_MODE_XXX enum from spice/enum.h
 */
int snd_codec_is_capable(int mode)
{
#if HAVE_CELT051
    if (mode == SPICE_AUDIO_DATA_MODE_CELT_0_5_1)
        return TRUE;
#else
    return FALSE;
#endif
}

/*
  snd_codec_create
    Create a codec control.  Required for most functions in this library.
    Parameters:
      1.  codec     Pointer to preallocated codec control
      2.  mode      SPICE_AUDIO_DATA_MODE_XXX enum from spice/enum.h
      3.  encode    TRUE if encoding is desired
      4.  decode    TRUE if decoding is desired
     Returns:
       SND_CODEC_OK  if all went well; a different code if not.

  snd_codec_destroy is the obvious partner of snd_codec_create.
 */
int snd_codec_create(SndCodec *codec, int mode, int frequency, int purpose)
{
    int rc = SND_CODEC_UNAVAILABLE;
    SndCodecInternal **c = (SndCodecInternal **) codec;

    *c = spice_new0(SndCodecInternal, 1);
    (*c)->frequency = frequency;

#if HAVE_CELT051
    if (mode == SPICE_AUDIO_DATA_MODE_CELT_0_5_1)
        rc = snd_codec_create_celt051(*c, purpose);
#endif

    return rc;
}

/*
  snd_codec_destroy
    The obvious companion to snd_codec_create
*/
void snd_codec_destroy(SndCodec *codec)
{
    SndCodecInternal **c = (SndCodecInternal **) codec;
    if (! c || ! *c)
        return;

#if HAVE_CELT051
    snd_codec_destroy_celt051(*c);
#endif

    free(*c);
    *c = NULL;
}

/*
  snd_codec_frame_size
    Returns the size, in frames, of the raw PCM frame buffer
      required by this codec.  To get bytes, you'll need
      to multiply by channels and sample width.
 */
int snd_codec_frame_size(SndCodec codec)
{
    SndCodecInternal *c = (SndCodecInternal *) codec;
#if HAVE_CELT051
    if (c && c->mode == SPICE_AUDIO_DATA_MODE_CELT_0_5_1)
        return SND_CODEC_CELT_FRAME_SIZE;
#endif
    return SND_CODEC_MAX_FRAME_SIZE;
}

/*
  snd_codec_encode
     Encode a block of data to a compressed buffer.

  Parameters:
    1.  codec       Pointer to codec control previously allocated + created
    2.  in_data     Pointer to uncompressed PCM data
    3.  in_size     Input size  (for celt, this must be a
                    particular size, governed by the frame size)
    4.  out_ptr     Pointer to area to write encoded data
    5.  out_size    On input, the maximum size of the output buffer; on
                    successful return, it will hold the number of bytes
                    returned.  For celt, this must be set to a particular
                    size to ensure compatibility.

     Returns:
       SND_CODEC_OK  if all went well
*/
int snd_codec_encode(SndCodec codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
{
    SndCodecInternal *c = (SndCodecInternal *) codec;
#if HAVE_CELT051
    if (c && c->mode == SPICE_AUDIO_DATA_MODE_CELT_0_5_1)
        return snd_codec_encode_celt051(c, in_ptr, in_size, out_ptr, out_size);
#endif

    return SND_CODEC_ENCODER_UNAVAILABLE;
}

/*
  snd_codec_decode
     Decode a block of data from a compressed buffer.

  Parameters:
    1.  codec       Pointer to codec control previously allocated + created
    2.  in_data     Pointer to compressed data
    3.  in_size     Input size
    4.  out_ptr     Pointer to area to write decoded data
    5.  out_size    On input, the maximum size of the output buffer; on
                    successful return, it will hold the number of bytes
                    returned.

     Returns:
       SND_CODEC_OK  if all went well
*/
int snd_codec_decode(SndCodec codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
{
    SndCodecInternal *c = (SndCodecInternal *) codec;
#if HAVE_CELT051
    if (c && c->mode == SPICE_AUDIO_DATA_MODE_CELT_0_5_1)
        return snd_codec_decode_celt051(c, in_ptr, in_size, out_ptr, out_size);
#endif

    return SND_CODEC_DECODER_UNAVAILABLE;
}