Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
abac6175
Commit
abac6175
authored
Nov 25, 2002
by
Fabrice Bellard
Browse files
renamed libav to libavformat
Originally committed as revision 1276 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
57fc2576
Changes
49
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile
Makefile
+9
-9
libavformat/.cvsignore
libavformat/.cvsignore
+0
-0
libavformat/Makefile
libavformat/Makefile
+0
-0
libavformat/allformats.c
libavformat/allformats.c
+0
-0
libavformat/asf.c
libavformat/asf.c
+0
-0
libavformat/au.c
libavformat/au.c
+0
-0
libavformat/audio.c
libavformat/audio.c
+0
-0
libavformat/avformat.h
libavformat/avformat.h
+0
-0
libavformat/avi.h
libavformat/avi.h
+0
-0
libavformat/avidec.c
libavformat/avidec.c
+0
-0
libavformat/avienc.c
libavformat/avienc.c
+0
-0
libavformat/avio.c
libavformat/avio.c
+0
-0
libavformat/avio.h
libavformat/avio.h
+0
-0
libavformat/aviobuf.c
libavformat/aviobuf.c
+0
-0
libavformat/barpainet.c
libavformat/barpainet.c
+0
-0
libavformat/barpainet.h
libavformat/barpainet.h
+0
-0
libavformat/beosaudio.cpp
libavformat/beosaudio.cpp
+0
-0
libavformat/crc.c
libavformat/crc.c
+0
-0
libavformat/cutils.c
libavformat/cutils.c
+0
-0
libavformat/dv.c
libavformat/dv.c
+0
-0
No files found.
Makefile
View file @
abac6175
...
...
@@ -6,7 +6,7 @@ include config.mak
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)
LDFLAGS
+=
-g
-d
FFSLDFLAGS
=
-Wl
,-bind_at_load
...
...
@@ -33,9 +33,9 @@ EXTRALIBS+=-lmedia -lbe
endif
ifeq
($(BUILD_SHARED),yes)
DEP_LIBS
=
libavcodec/libavcodec.so libav/libavformat.a
DEP_LIBS
=
libavcodec/libavcodec.so libav
format
/libavformat.a
else
DEP_LIBS
=
libavcodec/libavcodec.a libav/libavformat.a
DEP_LIBS
=
libavcodec/libavcodec.a libav
format
/libavformat.a
ifeq
($(CONFIG_MP3LAME),yes)
EXTRALIBS
+=
-lmp3lame
endif
...
...
@@ -60,10 +60,10 @@ all: lib $(PROG) $(VHOOK)
lib
:
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libav all
$(MAKE)
-C
libav
format
all
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)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
...
...
@@ -71,7 +71,7 @@ ffmpeg$(EXE): ffmpeg_g$(EXE)
ffserver$(EXE)
:
ffserver.o $(DEP_LIBS)
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
\
-o
$@
ffserver.o
-L
./libavcodec
-L
./libav
\
-o
$@
ffserver.o
-L
./libavcodec
-L
./libav
format
\
-lavformat
-lavcodec
-ldl
$(EXTRALIBS)
ffplay
:
ffmpeg$(EXE)
...
...
@@ -97,7 +97,7 @@ $(prefix)/lib/vhook:
installlib
:
$(MAKE)
-C
libavcodec installlib
$(MAKE)
-C
libav installlib
$(MAKE)
-C
libav
format
installlib
dep
:
depend
...
...
@@ -106,7 +106,7 @@ depend:
clean
:
$(CLEANVHOOK)
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libav clean
$(MAKE)
-C
libav
format
clean
$(MAKE)
-C
tests clean
rm
-f
*
.o
*
~ .depend gmon.out TAGS ffmpeg_g
$(EXE)
$(PROG)
...
...
@@ -118,7 +118,7 @@ distclean: clean
rm
-f
config.mak config.h
TAGS
:
etags
*
.[ch] libav/
*
.[ch] libavcodec/
*
.[ch]
etags
*
.[ch] libav
format
/
*
.[ch] libavcodec/
*
.[ch]
# 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
Prev
1
2
3
Next
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