MPEG SDK --> MpegAnalyzer
A FrameList is a list of Frames sorted by frame number.
FrameList
FrameList
addFrame
addFrame
clean
contains
contains
deleteFrame
deleteFrame
get
getSourceFile
read
setSourceFile
size
write
public FrameList ( ) ;
Construct an empty FrameList.
public FrameList ( int first_frame ,
int last_frame ,
string filename = "" ) ;
Construct a FrameList with two frames.
public string getSourceFile ( ) const ;
After a FrameList file has been read, this function returns the MPEG source file for the FrameList.
public void setSourceFile ( string filename ) ;
Set the source file.
public int size ( ) const ;
The number of Frames.
public Frame get ( int i ) const ;
Get the ith Frame.
public void addFrame ( int frame ,
string type = "" ) ;
Add a frame and keep the list sorted.
public void addFrame ( const Frame & inframe ) ;
Add a frame and keep the list sorted.
public bool deleteFrame ( int frame ) ;
Delete a frame.
public bool deleteFrame ( Frame inframe ) ;
Delete a frame.
public bool contains ( int frame ) const ;
Whether this FrameList contains the given frame.
public bool contains ( Frame inframe ) const ;
Whether this FrameList contains the given frame.
public int read ( std_istream & in ) ;
Read from file. Returns the number of frames read.
public void write ( std_ostream & out ) const ;
Save frame indices to file.
public void clean ( ) ;
Remove all Frames.
This documentation was generated automatically by the ccdoc tool (version 0.7a).
Click here to submit a bug report or feature request.
Click here to return to the top of the page.