Fix clang errors in non-GYP_DEFINES=clang=1 build
BUG=1623 R=stefan@webrtc.org, tina.legrand@webrtc.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1368004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3968 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -19,9 +19,9 @@ struct WebRtcOpusDecInst;
|
||||
namespace webrtc {
|
||||
|
||||
// Number of samples in a 60 ms stereo frame, sampled at 48 kHz.
|
||||
enum { kOpusNumberOfSamples = 480 * 6 * 2 };
|
||||
const int kOpusNumberOfSamples = 480 * 6 * 2;
|
||||
// Maximum number of bytes in output bitstream.
|
||||
enum { kMaxBytes = 1000 };
|
||||
const size_t kMaxBytes = 1000;
|
||||
|
||||
class OpusTest : public ::testing::Test {
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user