Index: net/base/mime_util.cc |
diff --git a/net/base/mime_util.cc b/net/base/mime_util.cc |
index 4dad7ad39ea0cc7c4b619f466cc09806471c83a1..cf3dfab401aece889cfb386bed8ee2d9e3f2f330 100644 |
--- a/net/base/mime_util.cc |
+++ b/net/base/mime_util.cc |
@@ -258,6 +258,9 @@ static const char* const supported_media_types[] = { |
// |
// Refer to http://wiki.whatwg.org/wiki/Video_type_parameters#Browser_Support |
// for more information. |
+// |
+// The codecs for WAV are integers as defined in Appendix A of RFC2361: |
+// http://tools.ietf.org/html/rfc2361 |
Ami GONE FROM CHROMIUM
2011/08/16 20:01:12
http://tools.ietf.org/html/rfc2361#appendix-A ?
|
static const char* const supported_media_codecs[] = { |
#if defined(GOOGLE_CHROME_BUILD) || defined(USE_PROPRIETARY_CODECS) |
"avc1", |
@@ -268,7 +271,7 @@ static const char* const supported_media_codecs[] = { |
#endif |
"vorbis", |
"vp8", |
- "1" // PCM for WAV. |
+ "1", // WAVE_FORMAT_PCM. |
Ami GONE FROM CHROMIUM
2011/08/16 20:01:12
drop trailing comma
|
}; |
// Note: does not include javascript types list (see supported_javascript_types) |