2011/12/3 Måns Rullgård <[email protected]> > "[Tsvetelina Borisova" <[email protected]> writes: > > > From: Tsvetelina Borisova <mars15@mars15-TOSHIBA-NB250.(none)> > > > > --- > > libavcodec/4xm.c | 654 ++++++++++++++++++----------------- > > libavutil/pixdesc.c | 959 > ++++++++++++++++++++++++++------------------------- > > Mixing changes to those files in the same commit is weird. > > > > > diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c > > index 21bde52..83843a5 100644 > > --- a/libavcodec/4xm.c > > +++ b/libavcodec/4xm.c > > @@ -38,74 +38,74 @@ > > > > #define CFRAME_BUFFER_COUNT 100 > > > > -static const uint8_t block_type_tab[2][4][8][2]={ > > +static const uint8_t block_type_tab[2][4][8][2] = { > > { > > { //{8,4,2}x{8,4,2} > > - { 0,1}, { 2,2}, { 6,3}, {14,4}, {30,5}, {31,5}, { 0,0} > > + { 0, 1 }, { 2, 2 }, { 6, 3 }, { 14, 4 }, { 30, 5 }, { 31, 5 }, { 0, > 0 } > > },{ //{8,4}x1 > > - { 0,1}, { 0,0}, { 2,2}, { 6,3}, {14,4}, {15,4}, { 0,0} > > + { 0 ,1 }, { 0, 0 }, { 2, 2 }, { 6, 3 }, { 14, 4 }, { 15, 4 }, { 0, > 0 } > > },{ //1x{8,4} > > - { 0,1}, { 2,2}, { 0,0}, { 6,3}, {14,4}, {15,4}, { 0,0} > > + { 0, 1 }, { 2, 2 }, { 0, 0 }, { 6, 3 }, { 14, 4 }, { 15, 4 }, { 0, > 0 } > > },{ //1x2, 2x1 > > - { 0,1}, { 0,0}, { 0,0}, { 2,2}, { 6,3}, {14,4}, {15,4} > > + { 0, 1 }, { 0, 0 }, { 0, 0 }, { 2, 2 }, { 6, 3 }, { 14, 4 }, { 15, > 4 } > > } > > This was nicely aligned before. Now it is not. > > Remainder not reviewed. > > How do you want it aligned? Because i didn't find how to align polynomial array. Choose way: 1. { 1, 2, 2, }, {} 2. {1, 2, 2,},{} 3. or ?
> -- > Måns Rullgård > [email protected] > _______________________________________________ > libav-devel mailing list > [email protected] > https://lists.libav.org/mailman/listinfo/libav-devel >
_______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
