summaryrefslogtreecommitdiff
path: root/libavformat/rtp.c
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2007-09-10 07:01:29 +0000
committerLuca Abeni <lucabe72@email.it>2007-09-10 07:01:29 +0000
commitaf74c95a0807832eed19f5450f82c40fc49494fe (patch)
tree3cd389755ad1c2fa0ea83feb84b2a639924d9cb1 /libavformat/rtp.c
parent1b31b02ed173474a685e4f43bd45f2019b6a3c2b (diff)
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
Originally committed as revision 10469 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.c')
-rw-r--r--libavformat/rtp.c36
1 files changed, 13 insertions, 23 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c
index 6fe79a267d..60256c593c 100644
--- a/libavformat/rtp.c
+++ b/libavformat/rtp.c
@@ -737,6 +737,7 @@ static int rtp_write_header(AVFormatContext *s1)
// following 2 FIXMies could be set based on the current time, theres normaly no info leak, as rtp will likely be transmitted immedeatly
s->base_timestamp = 0; /* FIXME: was random(), what should this be? */
s->timestamp = s->base_timestamp;
+ s->cur_timestamp = 0;
s->ssrc = 0; /* FIXME: was random(), what should this be? */
s->first_packet = 1;
s->first_rtcp_ntp_time = AV_NOPTS_VALUE;
@@ -746,14 +747,13 @@ static int rtp_write_header(AVFormatContext *s1)
return AVERROR(EIO);
s->max_payload_size = max_packet_size - 12;
+ av_set_pts_info(st, 32, 1, 90000);
switch(st->codec->codec_id) {
case CODEC_ID_MP2:
case CODEC_ID_MP3:
s->buf_ptr = s->buf + 4;
- s->cur_timestamp = 0;
break;
case CODEC_ID_MPEG1VIDEO:
- s->cur_timestamp = 0;
break;
case CODEC_ID_MPEG2TS:
n = s->max_payload_size / TS_PACKET_SIZE;
@@ -835,24 +835,19 @@ static void rtp_send_samples(AVFormatContext *s1,
/* not needed, but who nows */
if ((size % sample_size) != 0)
av_abort();
+ n = 0;
while (size > 0) {
- len = (max_packet_size - (s->buf_ptr - s->buf));
- if (len > size)
- len = size;
+ 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;
- n = (s->buf_ptr - s->buf);
- /* if buffer full, then send it */
- if (n >= max_packet_size) {
- ff_rtp_send_data(s1, s->buf, n, 0);
- s->buf_ptr = s->buf;
- /* update timestamp */
- s->timestamp += n / sample_size;
- }
+ s->timestamp = s->cur_timestamp + n / sample_size;
+ ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
+ n += (s->buf_ptr - s->buf);
}
}
@@ -862,7 +857,6 @@ static void rtp_send_mpegaudio(AVFormatContext *s1,
const uint8_t *buf1, int size)
{
RTPDemuxContext *s = s1->priv_data;
- AVStream *st = s1->streams[0];
int len, count, max_packet_size;
max_packet_size = s->max_payload_size;
@@ -873,11 +867,11 @@ static void rtp_send_mpegaudio(AVFormatContext *s1,
if (len > 4) {
ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
s->buf_ptr = s->buf + 4;
- /* 90 KHz time stamp */
- s->timestamp = s->base_timestamp +
- (s->cur_timestamp * 90000LL) / st->codec->sample_rate;
}
}
+ if (s->buf_ptr == s->buf + 4) {
+ s->timestamp = s->cur_timestamp;
+ }
/* add the packet */
if (size > max_packet_size) {
@@ -909,14 +903,12 @@ static void rtp_send_mpegaudio(AVFormatContext *s1,
memcpy(s->buf_ptr, buf1, size);
s->buf_ptr += size;
}
- s->cur_timestamp += st->codec->frame_size;
}
static void rtp_send_raw(AVFormatContext *s1,
const uint8_t *buf1, int size)
{
RTPDemuxContext *s = s1->priv_data;
- AVStream *st = s1->streams[0];
int len, max_packet_size;
max_packet_size = s->max_payload_size;
@@ -926,15 +918,12 @@ static void rtp_send_raw(AVFormatContext *s1,
if (len > size)
len = size;
- /* 90 KHz time stamp */
- s->timestamp = s->base_timestamp +
- av_rescale((int64_t)s->cur_timestamp * st->codec->time_base.num, 90000, st->codec->time_base.den); //FIXME pass timestamps
+ s->timestamp = s->cur_timestamp;
ff_rtp_send_data(s1, buf1, len, (len == size));
buf1 += len;
size -= len;
}
- s->cur_timestamp++;
}
/* NOTE: size is assumed to be an integer multiple of TS_PACKET_SIZE */
@@ -982,6 +971,7 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
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: