mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fix constraint violation: libavformat is not allowed to modify state of caller, including rng state
Originally committed as revision 5249 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5d6ed7c141
commit
f880199375
@ -532,9 +532,9 @@ static int rtp_write_header(AVFormatContext *s1)
|
||||
payload_type = RTP_PT_PRIVATE; /* private payload type */
|
||||
s->payload_type = payload_type;
|
||||
|
||||
s->base_timestamp = random();
|
||||
s->base_timestamp = 0; /* FIXME: was random(), what should this be? */
|
||||
s->timestamp = s->base_timestamp;
|
||||
s->ssrc = random();
|
||||
s->ssrc = 0; /* FIXME: was random(), what should this be? */
|
||||
s->first_packet = 1;
|
||||
|
||||
max_packet_size = url_fget_max_packet_size(&s1->pb);
|
||||
|
Loading…
Reference in New Issue
Block a user