Browse code

partially rename FFmpeg to Libav

update mailing list references and irc channels in configure

Janne Grunau authored on 2011/03/15 05:39:58
Showing 6 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 This file contains the names of some of the people who have contributed to
2
-FFmpeg. The names are sorted alphabetically by last name.  As this file is
2
+Libav/FFmpeg. The names are sorted alphabetically by last name.  As this file is
3 3
 currently quite outdated and git serves as a much better tool for determining
4 4
 authorship, it remains here for historical reasons only.
5 5
 
... ...
@@ -25,7 +25,7 @@ DOXYFILE_ENCODING      = UTF-8
25 25
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
26 26
 # by quotes) that should identify the project.
27 27
 
28
-PROJECT_NAME           = FFmpeg
28
+PROJECT_NAME           = Libav
29 29
 
30 30
 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
31 31
 # This could be handy for archiving the generated documentation or
... ...
@@ -2,10 +2,10 @@
2 2
 1) Type './configure' to create the configuration. A list of configure
3 3
 options is printed by running 'configure --help'.
4 4
 
5
-'configure' can be launched from a directory different from the FFmpeg
5
+'configure' can be launched from a directory different from the Libav
6 6
 sources to build the objects out of tree. To do this, use an absolute
7
-path when launching 'configure', e.g. '/ffmpegdir/ffmpeg/configure'.
7
+path when launching 'configure', e.g. '/libavdir/libav/configure'.
8 8
 
9
-2) Then type 'make' to build FFmpeg. GNU Make 3.81 or later is required.
9
+2) Then type 'make' to build Libav. GNU Make 3.81 or later is required.
10 10
 
11 11
 3) Type 'make install' to install all binaries and libraries you built.
... ...
@@ -1,17 +1,17 @@
1
-FFmpeg:
1
+Libav:
2 2
 -------
3 3
 
4
-Most files in FFmpeg are under the GNU Lesser General Public License version 2.1
4
+Most files in Libav are under the GNU Lesser General Public License version 2.1
5 5
 or later (LGPL v2.1+). Read the file COPYING.LGPLv2.1 for details. Some other
6 6
 files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to
7
-FFmpeg.
7
+Libav.
8 8
 
9
-Some optional parts of FFmpeg are licensed under the GNU General Public License
9
+Some optional parts of Libav are licensed under the GNU General Public License
10 10
 version 2 or later (GPL v2+). See the file COPYING.GPLv2 for details. None of
11 11
 these parts are used by default, you have to explicitly pass --enable-gpl to
12
-configure to activate them. In this case, FFmpeg's license changes to GPL v2+.
12
+configure to activate them. In this case, Libav's license changes to GPL v2+.
13 13
 
14
-Specifically, the GPL parts of FFmpeg are
14
+Specifically, the GPL parts of Libav are
15 15
 
16 16
 - libpostproc
17 17
 - optional x86 optimizations in the files
... ...
@@ -33,14 +33,14 @@ external libraries:
33 33
 -------------------
34 34
 
35 35
 Some external libraries, e.g. libx264, are under GPL and can be used in
36
-conjunction with FFmpeg. They require --enable-gpl to be passed to configure
36
+conjunction with Libav. They require --enable-gpl to be passed to configure
37 37
 as well.
38 38
 
39 39
 The OpenCORE external libraries are under the Apache License 2.0. That license
40 40
 is incompatible with the LGPL v2.1 and the GPL v2, but not with version 3 of
41
-those licenses. So to combine the OpenCORE libraries with FFmpeg, the license
41
+those licenses. So to combine the OpenCORE libraries with Libav, the license
42 42
 version needs to be upgraded by passing --enable-version3 to configure.
43 43
 
44
-The nonfree external library libfaac can be hooked up in FFmpeg. You need to
44
+The nonfree external library libfaac can be hooked up in Libav. You need to
45 45
 pass --enable-nonfree to configure to enable it. Employ this option with care
46
-as FFmpeg then becomes nonfree and unredistributable.
46
+as Libav then becomes nonfree and unredistributable.
... ...
@@ -1,4 +1,4 @@
1
-FFmpeg README
1
+Libav README
2 2
 -------------
3 3
 
4 4
 1) Documentation
... ...
@@ -1,6 +1,6 @@
1 1
 #!/bin/sh
2 2
 #
3
-# FFmpeg configure script
3
+# Libav configure script
4 4
 #
5 5
 # Copyright (c) 2000-2002 Fabrice Bellard
6 6
 # Copyright (c) 2005-2008 Diego Biurrun
... ...
@@ -44,9 +44,9 @@ if test "$E1" != 0 || test "$E2" = 0; then
44 44
     echo "No compatible shell script interpreter found."
45 45
     echo "This configure script requires a POSIX-compatible shell"
46 46
     echo "such as bash or ksh."
47
-    echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
47
+    echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
48 48
     echo "Instead, install a working POSIX-compatible shell."
49
-    echo "Disabling this configure test will create a broken FFmpeg."
49
+    echo "Disabling this configure test will create a broken Libav."
50 50
     if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51 51
         echo "This bash version ($BASH_VERSION) is broken on your platform."
52 52
         echo "Upgrade to a later version if available."
... ...
@@ -237,7 +237,7 @@ Advanced options (experts only):
237 237
   --enable-sram            allow use of on-chip SRAM
238 238
   --disable-symver         disable symbol versioning
239 239
 
240
-Developer options (useful when working on FFmpeg itself):
240
+Developer options (useful when working on Libav itself):
241 241
   --disable-debug          disable debugging symbols
242 242
   --enable-debug=LEVEL     set the debug level [$debuglevel]
243 243
   --disable-optimizations  disable compiler optimizations
... ...
@@ -279,7 +279,7 @@ die(){
279 279
 
280 280
 If you think configure made a mistake, make sure you are using the latest
281 281
 version from Git.  If the latest version fails, report the problem to the
282
-ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
282
+libav-user@libav.org mailing list or IRC #libav on irc.freenode.net.
283 283
 EOF
284 284
     if disabled logging; then
285 285
         cat <<EOF
... ...
@@ -2361,7 +2361,7 @@ case $target_os in
2361 2361
     openbsd)
2362 2362
         enable malloc_aligned
2363 2363
         # On OpenBSD 4.5. the compiler does not use PIC unless
2364
-        # explicitly using -fPIC. FFmpeg builds fine without PIC,
2364
+        # explicitly using -fPIC. Libav builds fine without PIC,
2365 2365
         # however the generated executable will not do anything
2366 2366
         # (simply quits with exit-code 1, no crash, no output).
2367 2367
         # Thus explicitly enable PIC here.
... ...
@@ -3414,10 +3414,10 @@ Cflags: -I\${includedir}
3414 3414
 EOF
3415 3415
 }
3416 3416
 
3417
-pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
3418
-pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs"
3419
-pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
3420
-pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
3421
-pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
3422
-pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
3423
-pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
3417
+pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION"
3418
+pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs"
3419
+pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
3420
+pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
3421
+pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
3422
+pkgconfig_generate libpostproc "Libav post processing library" "$LIBPOSTPROC_VERSION"
3423
+pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"