[FFmpeg-devel] [PATCH] change all get_bits(.., 1) to get_bits1

Alex Beregszaszi alex
Thu Aug 9 02:18:29 CEST 2007


Hi,

> [...]
> > @@ -2407,9 +2407,9 @@
> >              if (v->pq == 1)
> >                  dcdiff = (dcdiff<<2) + get_bits(gb, 2) - 3;
> >              else if (v->pq == 2)
> > -                dcdiff = (dcdiff<<1) + get_bits(gb, 1) - 1;
> > +                dcdiff = (dcdiff<<1) + get_bits1(gb) - 1;
> 
> please maintain the alignment of - X

Applied this there and the three other occurences below.

> iam ok with the remainder

Committed everything except dca.

--
Alex






More information about the ffmpeg-devel mailing list