[EDL] - look for edl files not only for smb but also for nfs and afp
authorMemphiz <memphis@machzwo.de>
Sat, 12 Jan 2013 10:50:36 +0000 (11:50 +0100)
committerS. Davilla <davilla@4pi.com>
Mon, 14 Jan 2013 16:08:42 +0000 (11:08 -0500)
xbmc/cores/dvdplayer/Edl.cpp

index 098bbf7..a07164b 100644 (file)
@@ -112,7 +112,10 @@ bool CEdl::ReadEditDecisionLists(const CStdString& strMovie, const float fFrameR
    * Only check for edit decision lists if the movie is on the local hard drive, or accessed over a
    * network share.
    */
-  if ((URIUtils::IsHD(strMovie) ||  URIUtils::IsSmb(strMovie)) &&
+  if ((URIUtils::IsHD(strMovie)  || 
+       URIUtils::IsSmb(strMovie) || 
+       URIUtils::IsNfs(strMovie) || 
+       URIUtils::IsAfp(strMovie))         &&
       !URIUtils::IsPVRRecording(strMovie) &&
       !URIUtils::IsInternetStream(strMovie))
   {