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

void Impala::Core::Stream::RgbDataSrcInfo::InitInfo (  )  [inline, protected]

Definition at line 234 of file RgbDataSrcInfo.h.

References HASH_SIZE, mFormatStr, mIndex, mIndexInPlace, mInfoVersion, and Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::SetColName().

Referenced by RgbDataSrcInfo().

00235     {
00236         mInfoVersion = "2.2";
00237         //For now, as long as applications do not register this parameter,
00238         //the indexes will be created in place (same location as the file)
00239         mIndexInPlace = true; //options.GetBool("IndexInPlace",true);
00240 
00241         mIndex = new IndexTableType(Column::ColumnTem<Int32>(1),
00242                                   Column::ColumnTem<Int32>(1),
00243                                   Column::ColumnTem<UInt64>(1),
00244                                   Column::FixedStringColumn(HASH_SIZE, 1));
00245         mIndex->SetColName(1, "frame_nr");
00246         mIndex->SetColName(2, "key_frame_nr");
00247         mIndex->SetColName(3, "key_frame_pos");
00248         mIndex->SetColName(4, "frame_hash");
00249 
00250         mFormatStr = String(
00251                           "INFO VERSION         : ") + mInfoVersion + "\n"
00252                         + "==================================\n"
00253                         + "File name            : %s\n"
00254                         + "\n"
00255                         + "Format name          : %s\n"
00256                         + "Format name (long)   : %s\n"
00257                         + "Bit rate (bps)       : %d \n"
00258                         + "Stream count         : %d \n"
00259                         + "\n"
00260                         + "Codec name           : %s\n"
00261                         + "Codec tag            : %s\n"
00262                         + "Time base            : %d / %d \n"
00263                         + "Duration (fractions) : %lld \n"
00264                         + "Duration (seconds)   : %lld \n"
00265                         + "Duration (human)     : %lldh %lldm %llds \n"
00266                         + "\n"
00267                         + "Frame width          : %d \n"
00268                         + "Frame height         : %d \n"
00269                         + "Aspect ratio         : %d / %d \n"
00270                         + "\n"
00271                         + "Frame count          : %d \n"
00272                         + "Frame rate (fps)     : %d / %d \n"
00273                         + "GOP size             : %d \n"
00274                         + "Leading bad frames   : %d \n"
00275                         + "Bad frame ID's       : %s \n"
00276                         + "\n"
00277                         + "Index exists         : %s \n";
00278     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:17:25 2010 for ImpalaSrc by  doxygen 1.5.1