comparison alacenc.c @ 9427:4c1fb7723412 libavcodec

alacenc : cosmetics : remove misleading comment
author jai_menon
date Mon, 13 Apr 2009 15:11:40 +0000
parents 4cb7c65fc775
children 0dce4fe6e6f3
comparison
equal deleted inserted replaced
9426:638187aad3aa 9427:4c1fb7723412
330 330
331 static void write_compressed_frame(AlacEncodeContext *s) 331 static void write_compressed_frame(AlacEncodeContext *s)
332 { 332 {
333 int i, j; 333 int i, j;
334 334
335 /* only simple mid/side decorrelation supported as of now */
336 if(s->avctx->channels == 2) 335 if(s->avctx->channels == 2)
337 alac_stereo_decorrelation(s); 336 alac_stereo_decorrelation(s);
338 put_bits(&s->pbctx, 8, s->interlacing_shift); 337 put_bits(&s->pbctx, 8, s->interlacing_shift);
339 put_bits(&s->pbctx, 8, s->interlacing_leftweight); 338 put_bits(&s->pbctx, 8, s->interlacing_leftweight);
340 339