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

Unified Diff: media/mojo/interfaces/media_types.mojom

Issue 881603002: Adding an ALAC enum to AudioDecoderConfig (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation error Created 5 years, 11 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
« no previous file with comments | « media/ffmpeg/ffmpeg_common.cc ('k') | media/mojo/services/media_type_converters.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/interfaces/media_types.mojom
diff --git a/media/mojo/interfaces/media_types.mojom b/media/mojo/interfaces/media_types.mojom
index 032cb398b92b80e335e83b84c4ae3baa3aef4a29..43db2b558fde89857febdbcd810068238ca499c0 100644
--- a/media/mojo/interfaces/media_types.mojom
+++ b/media/mojo/interfaces/media_types.mojom
@@ -31,7 +31,8 @@ enum AudioCodec {
Opus = 12,
// EAC3 = 13,
PCM_ALAW = 14,
- MAX = PCM_ALAW,
+ ALAC = 15,
+ MAX = ALAC,
};
// See media/base/channel_layout.h for descriptions.
@@ -84,7 +85,8 @@ enum SampleFormat {
F32,
PlanarS16,
PlanarF32,
- Max = PlanarF32,
+ PlanarS32,
+ Max = PlanarS32,
};
// See media/base/video_frame.h for descriptions.
« no previous file with comments | « media/ffmpeg/ffmpeg_common.cc ('k') | media/mojo/services/media_type_converters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698