2011-08-14 17:46:02 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-14 17:46:02 +04:00
|
|
|
* Digital Sound Processing
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-02-20 02:47:55 +04:00
|
|
|
#ifndef FREERDP_CODEC_DSP_H
|
|
|
|
#define FREERDP_CODEC_DSP_H
|
2011-08-14 17:46:02 +04:00
|
|
|
|
2011-08-17 07:54:42 +04:00
|
|
|
#include <freerdp/api.h>
|
|
|
|
|
2012-05-24 17:26:17 +04:00
|
|
|
union _ADPCM
|
2011-08-14 17:46:02 +04:00
|
|
|
{
|
2012-05-24 17:26:17 +04:00
|
|
|
struct
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
INT16 last_sample[2];
|
|
|
|
INT16 last_step[2];
|
2012-05-24 17:26:17 +04:00
|
|
|
} ima;
|
|
|
|
struct
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE predictor[2];
|
2012-10-09 11:26:39 +04:00
|
|
|
INT32 delta[2];
|
|
|
|
INT32 sample1[2];
|
|
|
|
INT32 sample2[2];
|
2012-05-24 17:26:17 +04:00
|
|
|
} ms;
|
2011-08-14 17:46:02 +04:00
|
|
|
};
|
2012-05-24 17:26:17 +04:00
|
|
|
typedef union _ADPCM ADPCM;
|
2011-08-14 17:46:02 +04:00
|
|
|
|
2012-05-09 12:15:23 +04:00
|
|
|
typedef struct _FREERDP_DSP_CONTEXT FREERDP_DSP_CONTEXT;
|
2013-02-20 02:47:55 +04:00
|
|
|
|
2012-05-09 12:15:23 +04:00
|
|
|
struct _FREERDP_DSP_CONTEXT
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* resampled_buffer;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 resampled_size;
|
|
|
|
UINT32 resampled_frames;
|
|
|
|
UINT32 resampled_maxlength;
|
2012-05-09 12:15:23 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* adpcm_buffer;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 adpcm_size;
|
|
|
|
UINT32 adpcm_maxlength;
|
2012-05-09 12:15:23 +04:00
|
|
|
|
|
|
|
ADPCM adpcm;
|
|
|
|
|
2014-04-29 12:32:16 +04:00
|
|
|
BOOL (*resample)(FREERDP_DSP_CONTEXT* context,
|
2012-10-09 11:01:37 +04:00
|
|
|
const BYTE* src, int bytes_per_sample,
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 schan, UINT32 srate, int sframes,
|
|
|
|
UINT32 rchan, UINT32 rrate);
|
2012-05-09 12:15:23 +04:00
|
|
|
|
2014-04-29 12:32:16 +04:00
|
|
|
BOOL (*decode_ima_adpcm)(FREERDP_DSP_CONTEXT* context,
|
2012-10-09 11:01:37 +04:00
|
|
|
const BYTE* src, int size, int channels, int block_size);
|
2014-04-29 12:32:16 +04:00
|
|
|
BOOL (*encode_ima_adpcm)(FREERDP_DSP_CONTEXT* context,
|
2012-10-09 11:01:37 +04:00
|
|
|
const BYTE* src, int size, int channels, int block_size);
|
2012-05-24 17:26:17 +04:00
|
|
|
|
2014-04-29 12:32:16 +04:00
|
|
|
BOOL (*decode_ms_adpcm)(FREERDP_DSP_CONTEXT* context,
|
2012-10-09 11:01:37 +04:00
|
|
|
const BYTE* src, int size, int channels, int block_size);
|
2014-04-29 12:32:16 +04:00
|
|
|
BOOL (*encode_ms_adpcm)(FREERDP_DSP_CONTEXT* context,
|
2012-10-09 11:01:37 +04:00
|
|
|
const BYTE* src, int size, int channels, int block_size);
|
2012-05-09 12:15:23 +04:00
|
|
|
};
|
|
|
|
|
2013-01-29 10:45:49 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-05-09 12:15:23 +04:00
|
|
|
FREERDP_API FREERDP_DSP_CONTEXT* freerdp_dsp_context_new(void);
|
|
|
|
FREERDP_API void freerdp_dsp_context_free(FREERDP_DSP_CONTEXT* context);
|
|
|
|
#define freerdp_dsp_context_reset_adpcm(_c) memset(&_c->adpcm, 0, sizeof(ADPCM))
|
2011-08-14 17:46:02 +04:00
|
|
|
|
2013-01-29 10:45:49 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-20 02:47:55 +04:00
|
|
|
#endif /* FREERDP_CODEC_DSP_H */
|
2011-08-14 17:46:02 +04:00
|
|
|
|