commit | 47fadba7502f852629cb635426047efb797c1e31 | [log] [tgz] |
---|---|---|
author | stefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Mon Nov 25 12:03:56 2013 |
committer | stefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Mon Nov 25 12:03:56 2013 |
tree | 35408d490d6074be1f478edf287d010028d5a739 | |
parent | 4ab4fc00449448570dcb1ddf9e89752d5a4890b4 [diff] |
Add include stdlib.h to files using abs. abs function is declared in stdlib.h Committing for alextaran@chromium.org. Reviewed here: http://review.webrtc.org/4239004/ TBR=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/4349004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5170 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc b/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc index a892386..189e1b0 100644 --- a/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc +++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc
@@ -11,6 +11,7 @@ #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include <assert.h> +#include <stdlib.h> #include <string.h> #include <algorithm>
diff --git a/webrtc/video_engine/stream_synchronization.cc b/webrtc/video_engine/stream_synchronization.cc index fcff782..6192dfa 100644 --- a/webrtc/video_engine/stream_synchronization.cc +++ b/webrtc/video_engine/stream_synchronization.cc
@@ -12,6 +12,7 @@ #include <assert.h> #include <math.h> +#include <stdlib.h> #include <algorithm>