////////////////////////////////////////////////////////////////////////////////
// virtual
std::string LLMediaImplQuickTime::getVersion()
{
	long version;
	Gestalt( gestaltQuickTimeVersion, &version );

	std::ostringstream codec( "" );
	codec << "[";
	codec << sLLMediaImplQuickTimeReg.getImplName();
	codec << "] - ";
	codec << "QuickTime: " << std::hex << version;

	return codec.str();
}
////////////////////////////////////////////////////////////////////////////////
// virtual
std::string LLMediaImplLLMozLib::getVersion()
{
    std::string version_string = "[" + sLLMediaImplLLMozLibReg.getImplName() + "] - " + LLMozLib::getInstance()->getVersion();

    return version_string;
}
Beispiel #3
0
////////////////////////////////////////////////////////////////////////////////
// virtual
std::string LLMediaImplGStreamer::getVersion()
{
	std::string rtn;
	rtn = "[" + sLLMediaImplGStreamerReg.getImplName() + "] - GStreamer 0.10.x";
	return rtn;
}
////////////////////////////////////////////////////////////////////////////////
// virtual
std::string LLMediaImplExample1::getVersion()
{
    std::string version_string = "[" + sLLMediaImplExample1Reg.getImplName() + "] - " + "1.0.0.0";

    return version_string;
}