提交 9978ed7d 编写于 作者: Y Young Han Lee 提交者: Diego Biurrun

aacdec: indentation cosmetics

Signed-off-by: NDiego Biurrun <diego@biurrun.de>
上级 b4a53314
...@@ -180,9 +180,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id) ...@@ -180,9 +180,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
* @return Returns error status. 0 - OK, !0 - error * @return Returns error status. 0 - OK, !0 - error
*/ */
static av_cold int che_configure(AACContext *ac, static av_cold int che_configure(AACContext *ac,
enum ChannelPosition che_pos[4][MAX_ELEM_ID], enum ChannelPosition che_pos[4][MAX_ELEM_ID],
int type, int id, int type, int id, int *channels)
int *channels)
{ {
if (che_pos[type][id]) { if (che_pos[type][id]) {
if (!ac->che[type][id] && !(ac->che[type][id] = av_mallocz(sizeof(ChannelElement)))) if (!ac->che[type][id] && !(ac->che[type][id] = av_mallocz(sizeof(ChannelElement))))
...@@ -212,9 +211,9 @@ static av_cold int che_configure(AACContext *ac, ...@@ -212,9 +211,9 @@ static av_cold int che_configure(AACContext *ac,
* @return Returns error status. 0 - OK, !0 - error * @return Returns error status. 0 - OK, !0 - error
*/ */
static av_cold int output_configure(AACContext *ac, static av_cold int output_configure(AACContext *ac,
enum ChannelPosition che_pos[4][MAX_ELEM_ID], enum ChannelPosition che_pos[4][MAX_ELEM_ID],
enum ChannelPosition new_che_pos[4][MAX_ELEM_ID], enum ChannelPosition new_che_pos[4][MAX_ELEM_ID],
int channel_config, enum OCStatus oc_type) int channel_config, enum OCStatus oc_type)
{ {
AVCodecContext *avctx = ac->avctx; AVCodecContext *avctx = ac->avctx;
int i, type, channels = 0, ret; int i, type, channels = 0, ret;
...@@ -231,7 +230,7 @@ static av_cold int output_configure(AACContext *ac, ...@@ -231,7 +230,7 @@ static av_cold int output_configure(AACContext *ac,
return ret; return ret;
} }
memset(ac->tag_che_map, 0, 4 * MAX_ELEM_ID * sizeof(ac->che[0][0])); memset(ac->tag_che_map, 0, 4 * MAX_ELEM_ID * sizeof(ac->che[0][0]));
avctx->channel_layout = aac_channel_layout[channel_config - 1]; avctx->channel_layout = aac_channel_layout[channel_config - 1];
} else { } else {
...@@ -346,8 +345,8 @@ static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac, ...@@ -346,8 +345,8 @@ static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac,
* @return Returns error status. 0 - OK, !0 - error * @return Returns error status. 0 - OK, !0 - error
*/ */
static av_cold int set_default_channel_config(AVCodecContext *avctx, static av_cold int set_default_channel_config(AVCodecContext *avctx,
enum ChannelPosition new_che_pos[4][MAX_ELEM_ID], enum ChannelPosition new_che_pos[4][MAX_ELEM_ID],
int channel_config) int channel_config)
{ {
if (channel_config < 1 || channel_config > 7) { if (channel_config < 1 || channel_config > 7) {
av_log(avctx, AV_LOG_ERROR, "invalid default channel configuration (%d)\n", av_log(avctx, AV_LOG_ERROR, "invalid default channel configuration (%d)\n",
...@@ -1235,7 +1234,7 @@ static av_always_inline float flt16_trunc(float pf) ...@@ -1235,7 +1234,7 @@ static av_always_inline float flt16_trunc(float pf)
static av_always_inline void predict(PredictorState *ps, float *coef, static av_always_inline void predict(PredictorState *ps, float *coef,
float sf_scale, float inv_sf_scale, float sf_scale, float inv_sf_scale,
int output_enable) int output_enable)
{ {
const float a = 0.953125; // 61.0 / 64 const float a = 0.953125; // 61.0 / 64
const float alpha = 0.90625; // 29.0 / 32 const float alpha = 0.90625; // 29.0 / 32
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册