diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-05-27 20:56:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-05-27 20:56:14 +0000 |
commit | ac2750ec796bed25e7f995a1ff2850d382269a8a (patch) | |
tree | 56cbb9b99337d49cc8d7884ead95588c44872593 | |
parent | 2afc0c12a7fd67432b18eae917a201cc0de24dc7 (diff) | |
download | ffmpeg-ac2750ec796bed25e7f995a1ff2850d382269a8a.tar.gz |
suggest solution for 2 fixmies
Originally committed as revision 5415 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rtp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c index 2b560057bb..8482a71998 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -532,6 +532,7 @@ static int rtp_write_header(AVFormatContext *s1) payload_type = RTP_PT_PRIVATE; /* private payload type */ s->payload_type = payload_type; +// 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->ssrc = 0; /* FIXME: was random(), what should this be? */ |