2 * RTP muxer definitions
3 * Copyright (c) 2002 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef AVFORMAT_RTPENC_H
22 #define AVFORMAT_RTPENC_H
27 struct RTPMuxContext
{
34 uint32_t base_timestamp
;
35 uint32_t cur_timestamp
;
39 /* rtcp sender statistics receive */
40 int64_t last_rtcp_ntp_time
; // TODO: move into statistics
41 int64_t first_rtcp_ntp_time
; // TODO: move into statistics
43 /* rtcp sender statistics */
44 unsigned int packet_count
; // TODO: move into statistics (outgoing)
45 unsigned int octet_count
; // TODO: move into statistics (outgoing)
46 unsigned int last_octet_count
; // TODO: move into statistics (outgoing)
48 /* buffer for output */
52 int max_frames_per_packet
;
55 typedef struct RTPMuxContext RTPMuxContext
;
57 void ff_rtp_send_data(AVFormatContext
*s1
, const uint8_t *buf1
, int len
, int m
);
59 void ff_rtp_send_h264(AVFormatContext
*s1
, const uint8_t *buf1
, int size
);
60 void ff_rtp_send_h263(AVFormatContext
*s1
, const uint8_t *buf1
, int size
);
61 void ff_rtp_send_aac(AVFormatContext
*s1
, const uint8_t *buff
, int size
);
62 void ff_rtp_send_amr(AVFormatContext
*s1
, const uint8_t *buff
, int size
);
63 void ff_rtp_send_mpegvideo(AVFormatContext
*s1
, const uint8_t *buf1
, int size
);
65 #endif /* AVFORMAT_RTPENC_H */