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

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

Definition at line 235 of file RgbDataSrcInfo.h.

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

Referenced by RgbDataSrcInfo().

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

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:31 2011 for ImpalaSrc by  doxygen 1.5.1