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

void Impala::Core::VideoSet::TestVideo::HandleNewFile ( VideoSet vs,
int  fileId,
Stream::RgbDataSrc src = 0 
) [inline, virtual]

Arrived at given DB_FILE in a "normal" walk.

Reimplemented from Impala::Core::VideoSet::Listener.

Definition at line 52 of file TestVideo.h.

References FailTest(), ILOG_ERROR, mSrc, and testFrameAccuracy().

00053     {
00054         if (src)
00055             mSrc = 0;
00056         else
00057         {
00058             src = vs->GetVideo(fileId);
00059             if (src == 0)
00060             {
00061                 FailTest("Could not initialize video");
00062                 return;
00063             }
00064             mSrc = src;
00065         }
00066 
00067         try
00068         {
00069             testFrameAccuracy(src);
00070         }
00071         catch (std::exception& e)
00072         {
00073             ILOG_ERROR("Test failed : " << e.what());
00074         }
00075     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:32:45 2010 for ImpalaSrc by  doxygen 1.5.1