Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::VideoSet::Mpeg7Doc::GetTemporalDecomposition ( DOMNode td,
std::vector< String > &  names,
std::vector< int > &  frames 
) [inline, private]

Definition at line 999 of file Mpeg7Doc.h.

References Impala::Util::XmlDoc::GetAttributeValue(), Impala::Util::XmlDoc::GetChildNode(), Impala::Util::XmlDoc::GetChildNodes(), and GetMediaTimePoint().

Referenced by AddShot().

01001     {
01002         std::vector<DOMNode*> segments = GetChildNodes(td, "VideoSegment");
01003         for (int i=0 ; i<segments.size() ; i++)
01004         {
01005             DOMNode* segment = segments[i];
01006             String id = GetAttributeValue(segment, "id");
01007             names.push_back(id);
01008             DOMNode* mediaTime = GetChildNode(segment, "MediaTime", true);
01009             long frame = GetMediaTimePoint(mediaTime);
01010             frames.push_back(frame);
01011         }
01012     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:22:05 2011 for ImpalaSrc by  doxygen 1.5.1