~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/musicInfoTagLoaderFactory.cpp

  • Committer: bobbin007
  • Date: 2005-06-16 17:39:04 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk/XBMC:3673
added: aac codec for paplayer (needs aaccodec.dll in system\players\paplayer)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  if (strExtension.IsEmpty())
39
39
    return NULL;
40
40
 
41
 
  if (strExtension == "mp3")
 
41
  if (strExtension == "mp3" || strExtension == "aac")
42
42
  {
43
43
    CMusicInfoTagLoaderMP3 *pTagLoader = new CMusicInfoTagLoaderMP3();
44
44
    return (IMusicInfoTagLoader*)pTagLoader;