blob: df4ee633bf1c1fce3a84a015a12e2082ccc3ccb7 [file] [log] [blame]
/* $Id$
*
*/
#ifndef __PJMEDIA_MEDIAMGR_H__
#define __PJMEDIA_MEDIAMGR_H__
/**
* @file mediamgr.h
* @brief Media Manager.
*/
/**
* @defgroup PJMED_MGR Media Manager
* @ingroup PJMEDIA
* @{
*
* The media manager acts as placeholder for endpoint capabilities. Each
* media manager will have a codec manager to manage list of codecs installed
* in the endpoint and a sound device factory.
*
* A reference to media manager instance is required when application wants
* to create a media session (#pj_media_session_create or
* #pj_media_session_create_from_sdp).
*/
#include <pjmedia/sound.h>
#include <pjmedia/codec.h>
PJ_BEGIN_DECL
/** Opague declaration of media manager. */
typedef struct pj_med_mgr_t pj_med_mgr_t;
/**
* Create an instance of media manager.
*
* @param pf Pool factory.
* @param conn_addr Connection address to be used by this media manager.
*
* @return A new instance of media manager, or NULL if failed.
*/
PJ_DECL(pj_med_mgr_t*) pj_med_mgr_create (pj_pool_factory *pf);
/**
* Destroy media manager instance.
*
* @param mgr Media manager instance.
*
* @return zero on success.
*/
PJ_DECL(pj_status_t) pj_med_mgr_destroy (pj_med_mgr_t *mgr);
/**
* Get pool factory of the media manager as specified when the media
* manager was created.
*
* @param mgr The media manager instance.
*
* @return Pool factory instance of the media manager.
*/
PJ_DECL(pj_pool_factory*) pj_med_mgr_get_pool_factory (pj_med_mgr_t *mgr);
/**
* Get the codec manager instance.
*
* @param mgr The media manager instance.
*
* @return The instance of codec manager.
*/
PJ_DECL(pj_codec_mgr*) pj_med_mgr_get_codec_mgr (pj_med_mgr_t *mgr);
PJ_END_DECL
/**
* @}
*/
#endif /* __PJMEDIA_MEDIAMGR_H__ */