Luca Barbato <[email protected]> writes: > On 17/12/11 20:42, доналд овчаров wrote: >> + v_block_filter(s, s->current_picture.f.data[0], s->mb_width * 2, >> + s->mb_height * 2, s->linesize , 1); >> + v_block_filter(s, s->current_picture.f.data[1], s->mb_width , >> + s->mb_height , s->uvlinesize, 0); >> + v_block_filter(s, s->current_picture.f.data[2], s->mb_width , >> + s->mb_height , s->uvlinesize, 0); > > the "," could stay close to the left item, e.g. > >> + v_block_filter(s, s->current_picture.f.data[2], s->mb_width, >> + s->mb_height, s->uvlinesize, 0);
Definitely. Space before comma is just wrong. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
