mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-08 00:51:39 +00:00
* yet a bit more extended
* fixed busy loop test bug on mmx-only machine Originally committed as revision 613 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -19,7 +19,7 @@ test mpeg4 mpeg: vsynth1/0.pgm asynth1.sw
|
||||
libavtest: vsynth1/0.pgm asynth1.sw
|
||||
@$(SRC_PATH)/tests/regression.sh $@ $(LIBAV_REFFILE)
|
||||
|
||||
# video generation
|
||||
# video generation
|
||||
|
||||
vsynth1/0.pgm: videogen
|
||||
@mkdir -p vsynth1
|
||||
@@ -37,12 +37,19 @@ audiogen: audiogen.c
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||
|
||||
DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \
|
||||
$(SRC_PATH)/libavcodec/i386/dsputil_mmx_avg.h
|
||||
$(SRC_PATH)/libavcodec/i386/dsputil_mmx_avg.h \
|
||||
$(SRC_PATH)/libavcodec/i386/fdct_mmx.c \
|
||||
$(SRC_PATH)/libavcodec/i386/idct_mmx.c \
|
||||
$(SRC_PATH)/libavcodec/i386/motion_est_mmx.c \
|
||||
$(SRC_PATH)/libavcodec/i386/simple_idct_mmx.c \
|
||||
$(SRC_PATH)/libavcodec/dsputil.c \
|
||||
$(SRC_PATH)/libavcodec/dsputil.h \
|
||||
$(SRC_PATH)/libavcodec/simple_idct.c
|
||||
|
||||
dsptestpic: dsptest.c $(DSPDEPS)
|
||||
$(CC) -fPIC -DPIC -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ -o $@ $<
|
||||
$(CC) -fPIC -DPIC -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ -o $@ $< -lm
|
||||
dsptest: dsptest.c $(DSPDEPS)
|
||||
$(CC) -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ -o $@ $<
|
||||
$(CC) -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ -o $@ $< -lm
|
||||
|
||||
clean:
|
||||
rm -rf vsynth1
|
||||
|
||||
Reference in New Issue
Block a user