diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-12-06 17:17:33 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-12-06 17:17:33 +0000 |
commit | 68a432cf14020914c6379935e36c39a9908ab554 (patch) | |
tree | f68c94fa5c94346eaffd0dba9dc4a05800bd46fb /libavformat | |
parent | d3075ed50264033a476552b8d0616547b63b4331 (diff) | |
download | ffmpeg-68a432cf14020914c6379935e36c39a9908ab554.tar.gz |
cosmetics, remove braces, remove spaces just inside parens
Originally committed as revision 7236 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index d838bc86c1..16bc55358e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2288,12 +2288,10 @@ static void truncate_ts(AVStream *st, AVPacket *pkt){ // 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 - if( pkt->pts != AV_NOPTS_VALUE ) { + if (pkt->pts != AV_NOPTS_VALUE) pkt->pts &= pts_mask; - } - if( pkt->dts != AV_NOPTS_VALUE ) { + if (pkt->dts != AV_NOPTS_VALUE) pkt->dts &= pts_mask; - } } /** |