/* mediastreamer2 library - modular sound and video processing and streaming Copyright (C) 2006 Simon MORLAT (simon.morlat@linphone.org) This program 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 2 of the License, or (at your option) any later version. This program 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 this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef rfc3984_h #define rfc3984_h #include #include /* This file declares an API useful to pack/unpack H264 nals as described in RFC3984 It is part of the public API to allow external H264 plugins use this api. */ #ifdef __cplusplus extern "C"{ #endif typedef struct Rfc3984Context{ MSQueue q; mblk_t *m; int maxsz; uint32_t last_ts; uint8_t mode; bool_t stap_a_allowed; uint8_t reserved; } Rfc3984Context; MS2_PUBLIC Rfc3984Context *rfc3984_new(void); MS2_PUBLIC void rfc3984_destroy(Rfc3984Context *ctx); void rfc3984_init(Rfc3984Context *ctx); MS2_PUBLIC void rfc3984_set_mode(Rfc3984Context *ctx, int mode); /* some stupid phones don't decode STAP-A packets ...*/ MS2_PUBLIC void rfc3984_enable_stap_a(Rfc3984Context *ctx, bool_t yesno); /*process NALUs and pack them into rtp payloads */ MS2_PUBLIC void rfc3984_pack(Rfc3984Context *ctx, MSQueue *naluq, MSQueue *rtpq, uint32_t ts); /*process incoming rtp data and output NALUs, whenever possible*/ MS2_PUBLIC void rfc3984_unpack(Rfc3984Context *ctx, mblk_t *im, MSQueue *naluq); void rfc3984_uninit(Rfc3984Context *ctx); #ifdef __cplusplus } #endif #endif