2002-07-04 10:38:01 +00:00
|
|
|
/*
|
|
|
|
* RTP definitions
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard
|
2002-07-04 10:38:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-07-04 10:38:01 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-07-04 10:38:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-07-04 10:38:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-04 10:38:01 +00:00
|
|
|
*/
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_RTP_H
|
|
|
|
#define AVFORMAT_RTP_H
|
2002-07-04 10:38:01 +00:00
|
|
|
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavcodec/avcodec.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2007-03-05 12:14:29 +00:00
|
|
|
/** return < 0 if unknown payload type */
|
2002-07-04 10:38:01 +00:00
|
|
|
int rtp_get_payload_type(AVCodecContext *codec);
|
2003-10-29 14:25:27 +00:00
|
|
|
|
2005-05-26 07:47:51 +00:00
|
|
|
#define RTP_PT_PRIVATE 96
|
|
|
|
#define RTP_VERSION 2
|
2007-03-05 12:15:32 +00:00
|
|
|
#define RTP_MAX_SDES 256 /**< maximum text length for SDES */
|
2005-05-26 07:47:51 +00:00
|
|
|
|
|
|
|
/* RTCP paquets use 0.5 % of the bandwidth */
|
|
|
|
#define RTCP_TX_RATIO_NUM 5
|
|
|
|
#define RTCP_TX_RATIO_DEN 1000
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_RTP_H */
|