Standardized coding style for TS-related code.
This commit is contained in:
parent
439d5bf98c
commit
05416da269
4 changed files with 246 additions and 245 deletions
17
lib/nal.h
17
lib/nal.h
|
@ -1,14 +1,15 @@
|
|||
#include <string>
|
||||
#include <cstdio>
|
||||
|
||||
class NAL_Unit {
|
||||
class NAL_Unit{
|
||||
public:
|
||||
NAL_Unit( );
|
||||
NAL_Unit( std::string & InputData );
|
||||
bool ReadData( std::string & InputData );
|
||||
std::string AnnexB( bool LongIntro = false );
|
||||
std::string SizePrepended( );
|
||||
int Type( );
|
||||
NAL_Unit();
|
||||
NAL_Unit(std::string & InputData);
|
||||
bool ReadData(std::string & InputData);
|
||||
std::string AnnexB(bool LongIntro = false);
|
||||
std::string SizePrepended();
|
||||
int Type();
|
||||
private:
|
||||
std::string MyData;
|
||||
};//NAL_Unit class
|
||||
};
|
||||
//NAL_Unit class
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue