*** avfdecoder.cpp	2005-12-08 07:05:38.000000000 +0000
--- ../../../../mythplugins-0.19/mythmusic/mythmusic/avfdecoder.cpp	2006-02-24 23:10:52.000000000 +0000
***************
*** 364,375 ****
  
  bool avfDecoderFactory::supports(const QString &source) const
  {
!     return (source.right(extension().length()).lower() == extension());
  }
  
  const QString &avfDecoderFactory::extension() const
  {
!     static QString ext(".wma");
      return ext;
  }
  
--- 364,387 ----
  
  bool avfDecoderFactory::supports(const QString &source) const
  {
!     bool res = false;
!     QStringList list = QStringList::split("|", extension());
! 
!     for (QStringList::Iterator it = list.begin(); it != list.end(); ++it)
!     {
!         if (*it == source.right((*it).length()).lower())
!         {
!             res = true;
!             break;
!         }
!     }
! 
!     return res;
  }
  
  const QString &avfDecoderFactory::extension() const
  {
!     static QString ext(".wav|.wma");
      return ext;
  }
  
