Bugfix in TS concerning audio init data, Makefile fix

This commit is contained in:
Erik Zandvliet 2012-12-17 13:52:31 +01:00
parent 611d4db3d7
commit 140fd4febf
3 changed files with 9 additions and 6 deletions

View file

@ -99,7 +99,6 @@ void TS::Packet::PCR( int64_t NewVal ) {
strBuf[4] = 0x07;
strBuf[5] = (strBuf[5] | 0x10 );
int64_t TmpVal = NewVal / 300;
fprintf( stderr, "\tSetting PCR_Base: %d\n", TmpVal );
strBuf[6] = (((TmpVal>>1)>>24) & 0xFF);
strBuf[7] = (((TmpVal>>1)>>16) & 0xFF);
strBuf[8] = (((TmpVal>>1)>>8) & 0xFF);