comparison svq1enc.c @ 6750:c93570aeb3eb libavcodec

Remove unnecessary parentheses from return calls.
author diego
date Tue, 06 May 2008 09:16:36 +0000
parents 5b3acf9fd50a
children e1302edb0f69
comparison
equal deleted inserted replaced
6749:b1778cf7f3b1 6750:c93570aeb3eb
549 while(put_bits_count(&s->pb) & 31) 549 while(put_bits_count(&s->pb) & 31)
550 put_bits(&s->pb, 1, 0); 550 put_bits(&s->pb, 1, 0);
551 551
552 flush_put_bits(&s->pb); 552 flush_put_bits(&s->pb);
553 553
554 return (put_bits_count(&s->pb) / 8); 554 return put_bits_count(&s->pb) / 8;
555 } 555 }
556 556
557 static av_cold int svq1_encode_end(AVCodecContext *avctx) 557 static av_cold int svq1_encode_end(AVCodecContext *avctx)
558 { 558 {
559 SVQ1Context * const s = avctx->priv_data; 559 SVQ1Context * const s = avctx->priv_data;