Standardized coding style for TS-related code.

This commit is contained in:
Thulinma 2012-12-31 16:33:45 +01:00
parent 439d5bf98c
commit 05416da269
4 changed files with 246 additions and 245 deletions

View file

@ -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