# HG changeset patch # User banan # Date 1252609933 0 # Node ID 80a367a3742c4e35fe167bda5ab5c167e53908ef # Parent 0d8ad70ca9146b7e27183bd7b503dee5c57634cb Cosmetics, add spaces diff -r 0d8ad70ca914 -r 80a367a3742c aea.c --- a/aea.c Thu Sep 10 18:48:12 2009 +0000 +++ b/aea.c Thu Sep 10 19:12:13 2009 +0000 @@ -36,7 +36,7 @@ return 0; /* Magic is '00 08 00 00' in Little Endian*/ - if(AV_RL32(p->buf)==0x800) { + if (AV_RL32(p->buf)==0x800) { int bsm_s, bsm_e, inb_s, inb_e; bsm_s = p->buf[2048]; inb_s = p->buf[2048+1]; @@ -50,7 +50,7 @@ * the block size mode and info byte can't be the same */ if (bsm_s == bsm_e && inb_s == inb_e && bsm_s != inb_s) - return AVPROBE_SCORE_MAX/2; + return AVPROBE_SCORE_MAX / 2; } return 0; } @@ -78,7 +78,7 @@ return -1; } - st->codec->channel_layout = (st->codec->channels==1) ? CH_LAYOUT_MONO : CH_LAYOUT_STEREO; + st->codec->channel_layout = (st->codec->channels == 1) ? CH_LAYOUT_MONO : CH_LAYOUT_STEREO; st->codec->block_align = AT1_SU_SIZE * st->codec->channels; return 0;