Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: third_party/opus/overrides/include/opus_defines.h

Issue 11189047: Add opus audio codec support in remoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/stringize_macros.h"
6
7 // HACK: This is a hack to make sure that we don't export opus symbols.
8 // opus_defines.h sets OPUS_EXPORT only when OPUS_BUILD is defined.
9 #if defined(OPUS_BUILD)
10 #undef OPUS_BUILD
11 #define OPUS_BUILD_DEFINED
12 #endif // defined(OPUS_BUILD)
13
14 #include "third_party/opus/src/include/opus_defines.h"
15
16 #if defined(OPUS_BUILD_DEFINED)
17 #undef OPUS_BUILD_DEFINED
18 #define OPUS_BUILD
19 #endif // defined(OPUS_BUILD_DEFINED)
OLDNEW
« no previous file with comments | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698