comparison alsdec.c @ 10861:61bf5a551856 libavcodec

Reindent after last commit.
author thilo.borgmann
date Tue, 12 Jan 2010 20:37:56 +0000
parents c9fb5b89e47a
children 327019a2d156
comparison
equal deleted inserted replaced
10860:c9fb5b89e47a 10861:61bf5a551856
1422 ctx->lpc_cof_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) * 1422 ctx->lpc_cof_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) *
1423 num_buffers * sconf->max_order); 1423 num_buffers * sconf->max_order);
1424 ctx->lpc_cof_reversed_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) * 1424 ctx->lpc_cof_reversed_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) *
1425 sconf->max_order); 1425 sconf->max_order);
1426 1426
1427 if (!ctx->quant_cof || !ctx->lpc_cof || 1427 if (!ctx->quant_cof || !ctx->lpc_cof ||
1428 !ctx->quant_cof_buffer || !ctx->lpc_cof_buffer || 1428 !ctx->quant_cof_buffer || !ctx->lpc_cof_buffer ||
1429 !ctx->lpc_cof_reversed_buffer) { 1429 !ctx->lpc_cof_reversed_buffer) {
1430 av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n"); 1430 av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
1431 return AVERROR(ENOMEM); 1431 return AVERROR(ENOMEM);
1432 } 1432 }
1433 1433