summaryrefslogtreecommitdiffstats
path: root/tinyDAV/src/tdav.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinyDAV/src/tdav.c')
-rw-r--r--tinyDAV/src/tdav.c419
1 files changed, 419 insertions, 0 deletions
diff --git a/tinyDAV/src/tdav.c b/tinyDAV/src/tdav.c
new file mode 100644
index 0000000..3d81580
--- /dev/null
+++ b/tinyDAV/src/tdav.c
@@ -0,0 +1,419 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+/**@file tdav.h
+ * @brief tinyDAV.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinydav/tdav.h"
+
+// Media Contents, ...
+#include "tinymedia.h"
+
+// Sessions
+#include "tinymedia/tmedia_session_ghost.h"
+#include "tinydav/audio/tdav_session_audio.h"
+#include "tinydav/video/tdav_session_video.h"
+#include "tinydav/msrp/tdav_session_msrp.h"
+
+// Codecs
+#include "tinydav/codecs/dtmf/tdav_codec_dtmf.h"
+#include "tinydav/codecs/msrp/tdav_codec_msrp.h"
+#include "tinydav/codecs/amr/tdav_codec_amr.h"
+#include "tinydav/codecs/bv/tdav_codec_bv16.h"
+#include "tinydav/codecs/g711/tdav_codec_g711.h"
+#include "tinydav/codecs/gsm/tdav_codec_gsm.h"
+#include "tinydav/codecs/ilbc/tdav_codec_ilbc.h"
+#include "tinydav/codecs/g729/tdav_codec_g729.h"
+#include "tinydav/codecs/speex/tdav_codec_speex.h"
+#include "tinydav/codecs/h261/tdav_codec_h261.h"
+#include "tinydav/codecs/h263/tdav_codec_h263.h"
+#include "tinydav/codecs/h264/tdav_codec_h264.h"
+#include "tinydav/codecs/theora/tdav_codec_theora.h"
+#include "tinydav/codecs/mp4ves/tdav_codec_mp4ves.h"
+
+// Consumers
+#include "tinydav/audio/waveapi/tdav_consumer_waveapi.h"
+#include "tinydav/audio/directsound/tdav_consumer_dsound.h"
+#include "tinydav/audio/coreaudio/tdav_consumer_coreaudio.h"
+#if HAVE_TINYDSHOW // DirectShow
+# include "tinydshow/plugin/DSConsumer.h"
+#endif
+
+// Producers
+#include "tinydav/audio/waveapi/tdav_producer_waveapi.h"
+#include "tinydav/audio/directsound/tdav_producer_dsound.h"
+#include "tinydav/audio/coreaudio/tdav_producer_coreaudio.h"
+#if HAVE_TINYDSHOW // DirectShow
+# include "tinydshow/plugin/DSProducer.h"
+#endif
+
+// Audio Denoise (AGC, Noise Suppression, VAD and AEC)
+#if HAVE_SPEEX_DSP
+#include "tinydav/audio/tdav_speex_denoise.h"
+#endif
+
+#if HAVE_FFMPEG
+# include <libavcodec/avcodec.h>
+#endif
+
+int tdav_init()
+{
+ /* === Initialize ffmpeg === */
+#if HAVE_FFMPEG
+ avcodec_init();
+#endif
+
+ /* === Register media contents === */
+ tmedia_content_plugin_register("text/html", tmedia_content_dummy_plugin_def_t);
+ tmedia_content_plugin_register("text/plain", tmedia_content_dummy_plugin_def_t);
+ tmedia_content_plugin_register("application/octet-stream", tmedia_content_dummy_plugin_def_t);
+ tmedia_content_plugin_register("message/CPIM", tmedia_content_cpim_plugin_def_t);
+ /*tmedia_content_plugin_register("message/sipfrag", tmedia_content_sipfrag_plugin_def_t);
+ tmedia_content_plugin_register("multipart/digest", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/mixed", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/related", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/alternative", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/encrypted", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/parallel", tmedia_content_multipart_plugin_def_t);
+ tmedia_content_plugin_register("multipart/signed", tmedia_content_multipart_plugin_def_t); */
+
+ /* === Register sessions === */
+ tmedia_session_plugin_register(tmedia_session_ghost_plugin_def_t);
+ tmedia_session_plugin_register(tdav_session_audio_plugin_def_t);
+ tmedia_session_plugin_register(tdav_session_video_plugin_def_t);
+ tmedia_session_plugin_register(tdav_session_msrp_plugin_def_t);
+
+ /* === Register codecs === */
+#if HAVE_FFMPEG
+ avcodec_register_all();
+#endif
+
+ tmedia_codec_plugin_register(tdav_codec_msrp_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_g711a_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_g711u_plugin_def_t);
+#if HAVE_OPENCORE_AMR
+ tmedia_codec_plugin_register(tdav_codec_amrnb_oa_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_amrnb_be_plugin_def_t);
+#endif
+#if HAVE_BV16
+ tmedia_codec_plugin_register(tdav_codec_bv16_plugin_def_t);
+#endif
+#if HAVE_LIBGSM
+ tmedia_codec_plugin_register(tdav_codec_gsm_plugin_def_t);
+#endif
+#if HAVE_ILBC
+ tmedia_codec_plugin_register(tdav_codec_ilbc_plugin_def_t);
+#endif
+#if HAVE_LIB_SPEEX
+ tmedia_codec_plugin_register(tdav_codec_speex_nb_plugin_def_t);
+#endif
+#if HAVE_G729
+ tmedia_codec_plugin_register(tdav_codec_g729ab_plugin_def_t);
+#endif
+ // last: dtmf
+ tmedia_codec_plugin_register(tdav_codec_dtmf_plugin_def_t);
+
+#if HAVE_FFMPEG
+ tmedia_codec_plugin_register(tdav_codec_mp4ves_plugin_def_t);
+# if !defined(HAVE_H264) || HAVE_H264
+ tmedia_codec_plugin_register(tdav_codec_h264_bp10_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_h264_bp20_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_h264_bp30_plugin_def_t);
+#endif
+ tmedia_codec_plugin_register(tdav_codec_h263p_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_h263pp_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_theora_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_h263_plugin_def_t);
+ tmedia_codec_plugin_register(tdav_codec_h261_plugin_def_t);
+#endif
+
+
+ /* === Register consumers === */
+#if HAVE_DSOUND_H
+ tmedia_consumer_plugin_register(tdav_consumer_dsound_plugin_def_t);
+#elif HAVE_WAVE_API
+ tmedia_consumer_plugin_register(tdav_consumer_waveapi_plugin_def_t);
+#endif
+#if HAVE_TINYDSHOW // DirectShow
+ tmedia_consumer_plugin_register(tdshow_consumer_plugin_def_t);
+#endif
+
+#if HAVE_COREAUDIO
+ tmedia_consumer_plugin_register(tdav_consumer_coreaudio_plugin_def_t);
+#endif
+
+#if HAVE_OSS_H
+ tmedia_consumer_plugin_register(tmedia_consumer_oss_plugin_def_t);
+#endif
+
+ /* === Register producers === */
+#if HAVE_DSOUND_H // DirectSound
+ tmedia_producer_plugin_register(tdav_producer_dsound_plugin_def_t);
+#elif HAVE_WAVE_API // WaveAPI
+ tmedia_producer_plugin_register(tdav_producer_waveapi_plugin_def_t);
+#endif
+#if HAVE_TINYDSHOW // DirectShow
+ tmedia_producer_plugin_register(tdshow_producer_plugin_def_t);
+#endif
+
+#if HAVE_COREAUDIO
+ tmedia_producer_plugin_register(tdav_producer_coreaudio_plugin_def_t);
+#endif
+
+ /* === Register Audio Denoise (AGC, VAD, Noise Suppression and AEC) === */
+#if HAVE_SPEEX_DSP
+ tmedia_denoise_plugin_register(tdav_speex_denoise_plugin_def_t);
+#endif
+
+ return 0;
+}
+
+typedef struct tdav_codec_decl_s{
+ tdav_codec_id_t id;
+ const tmedia_codec_plugin_def_t** plugin;
+} tdav_codec_decl_t;
+
+void tdav_set_codecs(tdav_codec_id_t codecs)
+{
+ int i;
+ static const tdav_codec_decl_t __codecs[] = {
+#if HAVE_OPENCORE_AMR
+ { tdav_codec_id_amr_nb_oa, &tdav_codec_amrnb_oa_plugin_def_t },
+ { tdav_codec_id_amr_nb_be, &tdav_codec_amrnb_be_plugin_def_t },
+#endif
+#if HAVE_BV16
+ { tdav_codec_id_bv16, &tdav_codec_bv16_plugin_def_t },
+#endif
+#if HAVE_LIBGSM
+ { tdav_codec_id_gsm, &tdav_codec_gsm_plugin_def_t },
+#endif
+ { tdav_codec_id_pcma, &tdav_codec_g711a_plugin_def_t },
+ { tdav_codec_id_pcmu, &tdav_codec_g711u_plugin_def_t },
+#if HAVE_ILBC
+ { tdav_codec_id_ilbc, &tdav_codec_ilbc_plugin_def_t },
+#endif
+#if HAVE_LIB_SPEEX
+ { tdav_codec_id_speex_nb, &tdav_codec_speex_nb_plugin_def_t },
+#endif
+#if HAVE_G729
+ { tdav_codec_id_g729ab, &tdav_codec_g729ab_plugin_def_t },
+#endif
+
+#if HAVE_FFMPEG
+
+ { tdav_codec_id_mp4ves_es, &tdav_codec_mp4ves_plugin_def_t },
+# if !defined(HAVE_H264) || HAVE_H264
+ { tdav_codec_id_h264_bp10, &tdav_codec_h264_bp10_plugin_def_t },
+ { tdav_codec_id_h264_bp20, &tdav_codec_h264_bp20_plugin_def_t },
+ { tdav_codec_id_h264_bp30, &tdav_codec_h264_bp30_plugin_def_t },
+#endif
+ { tdav_codec_id_h263p, &tdav_codec_h263p_plugin_def_t },
+ { tdav_codec_id_h263pp, &tdav_codec_h263pp_plugin_def_t },
+ { tdav_codec_id_theora, &tdav_codec_theora_plugin_def_t },
+ { tdav_codec_id_h263, &tdav_codec_h263_plugin_def_t },
+ { tdav_codec_id_h261, &tdav_codec_h261_plugin_def_t },
+#endif
+ };
+
+ for(i=0; i<sizeof(__codecs)/sizeof(tdav_codec_decl_t); i++){
+ if((codecs & __codecs[i].id)){
+ tmedia_codec_plugin_register(*__codecs[i].plugin);
+ }
+ else{
+ tmedia_codec_plugin_unregister(*__codecs[i].plugin);
+ }
+ }
+}
+
+tsk_bool_t tdav_codec_is_supported(tdav_codec_id_t codec)
+{
+ switch(codec){
+
+ case tdav_codec_id_amr_nb_oa:
+ case tdav_codec_id_amr_nb_be:
+#if HAVE_OPENCORE_AMR
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_gsm:
+#if HAVE_LIBGSM
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_pcma:
+ case tdav_codec_id_pcmu:
+ return tsk_true;
+
+ case tdav_codec_id_ilbc:
+#if HAVE_ILBC
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_speex_nb:
+#if HAVE_LIB_SPEEX
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_bv16:
+#if HAVE_BV16
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_g729ab:
+#if HAVE_G729
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_h261:
+ case tdav_codec_id_h263:
+ case tdav_codec_id_h263p:
+ case tdav_codec_id_h263pp:
+ case tdav_codec_id_theora:
+ case tdav_codec_id_mp4ves_es:
+#if HAVE_FFMPEG
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_h264_bp10:
+ case tdav_codec_id_h264_bp20:
+ case tdav_codec_id_h264_bp30:
+#if !defined(HAVE_H264) || HAVE_H264
+ return tsk_true;
+#else
+ return tsk_false;
+#endif
+
+ case tdav_codec_id_amr_wb_oa:
+ case tdav_codec_id_amr_wb_be:
+ case tdav_codec_id_speex_wb:
+ case tdav_codec_id_speex_uwb:
+ case tdav_codec_id_bv32:
+ case tdav_codec_id_evrc:
+ default:
+ return tsk_false;
+ }
+}
+
+int tdav_deinit()
+{
+ /* === UnRegister media contents === */
+ tmedia_content_plugin_unregister_all();
+
+ /* === UnRegister sessions === */
+ tmedia_session_plugin_unregister(tmedia_session_ghost_plugin_def_t);
+ tmedia_session_plugin_unregister(tdav_session_audio_plugin_def_t);
+ tmedia_session_plugin_unregister(tdav_session_video_plugin_def_t);
+ tmedia_session_plugin_unregister(tdav_session_msrp_plugin_def_t);
+
+ /* === UnRegister codecs === */
+ tmedia_codec_plugin_unregister(tdav_codec_dtmf_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_msrp_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_g711a_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_g711u_plugin_def_t);
+#if HAVE_OPENCORE_AMR
+ tmedia_codec_plugin_unregister(tdav_codec_amrnb_oa_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_amrnb_be_plugin_def_t);
+#endif
+#if HAVE_BV16
+ tmedia_codec_plugin_unregister(tdav_codec_bv16_plugin_def_t);
+#endif
+#if HAVE_LIBGSM
+ tmedia_codec_plugin_unregister(tdav_codec_gsm_plugin_def_t);
+#endif
+#if HAVE_ILBC
+ tmedia_codec_plugin_unregister(tdav_codec_ilbc_plugin_def_t);
+#endif
+#if HAVE_LIB_SPEEX
+ tmedia_codec_plugin_unregister(tdav_codec_speex_nb_plugin_def_t);
+#endif
+#if HAVE_G729
+ tmedia_codec_plugin_unregister(tdav_codec_g729ab_plugin_def_t);
+#endif
+#if HAVE_FFMPEG
+ tmedia_codec_plugin_unregister(tdav_codec_mp4ves_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h261_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h263_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h263p_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h263pp_plugin_def_t);
+# if !defined(HAVE_H264) || HAVE_H264
+ tmedia_codec_plugin_unregister(tdav_codec_h264_bp10_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h264_bp20_plugin_def_t);
+ tmedia_codec_plugin_unregister(tdav_codec_h264_bp30_plugin_def_t);
+#endif
+ tmedia_codec_plugin_unregister(tdav_codec_theora_plugin_def_t);
+
+#endif
+
+ /* === unRegister consumers === */
+#if HAVE_DSOUND_H
+ tmedia_consumer_plugin_unregister(tdav_consumer_dsound_plugin_def_t);
+#elif HAVE_WAVE_API
+ tmedia_consumer_plugin_unregister(tdav_consumer_waveapi_plugin_def_t);
+#endif
+#if HAVE_TINYDSHOW // DirectShow
+ tmedia_consumer_plugin_unregister(tdshow_consumer_plugin_def_t);
+#endif
+#if HAVE_COREAUDIO // CoreAudio
+ tmedia_consumer_plugin_unregister(tdav_consumer_coreaudio_plugin_def_t);
+#endif
+
+ /* === UnRegister producers === */
+#if HAVE_DSOUND_H // DirectSound
+ tmedia_producer_plugin_unregister(tdav_producer_dsound_plugin_def_t);
+#elif HAVE_WAVE_API // WaveAPI
+ tmedia_producer_plugin_unregister(tdav_producer_waveapi_plugin_def_t);
+#endif
+#if HAVE_TINYDSHOW // DirectShow
+ tmedia_producer_plugin_unregister(tdshow_producer_plugin_def_t);
+#endif
+#if HAVE_COREAUDIO // CoreAudio
+ tmedia_producer_plugin_unregister(tdav_producer_coreaudio_plugin_def_t);
+#endif
+
+#if HAVE_OSS_H
+ tmedia_consumer_plugin_unregister(tmedia_consumer_oss_plugin_def_t);
+#endif
+
+ /* === UnRegister Audio Denoise (AGC, VAD, Noise Suppression and AEC) === */
+#if HAVE_SPEEX_DSP
+ tmedia_denoise_plugin_unregister(tdav_speex_denoise_plugin_def_t);
+#endif
+
+ return 0;
+} \ No newline at end of file
OpenPOWER on IntegriCloud