FreeRDP/include/freerdp/codec/dsp.h

87 lines
2.2 KiB
C
Raw Normal View History

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
#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
{
INT16 last_sample[2];
INT16 last_step[2];
2012-05-24 17:26:17 +04:00
} ima;
struct
{
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
typedef struct _FREERDP_DSP_CONTEXT FREERDP_DSP_CONTEXT;
2013-02-20 02:47:55 +04:00
struct _FREERDP_DSP_CONTEXT
{
BYTE* resampled_buffer;
2012-10-09 11:26:39 +04:00
UINT32 resampled_size;
UINT32 resampled_frames;
UINT32 resampled_maxlength;
BYTE* adpcm_buffer;
2012-10-09 11:26:39 +04:00
UINT32 adpcm_size;
UINT32 adpcm_maxlength;
ADPCM adpcm;
2014-04-29 12:32:16 +04:00
BOOL (*resample)(FREERDP_DSP_CONTEXT* context,
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);
2014-04-29 12:32:16 +04:00
BOOL (*decode_ima_adpcm)(FREERDP_DSP_CONTEXT* context,
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,
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,
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,
const BYTE* src, int size, int channels, int block_size);
};
#ifdef __cplusplus
extern "C" {
#endif
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
#ifdef __cplusplus
}
#endif
2013-02-20 02:47:55 +04:00
#endif /* FREERDP_CODEC_DSP_H */
2011-08-14 17:46:02 +04:00