libavformat/rtpenc.c
83a0d387
 /*
  * RTP output format
406792e7
  * Copyright (c) 2002 Fabrice Bellard
83a0d387
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg 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
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
245976da
 
83a0d387
 #include "avformat.h"
 #include "mpegts.h"
594a9aeb
 #include "internal.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
4c1202f7
 #include "libavutil/random_seed.h"
08321228
 #include "libavutil/opt.h"
83a0d387
 
302879cb
 #include "rtpenc.h"
83a0d387
 
 //#define DEBUG
 
08321228
 static const AVOption options[] = {
635fac9a
     FF_RTP_FLAG_OPTS(RTPMuxContext, flags),
145f741e
     { "payload_type", "Specify RTP payload type", offsetof(RTPMuxContext, payload_type), AV_OPT_TYPE_INT, {.dbl = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM },
08321228
     { NULL },
 };
 
 static const AVClass rtp_muxer_class = {
     .class_name = "RTP muxer",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
83a0d387
 #define RTCP_SR_SIZE 28
 
0766c3ee
 static int is_supported(enum CodecID id)
 {
     switch(id) {
9edfaf3c
     case CODEC_ID_H263:
     case CODEC_ID_H263P:
0766c3ee
     case CODEC_ID_H264:
     case CODEC_ID_MPEG1VIDEO:
     case CODEC_ID_MPEG2VIDEO:
     case CODEC_ID_MPEG4:
     case CODEC_ID_AAC:
     case CODEC_ID_MP2:
     case CODEC_ID_MP3:
     case CODEC_ID_PCM_ALAW:
     case CODEC_ID_PCM_MULAW:
     case CODEC_ID_PCM_S8:
     case CODEC_ID_PCM_S16BE:
     case CODEC_ID_PCM_S16LE:
     case CODEC_ID_PCM_U16BE:
     case CODEC_ID_PCM_U16LE:
     case CODEC_ID_PCM_U8:
     case CODEC_ID_MPEG2TS:
08e696c0
     case CODEC_ID_AMR_NB:
     case CODEC_ID_AMR_WB:
91af5601
     case CODEC_ID_VORBIS:
     case CODEC_ID_THEORA:
7b18d94c
     case CODEC_ID_VP8:
0048a2a8
     case CODEC_ID_ADPCM_G722:
04403ec2
     case CODEC_ID_ADPCM_G726:
0766c3ee
         return 1;
     default:
         return 0;
     }
 }
 
83a0d387
 static int rtp_write_header(AVFormatContext *s1)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
b3fbe02c
     int max_packet_size, n;
83a0d387
     AVStream *st;
 
     if (s1->nb_streams != 1)
         return -1;
     st = s1->streams[0];
0766c3ee
     if (!is_supported(st->codec->codec_id)) {
355ac7ff
         av_log(s1, AV_LOG_ERROR, "Unsupported codec %s\n", avcodec_get_name(st->codec->codec_id));
0766c3ee
 
         return -1;
     }
83a0d387
 
9152880e
     if (s->payload_type < 0)
         s->payload_type = ff_rtp_get_payload_type(s1, st->codec);
576fb48e
     s->base_timestamp = av_get_random_seed();
83a0d387
     s->timestamp = s->base_timestamp;
     s->cur_timestamp = 0;
576fb48e
     s->ssrc = av_get_random_seed();
83a0d387
     s->first_packet = 1;
594a9aeb
     s->first_rtcp_ntp_time = ff_ntp_time();
b1d55e5e
     if (s1->start_time_realtime)
         /* Round the NTP time to whole milliseconds. */
         s->first_rtcp_ntp_time = (s1->start_time_realtime / 1000) * 1000 +
                                  NTP_OFFSET_US;
83a0d387
 
e8bb2e24
     max_packet_size = s1->pb->max_packet_size;
83a0d387
     if (max_packet_size <= 12)
         return AVERROR(EIO);
d3536678
     s->buf = av_malloc(max_packet_size);
     if (s->buf == NULL) {
         return AVERROR(ENOMEM);
     }
83a0d387
     s->max_payload_size = max_packet_size - 12;
 
     s->max_frames_per_packet = 0;
     if (s1->max_delay) {
72415b2a
         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
83a0d387
             if (st->codec->frame_size == 0) {
                 av_log(s1, AV_LOG_ERROR, "Cannot respect max delay: frame size = 0\n");
             } else {
2d31d890
                 s->max_frames_per_packet = av_rescale_rnd(s1->max_delay, st->codec->sample_rate, AV_TIME_BASE * (int64_t)st->codec->frame_size, AV_ROUND_DOWN);
83a0d387
             }
         }
72415b2a
         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
83a0d387
             /* FIXME: We should round down here... */
a4696aa2
             s->max_frames_per_packet = av_rescale_q(s1->max_delay, (AVRational){1, 1000000}, st->codec->time_base);
83a0d387
         }
     }
 
c3f9ebf7
     avpriv_set_pts_info(st, 32, 1, 90000);
83a0d387
     switch(st->codec->codec_id) {
     case CODEC_ID_MP2:
     case CODEC_ID_MP3:
         s->buf_ptr = s->buf + 4;
         break;
     case CODEC_ID_MPEG1VIDEO:
     case CODEC_ID_MPEG2VIDEO:
         break;
     case CODEC_ID_MPEG2TS:
         n = s->max_payload_size / TS_PACKET_SIZE;
         if (n < 1)
             n = 1;
         s->max_payload_size = n * TS_PACKET_SIZE;
         s->buf_ptr = s->buf;
         break;
8b889b34
     case CODEC_ID_H264:
         /* check for H.264 MP4 syntax */
8a2679ad
         if (st->codec->extradata_size > 4 && st->codec->extradata[0] == 1) {
8b889b34
             s->nal_length_size = (st->codec->extradata[4] & 0x03) + 1;
         }
         break;
91af5601
     case CODEC_ID_VORBIS:
     case CODEC_ID_THEORA:
         if (!s->max_frames_per_packet) s->max_frames_per_packet = 15;
         s->max_frames_per_packet = av_clip(s->max_frames_per_packet, 1, 15);
         s->max_payload_size -= 6; // ident+frag+tdt/vdt+pkt_num+pkt_length
         s->num_frames = 0;
         goto defaultcase;
7b18d94c
     case CODEC_ID_VP8:
35b01694
         av_log(s1, AV_LOG_ERROR, "RTP VP8 payload implementation is "
                                  "incompatible with the latest spec drafts.\n");
7b18d94c
         break;
0048a2a8
     case CODEC_ID_ADPCM_G722:
         /* Due to a historical error, the clock rate for G722 in RTP is
          * 8000, even if the sample rate is 16000. See RFC 3551. */
c3f9ebf7
         avpriv_set_pts_info(st, 32, 1, 8000);
0048a2a8
         break;
08e696c0
     case CODEC_ID_AMR_NB:
     case CODEC_ID_AMR_WB:
         if (!s->max_frames_per_packet)
             s->max_frames_per_packet = 12;
         if (st->codec->codec_id == CODEC_ID_AMR_NB)
             n = 31;
         else
             n = 61;
         /* max_header_toc_size + the largest AMR payload must fit */
         if (1 + s->max_frames_per_packet + n > s->max_payload_size) {
             av_log(s1, AV_LOG_ERROR, "RTP max payload size too small for AMR\n");
             return -1;
         }
         if (st->codec->channels != 1) {
             av_log(s1, AV_LOG_ERROR, "Only mono is supported\n");
             return -1;
         }
83a0d387
     case CODEC_ID_AAC:
21da81d7
         s->num_frames = 0;
83a0d387
     default:
91af5601
 defaultcase:
72415b2a
         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
c3f9ebf7
             avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
83a0d387
         }
         s->buf_ptr = s->buf;
         break;
     }
 
     return 0;
 }
 
 /* send an rtcp sender report packet */
 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     uint32_t rtp_ts;
 
dfd2a005
     av_dlog(s1, "RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp);
83a0d387
 
     s->last_rtcp_ntp_time = ntp_time;
a4696aa2
     rtp_ts = av_rescale_q(ntp_time - s->first_rtcp_ntp_time, (AVRational){1, 1000000},
83a0d387
                           s1->streams[0]->time_base) + s->base_timestamp;
77eb5504
     avio_w8(s1->pb, (RTP_VERSION << 6));
     avio_w8(s1->pb, RTCP_SR);
     avio_wb16(s1->pb, 6); /* length in words - 1 */
     avio_wb32(s1->pb, s->ssrc);
     avio_wb32(s1->pb, ntp_time / 1000000);
     avio_wb32(s1->pb, ((ntp_time % 1000000) << 32) / 1000000);
     avio_wb32(s1->pb, rtp_ts);
     avio_wb32(s1->pb, s->packet_count);
     avio_wb32(s1->pb, s->octet_count);
b7f2fdde
     avio_flush(s1->pb);
83a0d387
 }
 
 /* send an rtp packet. sequence number is incremented, but the caller
    must update the timestamp itself */
 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
 
dfd2a005
     av_dlog(s1, "rtp_send_data size=%d\n", len);
83a0d387
 
     /* build the RTP header */
77eb5504
     avio_w8(s1->pb, (RTP_VERSION << 6));
     avio_w8(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7));
     avio_wb16(s1->pb, s->seq);
     avio_wb32(s1->pb, s->timestamp);
     avio_wb32(s1->pb, s->ssrc);
83a0d387
 
77eb5504
     avio_write(s1->pb, buf1, len);
b7f2fdde
     avio_flush(s1->pb);
83a0d387
 
     s->seq++;
     s->octet_count += len;
     s->packet_count++;
 }
 
 /* send an integer number of samples and compute time stamp and fill
    the rtp send buffer before sending. */
 static void rtp_send_samples(AVFormatContext *s1,
77e0c758
                              const uint8_t *buf1, int size, int sample_size_bits)
83a0d387
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     int len, max_packet_size, n;
77e0c758
     /* Calculate the number of bytes to get samples aligned on a byte border */
     int aligned_samples_size = sample_size_bits/av_gcd(sample_size_bits, 8);
83a0d387
 
77e0c758
     max_packet_size = (s->max_payload_size / aligned_samples_size) * aligned_samples_size;
     /* Not needed, but who knows. Don't check if samples aren't an even number of bytes. */
     if ((sample_size_bits % 8) == 0 && ((8 * size) % sample_size_bits) != 0)
83a0d387
         av_abort();
     n = 0;
     while (size > 0) {
         s->buf_ptr = s->buf;
         len = FFMIN(max_packet_size, size);
 
         /* copy data */
         memcpy(s->buf_ptr, buf1, len);
         s->buf_ptr += len;
         buf1 += len;
         size -= len;
77e0c758
         s->timestamp = s->cur_timestamp + n * 8 / sample_size_bits;
83a0d387
         ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
         n += (s->buf_ptr - s->buf);
     }
 }
 
 static void rtp_send_mpegaudio(AVFormatContext *s1,
                                const uint8_t *buf1, int size)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     int len, count, max_packet_size;
 
     max_packet_size = s->max_payload_size;
 
     /* test if we must flush because not enough space */
     len = (s->buf_ptr - s->buf);
     if ((len + size) > max_packet_size) {
         if (len > 4) {
             ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
             s->buf_ptr = s->buf + 4;
         }
     }
     if (s->buf_ptr == s->buf + 4) {
         s->timestamp = s->cur_timestamp;
     }
 
     /* add the packet */
     if (size > max_packet_size) {
         /* big packet: fragment */
         count = 0;
         while (size > 0) {
             len = max_packet_size - 4;
             if (len > size)
                 len = size;
             /* build fragmented packet */
             s->buf[0] = 0;
             s->buf[1] = 0;
             s->buf[2] = count >> 8;
             s->buf[3] = count;
             memcpy(s->buf + 4, buf1, len);
             ff_rtp_send_data(s1, s->buf, len + 4, 0);
             size -= len;
             buf1 += len;
             count += len;
         }
     } else {
         if (s->buf_ptr == s->buf + 4) {
             /* no fragmentation possible */
             s->buf[0] = 0;
             s->buf[1] = 0;
             s->buf[2] = 0;
             s->buf[3] = 0;
         }
         memcpy(s->buf_ptr, buf1, size);
         s->buf_ptr += size;
     }
 }
 
 static void rtp_send_raw(AVFormatContext *s1,
                          const uint8_t *buf1, int size)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     int len, max_packet_size;
 
     max_packet_size = s->max_payload_size;
 
     while (size > 0) {
         len = max_packet_size;
         if (len > size)
             len = size;
 
         s->timestamp = s->cur_timestamp;
         ff_rtp_send_data(s1, buf1, len, (len == size));
 
         buf1 += len;
         size -= len;
     }
 }
 
 /* NOTE: size is assumed to be an integer multiple of TS_PACKET_SIZE */
 static void rtp_send_mpegts_raw(AVFormatContext *s1,
                                 const uint8_t *buf1, int size)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     int len, out_len;
 
     while (size >= TS_PACKET_SIZE) {
         len = s->max_payload_size - (s->buf_ptr - s->buf);
         if (len > size)
             len = size;
         memcpy(s->buf_ptr, buf1, len);
         buf1 += len;
         size -= len;
         s->buf_ptr += len;
 
         out_len = s->buf_ptr - s->buf;
         if (out_len >= s->max_payload_size) {
             ff_rtp_send_data(s1, s->buf, out_len, 0);
             s->buf_ptr = s->buf;
         }
     }
 }
 
 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
 {
302879cb
     RTPMuxContext *s = s1->priv_data;
83a0d387
     AVStream *st = s1->streams[0];
     int rtcp_bytes;
     int size= pkt->size;
 
dfd2a005
     av_dlog(s1, "%d: write len=%d\n", pkt->stream_index, size);
83a0d387
 
     rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) /
         RTCP_TX_RATIO_DEN;
     if (s->first_packet || ((rtcp_bytes >= RTCP_SR_SIZE) &&
594a9aeb
                            (ff_ntp_time() - s->last_rtcp_ntp_time > 5000000))) {
         rtcp_send_sr(s1, ff_ntp_time());
83a0d387
         s->last_octet_count = s->octet_count;
         s->first_packet = 0;
     }
     s->cur_timestamp = s->base_timestamp + pkt->pts;
 
     switch(st->codec->codec_id) {
     case CODEC_ID_PCM_MULAW:
     case CODEC_ID_PCM_ALAW:
     case CODEC_ID_PCM_U8:
     case CODEC_ID_PCM_S8:
77e0c758
         rtp_send_samples(s1, pkt->data, size, 8 * st->codec->channels);
83a0d387
         break;
     case CODEC_ID_PCM_U16BE:
     case CODEC_ID_PCM_U16LE:
     case CODEC_ID_PCM_S16BE:
     case CODEC_ID_PCM_S16LE:
77e0c758
         rtp_send_samples(s1, pkt->data, size, 16 * st->codec->channels);
83a0d387
         break;
0048a2a8
     case CODEC_ID_ADPCM_G722:
         /* The actual sample size is half a byte per sample, but since the
          * stream clock rate is 8000 Hz while the sample rate is 16000 Hz,
77e0c758
          * the correct parameter for send_samples_bits is 8 bits per stream
          * clock. */
         rtp_send_samples(s1, pkt->data, size, 8 * st->codec->channels);
0048a2a8
         break;
04403ec2
     case CODEC_ID_ADPCM_G726:
         rtp_send_samples(s1, pkt->data, size,
                          st->codec->bits_per_coded_sample * st->codec->channels);
0048a2a8
         break;
83a0d387
     case CODEC_ID_MP2:
     case CODEC_ID_MP3:
d3d1eae6
         rtp_send_mpegaudio(s1, pkt->data, size);
83a0d387
         break;
     case CODEC_ID_MPEG1VIDEO:
     case CODEC_ID_MPEG2VIDEO:
d3d1eae6
         ff_rtp_send_mpegvideo(s1, pkt->data, size);
83a0d387
         break;
     case CODEC_ID_AAC:
08321228
         if (s->flags & FF_RTP_FLAG_MP4A_LATM)
ef409645
             ff_rtp_send_latm(s1, pkt->data, size);
         else
             ff_rtp_send_aac(s1, pkt->data, size);
83a0d387
         break;
08e696c0
     case CODEC_ID_AMR_NB:
     case CODEC_ID_AMR_WB:
d3d1eae6
         ff_rtp_send_amr(s1, pkt->data, size);
08e696c0
         break;
83a0d387
     case CODEC_ID_MPEG2TS:
d3d1eae6
         rtp_send_mpegts_raw(s1, pkt->data, size);
83a0d387
         break;
f79bfe48
     case CODEC_ID_H264:
d3d1eae6
         ff_rtp_send_h264(s1, pkt->data, size);
f79bfe48
         break;
9edfaf3c
     case CODEC_ID_H263:
     case CODEC_ID_H263P:
d3d1eae6
         ff_rtp_send_h263(s1, pkt->data, size);
9edfaf3c
         break;
91af5601
     case CODEC_ID_VORBIS:
     case CODEC_ID_THEORA:
         ff_rtp_send_xiph(s1, pkt->data, size);
         break;
7b18d94c
     case CODEC_ID_VP8:
         ff_rtp_send_vp8(s1, pkt->data, size);
         break;
83a0d387
     default:
         /* better than nothing : send the codec raw data */
d3d1eae6
         rtp_send_raw(s1, pkt->data, size);
83a0d387
         break;
     }
     return 0;
 }
 
d3536678
 static int rtp_write_trailer(AVFormatContext *s1)
 {
     RTPMuxContext *s = s1->priv_data;
 
     av_freep(&s->buf);
 
     return 0;
 }
 
c6610a21
 AVOutputFormat ff_rtp_muxer = {
dfc2c4d9
     .name              = "rtp",
     .long_name         = NULL_IF_CONFIG_SMALL("RTP output format"),
     .priv_data_size    = sizeof(RTPMuxContext),
     .audio_codec       = CODEC_ID_PCM_MULAW,
9f938ca5
     .video_codec       = CODEC_ID_MPEG4,
dfc2c4d9
     .write_header      = rtp_write_header,
     .write_packet      = rtp_write_packet,
     .write_trailer     = rtp_write_trailer,
08321228
     .priv_class = &rtp_muxer_class,
83a0d387
 };