From 9a7c838ec419fcef29e40e6089acc90406181644 Mon Sep 17 00:00:00 2001 From: minyue Date: Mon, 16 Nov 2015 08:07:01 -0800 Subject: [PATCH] Adding stddef.h to opus_inst.h. This is to prevent size_t from undefined. This does not happen in current WebRTC since the sources that opus_inst.h gets used have proper definitions. But it would be good to add the definition in itself. Review URL: https://codereview.webrtc.org/1446093003 Cr-Commit-Position: refs/heads/master@{#10653} --- webrtc/modules/audio_coding/codecs/opus/opus_inst.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h index 8573b6d436..662c6fa059 100644 --- a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h +++ b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h @@ -11,6 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_OPUS_INST_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_OPUS_INST_H_ +#include + #include "opus.h" struct WebRtcOpusEncInst {