9 #include "../CodecRegistry.h"
39 size_t sep = path.find_last_of(
'|');
40 int streamIndex = (sep != std::string::npos) ? atoi(path.c_str() + sep + 1) : 0;
41 std::string filepath = path.substr(0, sep);
43 return new FFStream(filepath, streamIndex, type);
46 static CodecRegistration registration(
new FFCodec());