comparison flacenc.c @ 3481:f51065637305 libavcodec

cosmetic change to adjust alignment.
author jbr
date Sun, 16 Jul 2006 17:08:25 +0000
parents 9eb59c4a22d2
children c8c591fe26f8
comparison
equal deleted inserted replaced
3480:9eb59c4a22d2 3481:f51065637305
235 s->options.prediction_order_method = ((int[]){ ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST, 235 s->options.prediction_order_method = ((int[]){ ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST,
236 ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST, 236 ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST,
237 ORDER_METHOD_4LEVEL, ORDER_METHOD_LOG, ORDER_METHOD_4LEVEL, 237 ORDER_METHOD_4LEVEL, ORDER_METHOD_LOG, ORDER_METHOD_4LEVEL,
238 ORDER_METHOD_LOG, ORDER_METHOD_SEARCH, ORDER_METHOD_LOG, 238 ORDER_METHOD_LOG, ORDER_METHOD_SEARCH, ORDER_METHOD_LOG,
239 ORDER_METHOD_SEARCH})[level]; 239 ORDER_METHOD_SEARCH})[level];
240 s->options.min_partition_order = ((int[]){ 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})[level]; 240 s->options.min_partition_order = ((int[]){ 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})[level];
241 s->options.max_partition_order = ((int[]){ 2, 2, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8})[level]; 241 s->options.max_partition_order = ((int[]){ 2, 2, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8})[level];
242 242
243 /* set compression option overrides from AVCodecContext */ 243 /* set compression option overrides from AVCodecContext */
244 if(avctx->use_lpc >= 0) { 244 if(avctx->use_lpc >= 0) {
245 s->options.use_lpc = clip(avctx->use_lpc, 0, 11); 245 s->options.use_lpc = clip(avctx->use_lpc, 0, 11);
246 } 246 }