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

Unified Diff: media/filters/opus_constants.cc

Issue 2911643002: Create BUILD.gn files for //media/filters. (Closed)
Patch Set: Fix mac build. Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« media/filters/opus_constants.h ('K') | « media/filters/opus_constants.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/opus_constants.cc
diff --git a/media/filters/opus_constants.cc b/media/filters/opus_constants.cc
index 438367d9fd8d194e603be56af1708216053f4dc2..e207514e45d3900812b755046195656d4be274f5 100644
--- a/media/filters/opus_constants.cc
+++ b/media/filters/opus_constants.cc
@@ -41,17 +41,16 @@ const uint8_t kFFmpegChannelDecodingLayouts
{0, 2, 1, 7, 5, 6, 3, 4},
};
-const uint8_t
- kOpusVorbisChannelMap[OPUS_MAX_VORBIS_CHANNELS][OPUS_MAX_VORBIS_CHANNELS] =
- {
- {0},
- {0, 1},
- {0, 2, 1},
- {0, 1, 2, 3},
- {0, 4, 1, 2, 3},
- {0, 4, 1, 2, 3, 5},
- {0, 4, 1, 2, 3, 5, 6},
- {0, 6, 1, 2, 3, 4, 5, 7},
+const uint8_t kOpusVorbisChannelMap[OPUS_MAX_VORBIS_CHANNELS]
+ [OPUS_MAX_VORBIS_CHANNELS] = {
+ {0},
+ {0, 1},
+ {0, 2, 1},
+ {0, 1, 2, 3},
+ {0, 4, 1, 2, 3},
+ {0, 4, 1, 2, 3, 5},
+ {0, 4, 1, 2, 3, 5, 6},
+ {0, 6, 1, 2, 3, 4, 5, 7},
};
} // namespace media
« media/filters/opus_constants.h ('K') | « media/filters/opus_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698