123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * Copyright (C) 2010-2011 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_consumer_audio.h
- * @brief Base class for all Audio consumers.
- *
- * @author Mamadou Diop <diopmamadou(at)doubango.org>
- */
- #ifndef TINYDAV_CONSUMER_AUDIO_H
- #define TINYDAV_CONSUMER_AUDIO_H
- #include "tinydav_config.h"
- #include "tinymedia/tmedia_consumer.h"
- #include "tsk_safeobj.h"
- TDAV_BEGIN_DECLS
- #define TDAV_CONSUMER_AUDIO(self) ((tdav_consumer_audio_t*)(self))
- typedef struct tdav_consumer_audio_s {
- TMEDIA_DECLARE_CONSUMER;
- struct tmedia_denoise_s* denoise;
- struct tmedia_resampler_s* resampler;
- struct tmedia_jitterbuffer_s* jitterbuffer;
- TSK_DECLARE_SAFEOBJ;
- }
- tdav_consumer_audio_t;
- TINYDAV_API int tdav_consumer_audio_init(tdav_consumer_audio_t* self);
- TINYDAV_API int tdav_consumer_audio_cmp(const tsk_object_t* consumer1, const tsk_object_t* consumer2);
- #define tdav_consumer_audio_prepare(self, codec) tmedia_consumer_prepare(TDAV_CONSUMER_AUDIO(self), codec)
- #define tdav_consumer_audio_start(self) tmedia_consumer_start(TDAV_CONSUMER_AUDIO(self))
- #define tdav_consumer_audio_consume(self, buffer, size) tmedia_consumer_consume(TDAV_CONSUMER_AUDIO(self), buffer, size)
- #define tdav_consumer_audio_pause(self) tmedia_consumer_pause(TDAV_CONSUMER_AUDIO(self))
- #define tdav_consumer_audio_stop(self) tmedia_consumer_stop(TDAV_CONSUMER_AUDIO(self))
- TINYDAV_API int tdav_consumer_audio_set(tdav_consumer_audio_t* self, const tmedia_param_t* param);
- TINYDAV_API int tdav_consumer_audio_put(tdav_consumer_audio_t* self, const void* data, tsk_size_t data_size, const tsk_object_t* proto_hdr);
- TINYDAV_API tsk_size_t tdav_consumer_audio_get(tdav_consumer_audio_t* self, void* out_data, tsk_size_t out_size);
- TINYDAV_API int tdav_consumer_audio_tick(tdav_consumer_audio_t* self);
- void tdav_consumer_audio_set_denoise(tdav_consumer_audio_t* self, struct tmedia_denoise_s* denoise);
- void tdav_consumer_audio_set_jitterbuffer(tdav_consumer_audio_t* self, struct tmedia_jitterbuffer_s* jitterbuffer);
- TINYDAV_API int tdav_consumer_audio_reset(tdav_consumer_audio_t* self);
- TINYDAV_API int tdav_consumer_audio_deinit(tdav_consumer_audio_t* self);
- #define TDAV_DECLARE_CONSUMER_AUDIO tdav_consumer_audio_t __consumer_audio__
- TDAV_END_DECLS
- #endif /* TINYDAV_CONSUMER_AUDIO_H */
|