comparison aacdec.c @ 11904:09a48810ded6 libavcodec

aacdec: cosmetics: whitespace
author alexc
date Mon, 21 Jun 2010 04:10:18 +0000
parents f3e007b379e5
children 062aab998a98
comparison
equal deleted inserted replaced
11903:f3e007b379e5 11904:09a48810ded6
2005 // parse 2005 // parse
2006 while ((elem_type = get_bits(&gb, 3)) != TYPE_END) { 2006 while ((elem_type = get_bits(&gb, 3)) != TYPE_END) {
2007 elem_id = get_bits(&gb, 4); 2007 elem_id = get_bits(&gb, 4);
2008 2008
2009 if (elem_type < TYPE_DSE) { 2009 if (elem_type < TYPE_DSE) {
2010 if (!(che=get_che(ac, elem_type, elem_id))) { 2010 if (!(che=get_che(ac, elem_type, elem_id))) {
2011 av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id); 2011 av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n",
2012 return -1; 2012 elem_type, elem_id);
2013 } 2013 return -1;
2014 }
2014 samples = 1024; 2015 samples = 1024;
2015 } 2016 }
2016 2017
2017 switch (elem_type) { 2018 switch (elem_type) {
2018 2019