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

Unified Diff: media/formats/mp4/fourccs.h

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
Index: media/formats/mp4/fourccs.h
diff --git a/media/formats/mp4/fourccs.h b/media/formats/mp4/fourccs.h
index fd9779762187f3033445cb5a5d0c5110e7f0ea2d..316fe7e4ccd1e8611ac721026c8fb6869090869f 100644
--- a/media/formats/mp4/fourccs.h
+++ b/media/formats/mp4/fourccs.h
@@ -12,6 +12,10 @@ namespace mp4 {
enum FourCC {
FOURCC_NULL = 0,
+#if defined(ENABLE_AC3_EAC3_AUDIO_DEMUXING)
+ FOURCC_AC_3 = 0x61632d33, // "ac-3"
ddorwin 2016/01/07 19:12:43 You can drop the second '_' now. It was only neces
servolk 2016/01/07 21:17:36 Done.
+ FOURCC_EAC_3 = 0x65632d33, // "ec-3"
+#endif
FOURCC_AVC1 = 0x61766331,
FOURCC_AVC3 = 0x61766333,
FOURCC_AVCC = 0x61766343,

Powered by Google App Engine
This is Rietveld 408576698