| 73 | //--------------------------------------------------------------------------- |
| 74 | #ifdef MEDIAINFO_BDMV_YES |
| 75 | int Reader_Directory::Bdmv_Format_Test(MediaInfo_Internal* MI, const String &File_Name) |
| 76 | { |
| 77 | if (!MI->SelectFromExtension(__T("Bdmv"))) |
| 78 | return 0; |
| 79 | |
| 80 | MI->Open_Buffer_Init(0, File_Name); |
| 81 | |
| 82 | MI->Open_Buffer_Continue(NULL, 0); |
| 83 | |
| 84 | MI->Open_Buffer_Finalize(); |
| 85 | |
| 86 | return 1; |
| 87 | } |
| 88 | #endif //MEDIAINFO_BDMV_YES |
| 89 | |
| 90 | //--------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected