[FFmpeg-devel] [PATCH 1/4] tests/checkasm: cosmetics, one object per line in Makefile
Ramiro Polla
ramiro.polla at gmail.com
Fri Jun 7 22:47:10 EEST 2024
On Fri, Jun 7, 2024 at 9:27 PM Andreas Rheinhardt
<andreas.rheinhardt at outlook.com> wrote:
>
> Ramiro Polla:
> > # swscale tests
> > -SWSCALEOBJS += sw_gbrp.o sw_rgb.o sw_scale.o
> > +SWSCALEOBJS += sw_gbrp.o \
> > + sw_rgb.o \
> > + sw_scale.o \
> >
> > CHECKASMOBJS-$(CONFIG_SWSCALE) += $(SWSCALEOBJS)
>
> We typically only use a new line of the old line is full.
There's currently a mix of everything in the Makefiles. One object per
line, multiple objects per line, mix of one or multiple objects per
line in the same statement, aligned and unaligned += between lines,
aligned and unaligned \ at the end of the lines, some have \ at the
last line, some don't...
I personally prefer += one object per line and no \ at the end of the
line everywhere. It makes the code look consistent and the patches are
cleaner and easier to understand. But I don't maintain this, so I have
no strong opinion in this case.
This patch was meant to simplify the next commit (checkasm: add tests
for {lum,chr}ConvertRange), but I can drop it if you prefer.
More information about the ffmpeg-devel
mailing list