cosmetics, remove braces, remove spaces just inside parens

Originally committed as revision 7236 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-12-06 17:17:33 +00:00
parent d3075ed502
commit 68a432cf14

View File

@ -2288,12 +2288,10 @@ static void truncate_ts(AVStream *st, AVPacket *pkt){
// if(pkt->dts < 0) // if(pkt->dts < 0)
// pkt->dts= 0; //this happens for low_delay=0 and b frames, FIXME, needs further invstigation about what we should do here // pkt->dts= 0; //this happens for low_delay=0 and b frames, FIXME, needs further invstigation about what we should do here
if( pkt->pts != AV_NOPTS_VALUE ) { if (pkt->pts != AV_NOPTS_VALUE)
pkt->pts &= pts_mask; pkt->pts &= pts_mask;
} if (pkt->dts != AV_NOPTS_VALUE)
if( pkt->dts != AV_NOPTS_VALUE ) {
pkt->dts &= pts_mask; pkt->dts &= pts_mask;
}
} }
/** /**