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}
This commit is contained in:
minyue
2015-11-16 08:07:01 -08:00
committed by Commit bot
parent 3a94154035
commit 9a7c838ec4

View File

@ -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 <stddef.h>
#include "opus.h"
struct WebRtcOpusEncInst {