Skip to content

Commit

Permalink
added: use FFmpeg tag loader for .mka files
Browse files Browse the repository at this point in the history
  • Loading branch information
notspiff authored and popcornmix committed Sep 20, 2015
1 parent 367bdc5 commit 8a491d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xbmc/music/tags/MusicInfoTagLoaderFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "MusicInfoTagLoaderCDDA.h"
#include "MusicInfoTagLoaderShn.h"
#include "MusicInfoTagLoaderDatabase.h"
#include "MusicInfoTagLoaderFFmpeg.h"
#include "utils/StringUtils.h"
#include "utils/URIUtils.h"
#include "FileItem.h"
Expand Down Expand Up @@ -100,6 +101,8 @@ IMusicInfoTagLoader* CMusicInfoTagLoaderFactory::CreateLoader(const CFileItem& i
CMusicInfoTagLoaderSHN *pTagLoader = new CMusicInfoTagLoaderSHN();
return (IMusicInfoTagLoader*)pTagLoader;
}
else if (strExtension == "mka")
return new CMusicInfoTagLoaderFFmpeg();

return NULL;
}

0 comments on commit 8a491d3

Please sign in to comment.