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

Unified Diff: media/base/audio_decoder_config.cc

Issue 1563893003: media: Fix case ordering of switch statements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ps2 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
« no previous file with comments | « no previous file | media/base/mime_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_decoder_config.cc
diff --git a/media/base/audio_decoder_config.cc b/media/base/audio_decoder_config.cc
index 213cb10edc41881a16b8e5cdb67cf0b43e685503..17f039f499d39deb4cabcdcf6664aa94e0423b58 100644
--- a/media/base/audio_decoder_config.cc
+++ b/media/base/audio_decoder_config.cc
@@ -114,14 +114,14 @@ std::string AudioDecoderConfig::GetHumanReadableCodecName() const {
return "amr_nb";
case kCodecAMR_WB:
return "amr_wb";
- case kCodecGSM_MS:
- return "gsm_ms";
- case kCodecPCM_ALAW:
- return "pcm_alaw";
case kCodecPCM_MULAW:
return "pcm_mulaw";
+ case kCodecGSM_MS:
+ return "gsm_ms";
case kCodecOpus:
return "opus";
+ case kCodecPCM_ALAW:
+ return "pcm_alaw";
case kCodecALAC:
return "alac";
}
« no previous file with comments | « no previous file | media/base/mime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698