Author: conrad Date: Mon Nov 10 04:11:07 2008 New Revision: 3771 Log: Cosmetics: unneeded braces Modified: dirac/libavcodec/diracdec.c Modified: dirac/libavcodec/diracdec.c ============================================================================== --- dirac/libavcodec/diracdec.c (original) +++ dirac/libavcodec/diracdec.c Mon Nov 10 04:11:07 2008 @@ -71,10 +71,9 @@ static int parse_source_parameters(Dirac s->source.chroma_width = s->source.luma_width >> s->chroma_hshift; s->source.chroma_height = s->source.luma_height >> s->chroma_vshift; - if (get_bits1(gb)) { + if (get_bits1(gb)) /* Interlace. */ s->source.interlaced = get_bits1(gb); - } /* Framerate. */ if (get_bits1(gb)) {
participants (1)
-
conrad