diff options
author | Martin Storsjö <martin@martin.st> | 2013-01-11 15:07:51 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-12 00:02:17 +0200 |
commit | f6804c3e1ba5530e2af1e1f8222203b37f0e0d84 (patch) | |
tree | 412616ce2c47b0d7bd3acd80b823314eb5bdae60 /libavformat | |
parent | 54cb096ee4558b3bfc28c2fcd6418ce82dc39fe1 (diff) | |
download | ffmpeg-f6804c3e1ba5530e2af1e1f8222203b37f0e0d84.tar.gz |
rtpdec: Remove a useless todo comment
The question can be answered: No, we do not know the initial sequence
number from the SDP. In certain cases, it can be known from the
RTP-Info response header in RTSP though. (In that case, we use it as
timestamp origin, but not for rtp receiver statistics.)
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 9734ecf16b..9cc53e2591 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -482,7 +482,7 @@ RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, s->ic = s1; s->st = st; s->queue_size = queue_size; - rtp_init_statistics(&s->statistics, 0); // do we know the initial sequence from sdp? + rtp_init_statistics(&s->statistics, 0); if (!strcmp(ff_rtp_enc_name(payload_type), "MP2T")) { s->ts = ff_mpegts_parse_open(s->ic); if (s->ts == NULL) { |