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
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
#include <winpr/stream.h>
|
2011-08-17 07:54:42 +04:00
|
|
|
|
2018-02-20 14:15:30 +03:00
|
|
|
#include <freerdp/api.h>
|
|
|
|
#include <freerdp/codec/audio.h>
|
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
|
|
|
|
2013-01-29 10:45:49 +04:00
|
|
|
#ifdef __cplusplus
|
2019-11-06 17:24:51 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-01-29 10:45:49 +04:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
FREERDP_API FREERDP_DSP_CONTEXT* freerdp_dsp_context_new(BOOL encoder);
|
|
|
|
FREERDP_API BOOL freerdp_dsp_supports_format(const AUDIO_FORMAT* format, BOOL encode);
|
|
|
|
FREERDP_API BOOL freerdp_dsp_encode(FREERDP_DSP_CONTEXT* context, const AUDIO_FORMAT* srcFormat,
|
|
|
|
const BYTE* data, size_t length, wStream* out);
|
|
|
|
FREERDP_API BOOL freerdp_dsp_decode(FREERDP_DSP_CONTEXT* context, const AUDIO_FORMAT* srcFormat,
|
|
|
|
const BYTE* data, size_t length, wStream* out);
|
|
|
|
FREERDP_API void freerdp_dsp_context_free(FREERDP_DSP_CONTEXT* context);
|
|
|
|
FREERDP_API BOOL freerdp_dsp_context_reset(FREERDP_DSP_CONTEXT* context,
|
2021-08-23 15:49:28 +03:00
|
|
|
const AUDIO_FORMAT* targetFormat,
|
|
|
|
UINT32 FramesPerPacket);
|
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 */
|