]> git.sesse.net Git - ffmpeg/commit
avformat/rtpenc: Fix integer overflow in NTP_TO_RTP_FORMAT
authorBoris Nagels <develop@focusware.nl>
Sun, 6 Mar 2016 15:31:36 +0000 (16:31 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 6 Mar 2016 20:19:18 +0000 (21:19 +0100)
commit1109ed7973c7fd1e7001898adc4976590d862122
tree60adff0da6b3bea6e27e1ee84b08616dceda1266
parent6e19120ea2064e4534544a28e042e0ef6c08cc2b
avformat/rtpenc: Fix integer overflow in NTP_TO_RTP_FORMAT

RTCP synchronization packet was broken since commit in ffmpeg version > 2.8.3
(commit: e04b039b1528f4c7df5c2b93865651bfea168a19) Since this commit (2e814d0329aded98c811d0502839618f08642685)
"rtpenc: Simplify code by introducing a macro for rescaling NTP timestamps", NTP_TO_RTP_FORMAT
uses av_rescale_rnd() function to add the data to the packet.

This causes an overflow in the av_rescale_rnd() function and it will return INT64_MIN.
Causing the NTP stamp in the RTCP packet to have an invalid value.

Github: Closes #182

Reverting commit '2e814d0329aded98c811d0502839618f08642685' solves the problem.
libavformat/rtpenc.c