annotate ffmpeg/libavformat/rtpenc.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents f445c3017523
children
rev   line source
yading@11 1 /*
yading@11 2 * RTP muxer definitions
yading@11 3 * Copyright (c) 2002 Fabrice Bellard
yading@11 4 *
yading@11 5 * This file is part of FFmpeg.
yading@11 6 *
yading@11 7 * FFmpeg is free software; you can redistribute it and/or
yading@11 8 * modify it under the terms of the GNU Lesser General Public
yading@11 9 * License as published by the Free Software Foundation; either
yading@11 10 * version 2.1 of the License, or (at your option) any later version.
yading@11 11 *
yading@11 12 * FFmpeg is distributed in the hope that it will be useful,
yading@11 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@11 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@11 15 * Lesser General Public License for more details.
yading@11 16 *
yading@11 17 * You should have received a copy of the GNU Lesser General Public
yading@11 18 * License along with FFmpeg; if not, write to the Free Software
yading@11 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@11 20 */
yading@11 21 #ifndef AVFORMAT_RTPENC_H
yading@11 22 #define AVFORMAT_RTPENC_H
yading@11 23
yading@11 24 #include "avformat.h"
yading@11 25 #include "rtp.h"
yading@11 26
yading@11 27 struct RTPMuxContext {
yading@11 28 const AVClass *av_class;
yading@11 29 AVFormatContext *ic;
yading@11 30 AVStream *st;
yading@11 31 int payload_type;
yading@11 32 uint32_t ssrc;
yading@11 33 const char *cname;
yading@11 34 int seq;
yading@11 35 uint32_t timestamp;
yading@11 36 uint32_t base_timestamp;
yading@11 37 uint32_t cur_timestamp;
yading@11 38 int max_payload_size;
yading@11 39 int num_frames;
yading@11 40
yading@11 41 /* rtcp sender statistics receive */
yading@11 42 int64_t last_rtcp_ntp_time;
yading@11 43 int64_t first_rtcp_ntp_time;
yading@11 44
yading@11 45 /* rtcp sender statistics */
yading@11 46 unsigned int packet_count;
yading@11 47 unsigned int octet_count;
yading@11 48 unsigned int last_octet_count;
yading@11 49 int first_packet;
yading@11 50 /* buffer for output */
yading@11 51 uint8_t *buf;
yading@11 52 uint8_t *buf_ptr;
yading@11 53
yading@11 54 int max_frames_per_packet;
yading@11 55
yading@11 56 /**
yading@11 57 * Number of bytes used for H.264 NAL length, if the MP4 syntax is used
yading@11 58 * (1, 2 or 4)
yading@11 59 */
yading@11 60 int nal_length_size;
yading@11 61
yading@11 62 int flags;
yading@11 63
yading@11 64 unsigned int frame_count;
yading@11 65 };
yading@11 66
yading@11 67 typedef struct RTPMuxContext RTPMuxContext;
yading@11 68
yading@11 69 #define FF_RTP_FLAG_MP4A_LATM 1
yading@11 70 #define FF_RTP_FLAG_RFC2190 2
yading@11 71 #define FF_RTP_FLAG_SKIP_RTCP 4
yading@11 72 #define FF_RTP_FLAG_H264_MODE0 8
yading@11 73
yading@11 74 #define FF_RTP_FLAG_OPTS(ctx, fieldname) \
yading@11 75 { "rtpflags", "RTP muxer flags", offsetof(ctx, fieldname), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "rtpflags" }, \
yading@11 76 { "latm", "Use MP4A-LATM packetization instead of MPEG4-GENERIC for AAC", 0, AV_OPT_TYPE_CONST, {.i64 = FF_RTP_FLAG_MP4A_LATM}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "rtpflags" }, \
yading@11 77 { "rfc2190", "Use RFC 2190 packetization instead of RFC 4629 for H.263", 0, AV_OPT_TYPE_CONST, {.i64 = FF_RTP_FLAG_RFC2190}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "rtpflags" }, \
yading@11 78 { "skip_rtcp", "Don't send RTCP sender reports", 0, AV_OPT_TYPE_CONST, {.i64 = FF_RTP_FLAG_SKIP_RTCP}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "rtpflags" }, \
yading@11 79 { "h264_mode0", "Use mode 0 for H264 in RTP", 0, AV_OPT_TYPE_CONST, {.i64 = FF_RTP_FLAG_H264_MODE0}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "rtpflags" } \
yading@11 80
yading@11 81 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m);
yading@11 82
yading@11 83 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size);
yading@11 84 void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size);
yading@11 85 void ff_rtp_send_h263_rfc2190(AVFormatContext *s1, const uint8_t *buf1, int size,
yading@11 86 const uint8_t *mb_info, int mb_info_size);
yading@11 87 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 88 void ff_rtp_send_latm(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 89 void ff_rtp_send_amr(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 90 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);
yading@11 91 void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 92 void ff_rtp_send_vp8(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 93 void ff_rtp_send_jpeg(AVFormatContext *s1, const uint8_t *buff, int size);
yading@11 94
yading@11 95 const uint8_t *ff_h263_find_resync_marker_reverse(const uint8_t *av_restrict start,
yading@11 96 const uint8_t *av_restrict end);
yading@11 97
yading@11 98 #endif /* AVFORMAT_RTPENC_H */