On Fri, Jun 7, 2024 at 9:27 PM Andreas Rheinhardt <andreas.rheinha...@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. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".