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
abac6175
Commit
abac6175
authored
Nov 25, 2002
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed libav to libavformat
Originally committed as revision 1276 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
57fc2576
Hide whitespace changes
Inline
Side-by-side
Showing
49 changed files
with
10 additions
and
10 deletions
+10
-10
Makefile
Makefile
+9
-9
.cvsignore
libavformat/.cvsignore
+0
-0
Makefile
libavformat/Makefile
+0
-0
allformats.c
libavformat/allformats.c
+0
-0
asf.c
libavformat/asf.c
+0
-0
au.c
libavformat/au.c
+0
-0
audio.c
libavformat/audio.c
+0
-0
avformat.h
libavformat/avformat.h
+0
-0
avi.h
libavformat/avi.h
+0
-0
avidec.c
libavformat/avidec.c
+0
-0
avienc.c
libavformat/avienc.c
+0
-0
avio.c
libavformat/avio.c
+0
-0
avio.h
libavformat/avio.h
+0
-0
aviobuf.c
libavformat/aviobuf.c
+0
-0
barpainet.c
libavformat/barpainet.c
+0
-0
barpainet.h
libavformat/barpainet.h
+0
-0
beosaudio.cpp
libavformat/beosaudio.cpp
+0
-0
crc.c
libavformat/crc.c
+0
-0
cutils.c
libavformat/cutils.c
+0
-0
dv.c
libavformat/dv.c
+0
-0
ffm.c
libavformat/ffm.c
+0
-0
file.c
libavformat/file.c
+0
-0
framehook.c
libavformat/framehook.c
+0
-0
framehook.h
libavformat/framehook.h
+0
-0
gif.c
libavformat/gif.c
+0
-0
grab.c
libavformat/grab.c
+0
-0
http.c
libavformat/http.c
+0
-0
img.c
libavformat/img.c
+0
-0
jpeg.c
libavformat/jpeg.c
+0
-0
mov.c
libavformat/mov.c
+0
-0
mpeg.c
libavformat/mpeg.c
+0
-0
mpegts.c
libavformat/mpegts.c
+0
-0
ogg.c
libavformat/ogg.c
+0
-0
raw.c
libavformat/raw.c
+0
-0
rm.c
libavformat/rm.c
+0
-0
rtp.c
libavformat/rtp.c
+0
-0
rtp.h
libavformat/rtp.h
+0
-0
rtpproto.c
libavformat/rtpproto.c
+0
-0
rtsp.c
libavformat/rtsp.c
+0
-0
rtsp.h
libavformat/rtsp.h
+0
-0
rtspcodes.h
libavformat/rtspcodes.h
+0
-0
strptime.c
libavformat/strptime.c
+0
-0
strptime.h
libavformat/strptime.h
+0
-0
swf.c
libavformat/swf.c
+0
-0
tcp.c
libavformat/tcp.c
+0
-0
udp.c
libavformat/udp.c
+0
-0
utils.c
libavformat/utils.c
+0
-0
wav.c
libavformat/wav.c
+0
-0
Makefile
vhook/Makefile
+1
-1
No files found.
Makefile
View file @
abac6175
...
@@ -6,7 +6,7 @@ include config.mak
...
@@ -6,7 +6,7 @@ include config.mak
VPATH
=
$(SRC_PATH)
VPATH
=
$(SRC_PATH)
CFLAGS
=
$(OPTFLAGS)
-Wall
-g
-I
.
-I
$(SRC_PATH)
-I
$(SRC_PATH)
/libavcodec
-I
$(SRC_PATH)
/libav
-D_FILE_OFFSET_BITS
=
64
-D_LARGEFILE_SOURCE
-D_GNU_SOURCE
CFLAGS
=
$(OPTFLAGS)
-Wall
-g
-I
.
-I
$(SRC_PATH)
-I
$(SRC_PATH)
/libavcodec
-I
$(SRC_PATH)
/libav
format
-D_FILE_OFFSET_BITS
=
64
-D_LARGEFILE_SOURCE
-D_GNU_SOURCE
ifeq
($(CONFIG_DARWIN),yes)
ifeq
($(CONFIG_DARWIN),yes)
LDFLAGS
+=
-g
-d
LDFLAGS
+=
-g
-d
FFSLDFLAGS
=
-Wl
,-bind_at_load
FFSLDFLAGS
=
-Wl
,-bind_at_load
...
@@ -33,9 +33,9 @@ EXTRALIBS+=-lmedia -lbe
...
@@ -33,9 +33,9 @@ EXTRALIBS+=-lmedia -lbe
endif
endif
ifeq
($(BUILD_SHARED),yes)
ifeq
($(BUILD_SHARED),yes)
DEP_LIBS
=
libavcodec/libavcodec.so libav/libavformat.a
DEP_LIBS
=
libavcodec/libavcodec.so libav
format
/libavformat.a
else
else
DEP_LIBS
=
libavcodec/libavcodec.a libav/libavformat.a
DEP_LIBS
=
libavcodec/libavcodec.a libav
format
/libavformat.a
ifeq
($(CONFIG_MP3LAME),yes)
ifeq
($(CONFIG_MP3LAME),yes)
EXTRALIBS
+=
-lmp3lame
EXTRALIBS
+=
-lmp3lame
endif
endif
...
@@ -60,10 +60,10 @@ all: lib $(PROG) $(VHOOK)
...
@@ -60,10 +60,10 @@ all: lib $(PROG) $(VHOOK)
lib
:
lib
:
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libav all
$(MAKE)
-C
libav
format
all
ffmpeg_g$(EXE)
:
ffmpeg.o $(DEP_LIBS)
ffmpeg_g$(EXE)
:
ffmpeg.o $(DEP_LIBS)
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
-L
./libavcodec
-L
./libav
\
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
-L
./libavcodec
-L
./libav
format
\
-lavformat
-lavcodec
$(EXTRALIBS)
-lavformat
-lavcodec
$(EXTRALIBS)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
...
@@ -71,7 +71,7 @@ ffmpeg$(EXE): ffmpeg_g$(EXE)
...
@@ -71,7 +71,7 @@ ffmpeg$(EXE): ffmpeg_g$(EXE)
ffserver$(EXE)
:
ffserver.o $(DEP_LIBS)
ffserver$(EXE)
:
ffserver.o $(DEP_LIBS)
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
\
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
\
-o
$@
ffserver.o
-L
./libavcodec
-L
./libav
\
-o
$@
ffserver.o
-L
./libavcodec
-L
./libav
format
\
-lavformat
-lavcodec
-ldl
$(EXTRALIBS)
-lavformat
-lavcodec
-ldl
$(EXTRALIBS)
ffplay
:
ffmpeg$(EXE)
ffplay
:
ffmpeg$(EXE)
...
@@ -97,7 +97,7 @@ $(prefix)/lib/vhook:
...
@@ -97,7 +97,7 @@ $(prefix)/lib/vhook:
installlib
:
installlib
:
$(MAKE)
-C
libavcodec installlib
$(MAKE)
-C
libavcodec installlib
$(MAKE)
-C
libav installlib
$(MAKE)
-C
libav
format
installlib
dep
:
depend
dep
:
depend
...
@@ -106,7 +106,7 @@ depend:
...
@@ -106,7 +106,7 @@ depend:
clean
:
$(CLEANVHOOK)
clean
:
$(CLEANVHOOK)
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libav clean
$(MAKE)
-C
libav
format
clean
$(MAKE)
-C
tests clean
$(MAKE)
-C
tests clean
rm
-f
*
.o
*
~ .depend gmon.out TAGS ffmpeg_g
$(EXE)
$(PROG)
rm
-f
*
.o
*
~ .depend gmon.out TAGS ffmpeg_g
$(EXE)
$(PROG)
...
@@ -118,7 +118,7 @@ distclean: clean
...
@@ -118,7 +118,7 @@ distclean: clean
rm
-f
config.mak config.h
rm
-f
config.mak config.h
TAGS
:
TAGS
:
etags
*
.[ch] libav/
*
.[ch] libavcodec/
*
.[ch]
etags
*
.[ch] libav
format
/
*
.[ch] libavcodec/
*
.[ch]
# regression tests
# regression tests
...
...
libav/.cvsignore
→
libav
format
/.cvsignore
View file @
abac6175
File moved
libav/Makefile
→
libav
format
/Makefile
View file @
abac6175
File moved
libav/allformats.c
→
libav
format
/allformats.c
View file @
abac6175
File moved
libav/asf.c
→
libav
format
/asf.c
View file @
abac6175
File moved
libav/au.c
→
libav
format
/au.c
View file @
abac6175
File moved
libav/audio.c
→
libav
format
/audio.c
View file @
abac6175
File moved
libav/avformat.h
→
libav
format
/avformat.h
View file @
abac6175
File moved
libav/avi.h
→
libav
format
/avi.h
View file @
abac6175
File moved
libav/avidec.c
→
libav
format
/avidec.c
View file @
abac6175
File moved
libav/avienc.c
→
libav
format
/avienc.c
View file @
abac6175
File moved
libav/avio.c
→
libav
format
/avio.c
View file @
abac6175
File moved
libav/avio.h
→
libav
format
/avio.h
View file @
abac6175
File moved
libav/aviobuf.c
→
libav
format
/aviobuf.c
View file @
abac6175
File moved
libav/barpainet.c
→
libav
format
/barpainet.c
View file @
abac6175
File moved
libav/barpainet.h
→
libav
format
/barpainet.h
View file @
abac6175
File moved
libav/beosaudio.cpp
→
libav
format
/beosaudio.cpp
View file @
abac6175
File moved
libav/crc.c
→
libav
format
/crc.c
View file @
abac6175
File moved
libav/cutils.c
→
libav
format
/cutils.c
View file @
abac6175
File moved
libav/dv.c
→
libav
format
/dv.c
View file @
abac6175
File moved
libav/ffm.c
→
libav
format
/ffm.c
View file @
abac6175
File moved
libav/file.c
→
libav
format
/file.c
View file @
abac6175
File moved
libav/framehook.c
→
libav
format
/framehook.c
View file @
abac6175
File moved
libav/framehook.h
→
libav
format
/framehook.h
View file @
abac6175
File moved
libav/gif.c
→
libav
format
/gif.c
View file @
abac6175
File moved
libav/grab.c
→
libav
format
/grab.c
View file @
abac6175
File moved
libav/http.c
→
libav
format
/http.c
View file @
abac6175
File moved
libav/img.c
→
libav
format
/img.c
View file @
abac6175
File moved
libav/jpeg.c
→
libav
format
/jpeg.c
View file @
abac6175
File moved
libav/mov.c
→
libav
format
/mov.c
View file @
abac6175
File moved
libav/mpeg.c
→
libav
format
/mpeg.c
View file @
abac6175
File moved
libav/mpegts.c
→
libav
format
/mpegts.c
View file @
abac6175
File moved
libav/ogg.c
→
libav
format
/ogg.c
View file @
abac6175
File moved
libav/raw.c
→
libav
format
/raw.c
View file @
abac6175
File moved
libav/rm.c
→
libav
format
/rm.c
View file @
abac6175
File moved
libav/rtp.c
→
libav
format
/rtp.c
View file @
abac6175
File moved
libav/rtp.h
→
libav
format
/rtp.h
View file @
abac6175
File moved
libav/rtpproto.c
→
libav
format
/rtpproto.c
View file @
abac6175
File moved
libav/rtsp.c
→
libav
format
/rtsp.c
View file @
abac6175
File moved
libav/rtsp.h
→
libav
format
/rtsp.h
View file @
abac6175
File moved
libav/rtspcodes.h
→
libav
format
/rtspcodes.h
View file @
abac6175
File moved
libav/strptime.c
→
libav
format
/strptime.c
View file @
abac6175
File moved
libav/strptime.h
→
libav
format
/strptime.h
View file @
abac6175
File moved
libav/swf.c
→
libav
format
/swf.c
View file @
abac6175
File moved
libav/tcp.c
→
libav
format
/tcp.c
View file @
abac6175
File moved
libav/udp.c
→
libav
format
/udp.c
View file @
abac6175
File moved
libav/utils.c
→
libav
format
/utils.c
View file @
abac6175
File moved
libav/wav.c
→
libav
format
/wav.c
View file @
abac6175
File moved
vhook/Makefile
View file @
abac6175
include
../config.mak
include
../config.mak
CFLAGS
=
-fPIC
$(OPTFLAGS)
-g
-Wall
-I
..
-I
../libav
-I
../libavcodec
-DHAVE_AV_CONFIG_H
CFLAGS
=
-fPIC
$(OPTFLAGS)
-g
-Wall
-I
..
-I
../libav
format
-I
../libavcodec
-DHAVE_AV_CONFIG_H
ifeq
($(CONFIG_DARWIN),yes)
ifeq
($(CONFIG_DARWIN),yes)
LDFLAGS
+=
-bundle
-flat_namespace
-undefined
suppress
LDFLAGS
+=
-bundle
-flat_namespace
-undefined
suppress
...
...
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