Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/DSUtil/MediaTypeEx.cpp2
-rw-r--r--src/filters/parser/MP4Splitter/MP4Splitter.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/DSUtil/MediaTypeEx.cpp b/src/DSUtil/MediaTypeEx.cpp
index 68aad8a9b..f8d36ddfd 100644
--- a/src/DSUtil/MediaTypeEx.cpp
+++ b/src/DSUtil/MediaTypeEx.cpp
@@ -404,7 +404,7 @@ CString CMediaTypeEx::GetAudioCodecName(const GUID& subtype, WORD wFormatTag)
subtype == MEDIASUBTYPE_ADPCM_AMV) {
str = _T("ADPCM");
} else if (subtype == MEDIASUBTYPE_ALAC) {
- str = _T("Alac");
+ str = _T("ALAC");
} else if (subtype == MEDIASUBTYPE_ALS) {
str = _T("ALS");
} else if (subtype == MEDIASUBTYPE_QDM2) {
diff --git a/src/filters/parser/MP4Splitter/MP4Splitter.cpp b/src/filters/parser/MP4Splitter/MP4Splitter.cpp
index 2fb509507..bdf2b0991 100644
--- a/src/filters/parser/MP4Splitter/MP4Splitter.cpp
+++ b/src/filters/parser/MP4Splitter/MP4Splitter.cpp
@@ -1007,7 +1007,7 @@ HRESULT CMP4SplitterFilter::CreateOutputs(IAsyncReader* pAsyncReader)
SetTrackName(&TrackName, _T("NellyMoser Audio"));
} else if (type == AP4_ATOM_TYPE_ALAC) {
fourcc = MAKEFOURCC('a', 'l', 'a', 'c');
- SetTrackName(&TrackName, _T("Alac Audio"));
+ SetTrackName(&TrackName, _T("ALAC Audio"));
} else if ((type == AP4_ATOM_TYPE_NONE || type == AP4_ATOM_TYPE_RAW) && bitspersample == 8 ||
type == AP4_ATOM_TYPE_SOWT && bitspersample == 16 ||
(type == AP4_ATOM_TYPE_IN24 || type == AP4_ATOM_TYPE_IN32) && ase->GetEndian() == ENDIAN_LITTLE) {