You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	checkasm: fix dependencies for vf_blend tests
They will now compile if avcodec is disabled Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
		| @@ -1,6 +1,5 @@ | ||||
| # libavcodec tests | ||||
| AVCODECOBJS-$(CONFIG_ALAC_DECODER) += alacdsp.o | ||||
| AVCODECOBJS-$(CONFIG_BLEND_FILTER) += vf_blend.o | ||||
| AVCODECOBJS-$(CONFIG_BSWAPDSP) += bswapdsp.o | ||||
| AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o | ||||
| AVCODECOBJS-$(CONFIG_FLACDSP)  += flacdsp.o | ||||
| @@ -15,6 +14,11 @@ AVCODECOBJS-$(CONFIG_VIDEODSP) += videodsp.o | ||||
|  | ||||
| CHECKASMOBJS-$(CONFIG_AVCODEC) += $(AVCODECOBJS-yes) | ||||
|  | ||||
| # libavfilter tests | ||||
| AVFILTEROBJS-$(CONFIG_BLEND_FILTER) += vf_blend.o | ||||
|  | ||||
| CHECKASMOBJS-$(CONFIG_AVFILTER) += $(AVFILTEROBJS-yes) | ||||
|  | ||||
|  | ||||
| -include $(SRC_PATH)/tests/checkasm/$(ARCH)/Makefile | ||||
|  | ||||
|   | ||||
| @@ -68,9 +68,6 @@ static const struct { | ||||
|     #if CONFIG_ALAC_DECODER | ||||
|         { "alacdsp", checkasm_check_alacdsp }, | ||||
|     #endif | ||||
|     #if CONFIG_BLEND_FILTER | ||||
|         { "vf_blend", checkasm_check_blend }, | ||||
|     #endif | ||||
|     #if CONFIG_BSWAPDSP | ||||
|         { "bswapdsp", checkasm_check_bswapdsp }, | ||||
|     #endif | ||||
| @@ -104,6 +101,11 @@ static const struct { | ||||
|     #if CONFIG_VIDEODSP | ||||
|         { "videodsp", checkasm_check_videodsp }, | ||||
|     #endif | ||||
| #endif | ||||
| #if CONFIG_AVFILTER | ||||
|     #if CONFIG_BLEND_FILTER | ||||
|         { "vf_blend", checkasm_check_blend }, | ||||
|     #endif | ||||
| #endif | ||||
|     { NULL } | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user