summaryrefslogtreecommitdiffstats
path: root/third_party/opus/opus.h
blob: 8e7b483cb993ebf3f6e6b8af4717f7344bf9cfe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This is a shim header to include the right opus header.
// Use this instead of referencing the opus header directly.

#if defined(USE_SYSTEM_OPUS)
#include <opus/opus.h>
#else
#include "third_party/opus/src/include/opus.h"
#endif