| 180 | //--------------------------------------------------------------------------- |
| 181 | #ifdef MEDIAINFO_XDCAM_YES |
| 182 | int Reader_Directory::Xdcam_Format_Test(MediaInfo_Internal* MI, const String &File_Name) |
| 183 | { |
| 184 | if (!MI->SelectFromExtension(__T("Xdcam_Clip"))) |
| 185 | return 0; |
| 186 | |
| 187 | MI->Open(File_Name+__T("CLIP")+PathSeparator+__T("0013MM.XML")); |
| 188 | |
| 189 | return 1; |
| 190 | } |
| 191 | #endif //MEDIAINFO_XDCAM_YES |
| 192 | |
| 193 | //--------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected