| 130 | //--------------------------------------------------------------------------- |
| 131 | #ifdef MEDIAINFO_P2_YES |
| 132 | int Reader_Directory::P2_Format_Test(MediaInfo_Internal* MI, const String &File_Name) |
| 133 | { |
| 134 | if (!MI->SelectFromExtension(__T("P2_Clip"))) |
| 135 | return 0; |
| 136 | |
| 137 | MI->Open(File_Name+__T("CLIP")+PathSeparator+__T("0013MM.XML")); |
| 138 | |
| 139 | return 1; |
| 140 | } |
| 141 | #endif //MEDIAINFO_P2_YES |
| 142 | |
| 143 | //--------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected