freeswitch/libs/unimrcp/libs/mpf/include/mpf_bridge.h

49 lines
1.4 KiB
C

/*
* Copyright 2008 Arsen Chaloyan
*
* 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.
*/
#ifndef __MPF_BRIDGE_H__
#define __MPF_BRIDGE_H__
/**
* @file mpf_bridge.h
* @brief MPF Stream Bridge
*/
#include "mpf_object.h"
APT_BEGIN_EXTERN_C
/**
* Create bridge of audio streams.
* @param source the source audio stream
* @param sink the sink audio stream
* @param pool the pool to allocate memory from
*/
MPF_DECLARE(mpf_object_t*) mpf_bridge_create(mpf_audio_stream_t *source, mpf_audio_stream_t *sink, apr_pool_t *pool);
/**
* Create bridge of audio streams with the same codec descriptor.
* @param source the source audio stream
* @param sink the sink audio stream
* @param pool the pool to allocate memory from
*/
MPF_DECLARE(mpf_object_t*) mpf_null_bridge_create(mpf_audio_stream_t *source, mpf_audio_stream_t *sink, apr_pool_t *pool);
APT_END_EXTERN_C
#endif /*__MPF_BRIDGE_H__*/