From: hellgore Date: Fri, 5 Oct 2012 15:02:54 +0000 (+0000) Subject: 3574695: Fixed bug where .wav and .mp3 was reported as STILL with CLS X-Git-Tag: 2.0.4-UNSTABLE~33 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=98a7b593e72b3e7077ad4d327dbb803bde548c8c;hp=4f7146e16034322e0cfa185c1cb2bf3c264c0243;p=casparcg 3574695: Fixed bug where .wav and .mp3 was reported as STILL with CLS git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/trunk@3395 362d55ac-95cf-4e76-9f9a-cbaa9c17b72d --- diff --git a/protocol/amcp/AMCPCommandsImpl.cpp b/protocol/amcp/AMCPCommandsImpl.cpp index 21c08a0fa..3e98ec89d 100644 --- a/protocol/amcp/AMCPCommandsImpl.cpp +++ b/protocol/amcp/AMCPCommandsImpl.cpp @@ -185,7 +185,7 @@ std::wstring MediaInfo(const boost::filesystem::wpath& path) extension == L"GIF" || extension == L"BMP") clipttype = TEXT(" STILL "); else if(extension == TEXT(".WAV") || extension == TEXT(".MP3")) - clipttype = TEXT(" STILL "); + clipttype = TEXT(" AUDIO "); else if(extension == TEXT(".SWF") || extension == TEXT(".CT") || extension == TEXT(".DV") || extension == TEXT(".MOV") || extension == TEXT(".MPG") || extension == TEXT(".AVI") ||