---------------------------------------------------------------------------
| 898 | |
| 899 | //--------------------------------------------------------------------------- |
| 900 | bool MediaInfo_Internal::SelectFromExtension (const String &Parser) |
| 901 | { |
| 902 | CriticalSectionLocker CSL(CS); |
| 903 | |
| 904 | //Clear last value |
| 905 | delete Info; Info=NULL; |
| 906 | |
| 907 | //Searching the right File_* |
| 908 | Info=MediaInfoLib::SelectFromExtension(Parser); |
| 909 | return Info?true:false; |
| 910 | } |
| 911 | |
| 912 | //--------------------------------------------------------------------------- |
| 913 | #if defined(MEDIAINFO_FILE_YES) |
no test coverage detected