Commit 5bcecb95 authored by jai_menon's avatar jai_menon

alacenc : use private compression_level value consistently.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20261 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6a82408f
...@@ -132,7 +132,7 @@ static void calc_predictor_params(AlacEncodeContext *s, int ch) ...@@ -132,7 +132,7 @@ static void calc_predictor_params(AlacEncodeContext *s, int ch)
int shift[MAX_LPC_ORDER]; int shift[MAX_LPC_ORDER];
int opt_order; int opt_order;
if (s->avctx->compression_level == 1) { if (s->compression_level == 1) {
s->lpc[ch].lpc_order = 6; s->lpc[ch].lpc_order = 6;
s->lpc[ch].lpc_quant = 6; s->lpc[ch].lpc_quant = 6;
s->lpc[ch].lpc_coeff[0] = 160; s->lpc[ch].lpc_coeff[0] = 160;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment