Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4300403e
Commit
4300403e
authored
Aug 15, 2001
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
suppressed nasm stuff
Originally committed as revision 108 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
daf8e955
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
Makefile
libavcodec/Makefile
+7
-8
No files found.
libavcodec/Makefile
View file @
4300403e
...
...
@@ -25,10 +25,9 @@ endif
# i386 mmx specific stuff
ifeq
($(TARGET_MMX),yes)
ASM_OBJS
+=
i386/fdct_mmx.o i386/sad_mmx.o
OBJS
+=
i386/fdctdata.o i386/cputest.o
\
OBJS
+=
i386/fdct_mmx.o i386/cputest.o
\
i386/dsputil_mmx.o i386/mpegvideo_mmx.o
\
i386/idct_mmx.o
i386/idct_mmx.o
i386/motion_est_mmx.o
endif
# armv4l specific stuff
...
...
@@ -40,7 +39,7 @@ endif
SRCS
=
$
(
OBJS:.o
=
.c
)
$
(
ASM_OBJS:.o
=
.s
)
LIB
=
libavcodec.a
TESTS
=
imgresample-test dct-test
TESTS
=
imgresample-test dct-test
motion-test
all
:
$(LIB)
tests
:
apiexample cpuid_test $(TESTS)
...
...
@@ -57,9 +56,6 @@ dsputil.o: dsputil.c dsputil.h
%.o
:
%.S
$(CC)
$(CFLAGS)
-c
-o
$@
$<
%.o
:
%.s
nasm
-f
elf
-o
$@
$<
# depend only used by mplayer now
dep
:
depend
...
...
@@ -89,10 +85,13 @@ cpuid_test: i386/cputest.c
imgresample-test
:
imgresample.c
$(CC)
$(CFLAGS)
-DTEST
-o
$@
$^
dct-test
:
dct-test.o jfdctfst.o i386/fdct_mmx.o
i386/fdctdata.o
\
dct-test
:
dct-test.o jfdctfst.o i386/fdct_mmx.o
\
fdctref.o jrevdct.o i386/idct_mmx.o
$(CC)
-o
$@
$^
motion-test
:
motion_test.o $(LIB)
$(CC)
-o
$@
$^
#
# include dependency files if they exist
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment