Commit Graph

1003 Commits

Author SHA1 Message Date
Måns Rullgård f436a23e59 fix versions in .pc files
Originally committed as revision 12264 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-27 09:32:09 +00:00
Måns Rullgård a6601d69bb fix libavfilter version extraction
Originally committed as revision 12260 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-27 09:25:38 +00:00
Michael Niedermayer b2eb2ff098 Make gcc ignore the distinction between +0.0 and -0.0, this allows it to
change x+0.0 to x. Though it alone does not allow gcc to remove x*0.0,
that would also require -ffinite-math-only.

Originally committed as revision 12252 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 22:01:11 +00:00
Måns Rullgård f65c9da140 print enabled things in columns
Originally committed as revision 12251 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 21:50:06 +00:00
Vitor Sessak 3cde40aaa4 10l, alphabetic ordering
Originally committed as revision 12250 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 21:34:13 +00:00
Vitor Sessak f7679c54dd Build system changes for libavfilter addition. Add --enable-avfilter configure option.
Patch by myself, Bobby Bingham and Víctor Paesa.

Originally committed as revision 12249 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 21:32:56 +00:00
Måns Rullgård 147e769207 simplify version number extraction
Originally committed as revision 12247 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 21:18:55 +00:00
Måns Rullgård 800c289a66 less preprocessor magic in version number macros
Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 20:37:59 +00:00
Michael Niedermayer 11fdbc4430 25% faster floating point AAN IDCT.
Other float code likely benefits as well ...

Originally committed as revision 12245 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 20:21:49 +00:00
Peter Ross 269820f141 Disable vhook on Interix, patch by Pete Ross, pross xvid org.
Originally committed as revision 12226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26 09:14:55 +00:00
Måns Rullgård 76a448ed4f Install headers in $prefix/include/$libname
Install each library's headers in $prefix/include/$libname.
The installed headers use #include "lib*/*.h"; applications
are expected to do the same.

Specify only $prefix/include in .pc files.

Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25 09:22:11 +00:00
Diego Biurrun 18ee626cec Add -lm to x264 check, it is needed on most systems.
taken from the DOS/DJGPP port by Michael Kostylev, mik niipt ru

Originally committed as revision 12178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-22 17:15:24 +00:00
Måns Rullgård e97ac1e6f5 Clean up lib* version definitions
Updating version numbers now requires changing only one place.

Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19 22:50:28 +00:00
Måns Rullgård 719c8e00ef prettify lib* version number extraction
Originally committed as revision 12128 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-17 00:00:10 +00:00
Måns Rullgård 73ef89807e prettify encoder/decoder/muxer/... list extraction
Originally committed as revision 12127 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-17 00:00:06 +00:00
Mike Frysinger 63da080387 The Blackfin toolchains will automatically select FDPIC according to the
toolchain/tuple, so there is no need (and indeed this is unwanted)
to force -mfdpic into the compile/linker flags.
patch by Mike Frysinger, vapier.adi a gmail d com

Originally committed as revision 12122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16 14:21:53 +00:00
Måns Rullgård b147ec08c3 do not run ldconfig after installing shared libraries
Originally committed as revision 12121 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16 14:13:23 +00:00
Luca Abeni f8cda19ee6 Include poll.h instead of sys/poll.h
Originally committed as revision 11924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13 12:51:14 +00:00
Diego Biurrun 6c6007d6a3 Do not use ranges with tr, the results are locale-dependent.
Suggested by Rich Felker.

Originally committed as revision 11914 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-11 23:17:06 +00:00
Michael Niedermayer 652a5bf69d Warn if a comparison is always true or always false due to the
limited range of the data type.
The only new warning this causes (if i didnt miss one) is:
udp.c:272: warning: comparison of unsigned expression < 0 is always false
which is a real bug

Originally committed as revision 11839 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03 22:31:25 +00:00
Michael Niedermayer 9aceb3cfbc Make string constants const. Why is this not default?
Originally committed as revision 11835 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03 21:33:26 +00:00
Diego Biurrun 1bc0a44d79 Remove -Werror= CFLAGS that do not have the desired effect.
Originally committed as revision 11811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-02 15:46:52 +00:00
Michael Niedermayer aa819b9b7d Mixing declarations and statements is an error, so is any construct
depending on sizeof(void) (like void_ptr++)

Originally committed as revision 11798 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01 18:45:26 +00:00
Michael Niedermayer f49299967b Warn about casts which remove const.
Feel free to flame me if you disagree that such code is wrong.

Originally committed as revision 11699 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01 01:31:49 +00:00
Diego Biurrun d6773f563d Pass argc and argv to the main function of the SDL tests.
This appears to be required on Windows and does no harm on Linux.
closes issue 344, patch by jdm

Originally committed as revision 11662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-29 09:33:30 +00:00
Diego Biurrun afc9aee2b4 Add -pthread to extralibs and not to ldflags so that the dependency gets
reflected in the pkg-config files.
noticed by j .at. v2v .dot. cc

Originally committed as revision 11618 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-26 13:31:50 +00:00
Diego Biurrun 3fe142e255 Add a --enable-nonfree command line parameter similar to --enable-gpl.
Required to enable nonfree libraries that make FFmpeg unredistributable.

Originally committed as revision 11617 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-26 13:24:32 +00:00
Diego Biurrun 64e13d6914 Do not group libamr_nb and libamr_wb together as libamr.
Also fixes --enable-libamr being recognized as configure parameter.

Originally committed as revision 11616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-26 12:46:46 +00:00
Michael Kostylev 094c09bb4a Add system-specific network link flags to inet_aton test. This should fix
the check on platforms that require those flags.
patch by Michael Kostylev, mik niipt ru

Originally committed as revision 11553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-18 01:47:34 +00:00
KO Myung-Hun 1ca5d97fc8 Use check_lib2 instead of check_lib in SDL test. This is helpful in
combination with different calling/naming conventions as used in the
OS/2 port of SDL.
patch by Myung-Hun, komh a chollian d net

Originally committed as revision 11545 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-16 23:00:18 +00:00
Igor Mozolevsky 800a5a1905 pentium4m is a valid CPU name, add it to the list.
patch by Igor Mozolevsky, igor hybrid-lab.co uk

Originally committed as revision 11538 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-16 09:09:40 +00:00
Diego Biurrun cf1392e9f3 Move "Creating config.mak and config.h..." message down to the point where
those two files are actually created.

Originally committed as revision 11537 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-16 09:08:19 +00:00
Måns Rullgård e5d8ccd727 refer users to ffmpeg-user list in case of errors
Originally committed as revision 11517 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-12 12:34:55 +00:00
Alessandro Sappia 0b4a18218e Adding support for libdc1394 v.2, patch by Alessandro Sappia a dot sappia at ngi dot it
Originally committed as revision 11501 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-11 01:59:05 +00:00
Roberto Togni ca5323af4b Move printing of the license status at the end of configure output, so
that users won't miss it

Originally committed as revision 11450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-07 21:37:18 +00:00
Aurelien Jacobs 3abe5fbdc4 improve CRC API
- don't export any global var
 - provide either generated or hardcoded tables

Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04 23:09:58 +00:00
Luca Abeni 8eb793c459 Split the RTP demuxing functions out of rtp.c, to simplify the RTP muxer's dependencies
Originally committed as revision 11406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04 19:33:50 +00:00
Luca Abeni 95c2184270 Rationalize some dependencies between rtsp and rtp
Originally committed as revision 11385 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-03 12:49:12 +00:00
Dave Yeo 72be9e73ae Add portable way to check for the existence of definitions and
apply it to socklen_t.
patch by Dave Yeo, daveryeo telus net

Originally committed as revision 11366 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-01 22:54:35 +00:00
Michael Kostylev a33cab3a9a Check for the presence of llrint(), lrint(), round() and roundf()
and provide simple replacements if they are unavailable.
patch by Michael Kostylev, mik niipt ru

Originally committed as revision 11326 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-27 01:53:02 +00:00
Michael Kostylev 81644c2ee0 Check for the presence of sys/select.h and conditionally #include it.
patch by Michael Kostylev, mik niipt ru

Originally committed as revision 11324 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-27 01:38:50 +00:00
Michael Kostylev 4f365f37b5 djgpp port, first part
patch by Michael Kostylev, mik niipt ru

Originally committed as revision 11313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-24 12:49:27 +00:00
Diego Biurrun fe9bb34766 dv1394 depends on dv_demuxer, fixes linking with demuxers disabled.
patch by Aurel

Originally committed as revision 11258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-17 19:30:04 +00:00
Diego Biurrun 08c015c075 Remove unnecessary system include path from pkg-config files.
Originally committed as revision 11247 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-17 09:16:40 +00:00
Måns Rullgård 569cb218f8 Revert r11202: do not create copy relocations when linking to shared libs
This caused more problems than it solved and is no longer required.

Originally committed as revision 11210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-12 21:51:52 +00:00
Måns Rullgård e11910120a do not create copy relocations when linking to shared libs
Originally committed as revision 11202 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-11 20:02:09 +00:00
Diego Biurrun c552605cae Add --list-indevs and --list-outdevs command line options.
Originally committed as revision 11179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-06 17:53:46 +00:00
Diego Biurrun 10d46dd0c1 Add --disable-devices to --help output.
Originally committed as revision 11178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-06 17:52:50 +00:00
Diego Biurrun 7dd2862b48 Add input and output devices to configure output.
Originally committed as revision 11177 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-06 17:51:59 +00:00
Diego Biurrun 8fb1cb5825 Remove unnecessary quotes.
Originally committed as revision 11176 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-06 17:34:31 +00:00
Dave Yeo d22e844250 OS/2 support restored in cleaner form.
patch by Dave Yeo, daveryeo telus net

Originally committed as revision 11172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-05 23:15:24 +00:00
Måns Rullgård c2fd6530af use -Bsymbolic linker flag if supported
Originally committed as revision 11164 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-04 20:01:41 +00:00
Panagiotis Issaris 9aa8ed9d23 Add a --disable-devices flag which disables all muxers and demuxers of
libavdevice at once.

Originally committed as revision 11158 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-03 13:02:26 +00:00
Diego Biurrun 52a9cf3435 Fix out of tree builds after introduction of libavdevice.
Originally committed as revision 11084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-23 12:02:41 +00:00
Diego Biurrun 7483e694f3 cosmetics: Consistently indent with 4 spaces, break some long lists into single
lines, align some columns.

Originally committed as revision 11081 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-23 11:09:28 +00:00
Luca Abeni c4035e5d3f Fix the creation of alldevices.c (create it without any rename).
This also requires some changes to configure

Originally committed as revision 11080 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-23 08:07:23 +00:00
Luca Abeni c721d803cb Introduce libavdevice
Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-22 16:10:02 +00:00
Diego Biurrun e5af4a113b main() --> main(void)
Originally committed as revision 11069 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-20 11:18:52 +00:00
Diego Biurrun db817cf35a whitespace consistency cosmetics
Originally committed as revision 11068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-20 11:18:24 +00:00
Baptiste Coudurier 8361b1bea8 remove now useless libogg support
Originally committed as revision 11004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-12 10:26:33 +00:00
Aurelien Jacobs 543b3965f1 fix libogg muxer dependency checking
Originally committed as revision 10959 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-08 13:14:05 +00:00
Diego Biurrun 3837d107b7 Keep -lvorbis in libvorbis linker flags even when only used for encoding.
Some libvorbis versions on some platforms (macports) fail to compile otherwise.

Originally committed as revision 10932 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-06 00:26:32 +00:00
Diego Biurrun f9def9ccc6 Remove libvorbis Vorbis decoding support. Our native decoder is complete
and has no known bugs, any remaining issues will hopefully be uncovered now.

Originally committed as revision 10924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-04 12:55:32 +00:00
Ramiro Polla 8138b9db26 List enabled code in configure output
Originally committed as revision 10921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-04 02:20:12 +00:00
Ramiro Polla bf0c4afab2 Speed up show_list
Originally committed as revision 10920 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-04 02:15:53 +00:00
Diego Biurrun d2bbb2f743 Rename --disable-opts option to --disable-optimizations in order to be less
ambiguous, opts sounds more like options than optimizations.

Originally committed as revision 10855 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-24 19:19:02 +00:00
Diego Biurrun 8400d6b8ea Rename optimize variable to the slightly more meaningful optimizations.
Originally committed as revision 10854 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-24 19:17:15 +00:00
Ramiro Polla c3cf56140e Install MSVC import libraries without version numbering in the filename.
Originally committed as revision 10814 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-19 19:06:32 +00:00
Ramiro Polla c5f1446678 Append BUILDSUF directly to NAME instead of prepending it to (S)LIBSUF.
Makes non-posix systems shared library names more correct,
such as avcodec-buildsuf-51.dll instead of avcodec-51-buildsuf.dll

Originally committed as revision 10813 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-19 18:03:05 +00:00
Diego Biurrun abc4e5727e Simplify one variable setting.
Originally committed as revision 10776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-18 10:03:16 +00:00
Diego Biurrun 24743a767f Rename LIB to LIBNAME for consistency.
Originally committed as revision 10774 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-18 09:34:49 +00:00
Diego Biurrun 9c05103fe3 Add multiple inclusion guards to config.h.
Originally committed as revision 10772 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17 22:38:37 +00:00
Diego Biurrun 0e872a4805 Add SLIB_UNINSTALL_EXTRA_CMD for MinGW.
based on a patch by Dave Yeo, daveryeo telus net

Originally committed as revision 10768 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17 13:52:46 +00:00
Dave Yeo 5b5d0491b5 Add SLIB_UNINSTALL_EXTRA_COMMAND to uninstall the things installed via
SLIB_INSTALL_EXTRA_COMMAND.
patch by Dave Yeo, daveryeo telus net

Originally committed as revision 10767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17 13:48:47 +00:00
Diego Biurrun 7f3c02fc21 comment grammar fix
Originally committed as revision 10759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-16 23:15:50 +00:00
Ramiro Polla 85aec3bd48 Remove gcc import libraries from Win32 builds.
They weren't even installed, and [1] suggests linking directly to the dll.
[1] http://sourceware.org/binutils/docs-2.18/ld/WIN32.html

Originally committed as revision 10740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-15 14:02:01 +00:00
Ramiro Polla 6ad423489e ffserver needs ffm_muxer specifically, and rtsp_demuxer for rtsp_parse_line()
Originally committed as revision 10718 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-12 16:42:59 +00:00
Diego Biurrun 35d6cebde8 Use single quotes to get rid of a bunch of backslash escapes.
Originally committed as revision 10717 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-12 13:12:35 +00:00
Diego Biurrun 5645c83802 Consistently use $(FOO) instead of ${FOO} in Makefile variables.
Originally committed as revision 10716 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-12 12:30:53 +00:00
Måns Rullgård 6b3246488d use pr -n -t instead of non-standard cat -n
Originally committed as revision 10677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-06 17:09:30 +00:00
Måns Rullgård fdf885983c fix -lm check
Originally committed as revision 10620 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-29 20:25:06 +00:00
Måns Rullgård 6b19786b11 set -mcpu for ARM
Originally committed as revision 10595 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-26 19:57:56 +00:00
Ramiro Polla 53b7336500 Fix avisynth compilation after allformats.h was removed
Originally committed as revision 10594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-26 18:37:20 +00:00
Ramiro Polla ea10ddde96 Let the dependency checker deal with winsock2's extralibs.
Originally committed as revision 10593 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-26 16:57:19 +00:00
Ramiro Polla a98bb16de2 Organize header files and system functions checks
Originally committed as revision 10566 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-24 15:52:06 +00:00
Måns Rullgård 940f335a3c create and use check_asm() function
Originally committed as revision 10558 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-23 21:52:09 +00:00
Diego Biurrun 78eb65317e cosmetics: Move LDCONFIG variable to a more sensible place in config.mak.
Originally committed as revision 10557 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-23 21:37:16 +00:00
Diego Biurrun 8b03def65f Move VIS CFLAGS settings into configure.
Originally committed as revision 10555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-23 21:06:08 +00:00
Diego Biurrun bd9d34a0c9 Add a proper test for VIS instruction support.
some help by Jan Knutar, jknutar nic fi

Originally committed as revision 10553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-23 21:01:00 +00:00
Ramiro Polla c2675d4a69 Proper check for --help and -h parameters
Originally committed as revision 10543 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-21 23:30:57 +00:00
Ramiro Polla 06eab4bae1 Let the dependency checker decide about x11_grab_device_demuxer
Originally committed as revision 10542 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-21 20:01:43 +00:00
Ramiro Polla 3ae3b72123 Replace one-lined if;elses to && ||
Originally committed as revision 10540 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-21 16:42:54 +00:00
Ramiro Polla 4ec45764a0 Add extralibs to the dependency checker
Originally committed as revision 10532 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-18 19:07:52 +00:00
Ramiro Polla 8a2b9418bc gpl for the X11 grabber has already been checked for
Originally committed as revision 10531 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-18 18:58:02 +00:00
Ramiro Polla 497237c700 Use enable and disable macros where appropriate
Originally committed as revision 10530 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-18 18:46:26 +00:00
Ramiro Polla 13ef78254d Properly check for -lm
Originally committed as revision 10528 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-18 18:01:07 +00:00
Diego Biurrun 13566c311f cosmetics: sort()
Originally committed as revision 10526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-18 10:35:16 +00:00
Ramiro Polla dbd255cda1 Remove forced -pthread for freebsd.
Configure properly detects which flags are needed on --enable-pthreads

Originally committed as revision 10524 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17 19:35:42 +00:00
Ramiro Polla 1c915f8370 Indent
Originally committed as revision 10523 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17 19:33:55 +00:00
Ramiro Polla 73483024d6 Remove --disable-bktr option from configure
--disable-demuxer=bktr should be used instead

Originally committed as revision 10522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17 19:30:55 +00:00
Diego Biurrun 670ab31277 Replace manual variable setting with the disable function.
Originally committed as revision 10516 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17 10:08:27 +00:00
Matthias Schneider 1051cc4f89 Remove cross_prefix from ln command.
patch by Matthias Schneider, ma30002000 yahoo de

Originally committed as revision 10515 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17 08:23:23 +00:00
Stefano Sabatini 4ca5ece51e Define mandir as $(PREFIX)/share/man rather than as $(PREFIX)/man
to better comply with the FHS.
patch by Stefano Sabatini, stefano.sabatini-lala poste it

Originally committed as revision 10508 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-16 17:44:49 +00:00
Dave Yeo 2036977325 ln is not available on all platforms, so introduce a variable for it
that can be set to a suitable platform-specific command.
patch by Dave Yeo, daveryeo telus net

Originally committed as revision 10503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-15 11:09:30 +00:00
Ramiro Polla c7682de075 Remove --disable-audio-oss option from configure.
--disable-(de)muxer=oss should be used instead.

Originally committed as revision 10428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-07 13:47:14 +00:00
Ramiro Polla a4db8c8921 Remove --disable-audio-beos option from configure.
--disable-(de)muxer=audio_beos should be used instead.

Originally committed as revision 10427 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-07 13:45:37 +00:00
Ramiro Polla 50383e8822 Separate audio_(de)muxer into oss_(de)muxer and audio_beos_(de)muxer
Originally committed as revision 10426 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-07 13:43:40 +00:00
Ramiro Polla 06e310114a Remove --disable-{v4l,v4l2} options from configure
--disable-demuxer={v4l,v4l2} should be used instead

Originally committed as revision 10413 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05 18:52:14 +00:00
Ramiro Polla fd484da77a Remove video_grab_ prefix from video_grab_{bktr,v4l}
Originally committed as revision 10411 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05 18:29:58 +00:00
Diego Biurrun 79fda09705 Alphabetically sort library dependencies list.
Originally committed as revision 10400 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05 10:04:55 +00:00
Ramiro Polla f7b8bffe47 Treat dc1394 as a library
Originally committed as revision 10292 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-04 22:03:32 +00:00
Måns Rullgård e89d9fd89c do not use "strings" in endian check
Originally committed as revision 10252 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-27 14:19:04 +00:00
Diego Biurrun d56fb404bb Remove unused definition.
Originally committed as revision 10248 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-27 09:17:20 +00:00
Michael Niedermayer 971cc99020 print EBX/EBP availability
Originally committed as revision 10243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-26 23:09:34 +00:00
Måns Rullgård 7e7f5c7bf6 use POSIX "strings -a" rather than "strings -"
Originally committed as revision 10233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-26 09:11:22 +00:00
Måns Rullgård 0828e47642 fix endian detection on MacOS
Originally committed as revision 10232 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-26 09:08:21 +00:00
Ramiro Polla b48e359ff7 Remove --disable-dv1394 option
--disable-demuxer=dv1394 should be used instead

Originally committed as revision 10213 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-24 17:07:52 +00:00
Ramiro Polla 73b46a95d2 Group network checks together
Originally committed as revision 10209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-24 15:10:04 +00:00
Diego Biurrun 9d16f87ffd Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).
Originally committed as revision 10190 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-22 22:46:39 +00:00
Diego Biurrun e241ba148f Revert previous unneeded mipsel patch (obsoleted by endianness detection fix).
Originally committed as revision 10189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-22 22:27:01 +00:00
Diego Biurrun ded66cdb67 Add mipsel architecture that differs from mips in endianness.
based on patch by Johansson Erik-EJO017, erik.johansson motorola com

Originally committed as revision 10188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-22 22:16:48 +00:00
Måns Rullgård 9eebe68739 fix endian check when cross-compiling
Originally committed as revision 10187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-22 20:42:25 +00:00
Aurelien Jacobs 7506d47aa3 create libavcodec/sh4 dir when building out-of-tree
Originally committed as revision 10171 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-21 15:53:41 +00:00
Aurelien Jacobs 862a70f16b cosmetics: some reordering
Originally committed as revision 10170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-21 15:52:50 +00:00
Aurelien Jacobs 4a0d6686fd ensure configure only accept valid --list-* parameters
closes issue72

Originally committed as revision 10153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-20 21:35:51 +00:00
Diego Biurrun 7799eeec93 small simplification
Originally committed as revision 10141 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-18 08:57:38 +00:00
Ramiro Polla afd98005db Enable MinGW networking support
Originally committed as revision 10132 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-17 14:49:11 +00:00
Roman Shaposhnik 4e68cb8ac7 restoring the alphabetical order (this time with case ignored)
Originally committed as revision 10087 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12 00:59:50 +00:00
Ramiro Polla 3b4e7bb3b6 Also check for closesocket in winsock2.h
Originally committed as revision 10086 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12 00:27:18 +00:00
Ramiro Polla 70b4d49294 Enable swscale in MinGW vhooks only if swscale was configured.
Copied from Cygwin configure.

Originally committed as revision 10073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-11 19:51:37 +00:00
Roman Shaposhnik da9e86f83d * reinserting gethrtime in alphabetical order
Originally committed as revision 10045 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-10 01:13:15 +00:00
Michael Niedermayer 3bf9816170 forgotten av_
Originally committed as revision 10007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09 09:30:43 +00:00
Roman Shaposhnik b6c748edba * Making [START|STOP]_TIMER work on architectures that support gethrtime()
Originally committed as revision 9998 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09 00:12:40 +00:00
Alex Beregszaszi ecf97f22b3 check for closesocket
Originally committed as revision 9991 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-08 20:18:41 +00:00
Ramiro Polla 6ff3f3e7ce Check for winsock2.h instead of __MINGW32__
Originally committed as revision 9988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-08 19:18:10 +00:00
Ramiro Polla 60147de8fd Indent
Originally committed as revision 9973 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-07 00:58:58 +00:00
Ramiro Polla 2a320695ec Simplify configure's output
Originally committed as revision 9972 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-07 00:57:48 +00:00
Justin Ruggles 6ea67bbb60 enable the native AC-3 decoder
Originally committed as revision 9968 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-07 00:02:29 +00:00
Diego Biurrun 43a2ce000a Revert unused fixedpoint declaration.
Originally committed as revision 9959 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-06 08:14:28 +00:00
Marc Hoffman 61eade27bd correct order of fixedpoint in CONFIG list
Originally committed as revision 9869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-02 11:32:04 +00:00
Marc Hoffman c16c584a4a --enable-fixedpoint, for configuring fixedpoint optimizations, this is just the config aspect
Originally committed as revision 9866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-02 00:14:11 +00:00
Måns Rullgård 93b3c0834d replace some "disabled" calls with "! enabled"
Originally committed as revision 9859 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 20:23:29 +00:00
Diego Biurrun af88ae54f4 alphabetical order
Originally committed as revision 9854 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 19:10:54 +00:00
Diego Biurrun e555e7b29e Remove redundant variable declarations.
Originally committed as revision 9853 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 19:06:19 +00:00
Michael Niedermayer d8d0d0b282 move gray so as to not introduce further misordering
Originally committed as revision 9851 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 13:02:31 +00:00
Michael Niedermayer 9d92cce1ff remove unneeded gray="no"
Originally committed as revision 9850 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 13:00:01 +00:00
Michael Niedermayer cde9e78001 make grayscale only decoding checks in inner loops compiletime killable
Originally committed as revision 9846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-01 00:39:39 +00:00
Panagiotis Issaris 794f8e976b Add the possibility to show all configurable encoders, decoders, parsers,
muxers, demuxers, protocols and bitstream filters.

Originally committed as revision 9812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-27 14:13:34 +00:00
Diego Biurrun 21d0a823b5 10l: Uppercase some more overlooked makefile variables.
Originally committed as revision 9778 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-22 15:59:10 +00:00
Diego Biurrun 22a324da72 cosmetics: Use uppercase names for installation directories in makefiles.
Originally committed as revision 9776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-21 18:53:06 +00:00
Diego Biurrun c75560ae87 cosmetics: Do not use braces in makefiles, use normal parentheses.
Originally committed as revision 9775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-21 18:32:46 +00:00
Aurelien Jacobs e2525c6f78 The svq3 decoder depends on h264idct.o and also requires h264_parser.
This fixes the following option set:
  --disable-encoders --disable-decoders --disable-parsers --disable-bsfs
  --disable-muxers --disable-demuxers --disable-protocols --enable-decoder=svq3

Originally committed as revision 9638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-14 13:11:15 +00:00
Måns Rullgård c07ed8c8a2 create and populate "tools" directory
Originally committed as revision 9634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-13 21:33:24 +00:00
Diego Biurrun 40b78d5326 GXF muxer is no longer GPLed.
Originally committed as revision 9632 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-13 17:38:17 +00:00
Ramiro Polla 7495c3066d Check for GetProcessTimes and use it in getutime
Originally committed as revision 9629 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-13 16:11:36 +00:00
Ramiro Polla 66be5b4536 Check for getrusage
Originally committed as revision 9627 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-13 16:04:00 +00:00
Måns Rullgård d3ea5692b0 enable $ARCH_EXT_LIST before parsing command line
Originally committed as revision 9618 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-13 00:13:57 +00:00
Ramiro Polla e16e49ac90 Proper check for interactive support (termios and conio).
Originally committed as revision 9597 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-11 14:04:54 +00:00
Ramiro Polla 6ffa87d325 Proper check for mkstemp().
Originally committed as revision 9596 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-11 13:57:22 +00:00
Måns Rullgård 4bb01c1e74 remove OS/2 support
Originally committed as revision 9587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-10 22:57:52 +00:00
Måns Rullgård 9d99cc5a8a add fork to HAVE_LIST
Originally committed as revision 9563 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-09 20:22:14 +00:00
Måns Rullgård 3b26ee4719 fix build after breakage in r9544
Originally committed as revision 9546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-08 17:47:15 +00:00
Diego Biurrun ed5614eb56 Make vhook build non-recursive.
Originally committed as revision 9544 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-08 15:16:25 +00:00
Måns Rullgård bd2216e487 handle --enable-small same way as other CONFIG_* options (almost)
Originally committed as revision 9509 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06 18:41:59 +00:00
Víctor Paesa 41d5a86a41 On Cygwin, libswscale is needed in VHOOK(SHFLAGS|LIBS) only when
--enable-swscaler is set.

Originally committed as revision 9469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-03 16:12:55 +00:00
Diego Biurrun 06f32b2634 Clarify --enable-libfaadbin option description.
Originally committed as revision 9449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-28 12:09:02 +00:00
Diego Biurrun 7e0871a72e Clarify what libfaadbin means in the summary output.
Originally committed as revision 9448 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-28 12:07:06 +00:00
Ramiro Polla 45c1011020 Remove localtime_r implementation for systems that don't have it.
It is no longer used.

Originally committed as revision 9425 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-25 16:18:28 +00:00
Måns Rullgård 3155a644a6 place -l flags after object files in check_ld()
Originally committed as revision 9367 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-19 01:27:51 +00:00
Ramiro Polla ff5a6541bd tests/Makefile has been removed
Originally committed as revision 9366 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-19 00:07:01 +00:00
Måns Rullgård f32adb22de move lrintf() check before external lib checks to prevent runtime
errors from these interfering with lrintf() test

Originally committed as revision 9364 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-18 21:42:38 +00:00
Måns Rullgård aa45201dd5 fix thread support selection
Originally committed as revision 9358 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 23:29:35 +00:00
Måns Rullgård 0db2ce7770 fix report at end of configure
Originally committed as revision 9357 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 23:14:08 +00:00
Måns Rullgård 9cafbd6c49 simplify ppc64 handling
Originally committed as revision 9355 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 15:47:03 +00:00
Måns Rullgård d5f916e146 remove unneeded variable initializations
Originally committed as revision 9354 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 15:29:22 +00:00
Måns Rullgård 0182fee8d1 indent
Originally committed as revision 9352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 11:57:53 +00:00
Måns Rullgård 9eeed841ca simplify simd extension checking
Originally committed as revision 9351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17 11:57:50 +00:00
Måns Rullgård 5c0e9479ef test whether linker supports --warn-common
Originally committed as revision 9328 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 20:43:58 +00:00
Måns Rullgård 3d907e2207 merge print_config_enable() and print_config() as only the former is used
Originally committed as revision 9325 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 20:35:46 +00:00
Måns Rullgård 3f5b56e58b replace TARGET_* with HAVE_* simplifying lists in configure script
Originally committed as revision 9324 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 20:35:44 +00:00
Måns Rullgård 48a14b9174 add x86 to ARCH_LIST simplifying config file generation
Originally committed as revision 9323 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 20:35:40 +00:00
Måns Rullgård 18ca9a4a99 replace TARGET_ARCH_* to ARCH_* for consistency
Originally committed as revision 9322 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 20:35:37 +00:00
Aurelien Jacobs 99a6d06fea generate ENABLE_* defines also for ARCH_*
Originally committed as revision 9321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 18:47:30 +00:00
Aurelien Jacobs f6de217b6c generate ENABLE_* defines also for all the HAVE_* values
Originally committed as revision 9319 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-15 18:17:42 +00:00
Ramiro Polla 1bdf0fe7c7 Vhooks require special cflags and ldflags for Windows builds
Copy them from Cygwin to MinGW

Originally committed as revision 9313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-14 16:48:09 +00:00
Ramiro Polla 4f3da98526 Make ppm vhook depend on fork()
Originally committed as revision 9312 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-14 16:43:56 +00:00
Ramiro Polla b0268cc060 Print static vhook warning for Cygwin and MinGW
Originally committed as revision 9311 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-14 16:40:55 +00:00
Ramiro Polla 770359898c Print static vhook warning for Cygwin only when both are enabled
Originally committed as revision 9310 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-14 16:39:44 +00:00
Diego Biurrun 1cc60c47c5 Consistent naming and lib prefixes for x264, xvid and mp3lame within the code.
Originally committed as revision 9230 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-06 08:51:41 +00:00
Luca Barbato e07e357d84 Add support for Cell (requires gcc-4.2 or patches)
Originally committed as revision 9181 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-03 13:09:58 +00:00
Diego Biurrun 69ddbd1dad Rename aac_decoder to libfaad_decoder for consistency and to be able to
more easily add a possible future native decoder.

Originally committed as revision 9172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-02 11:44:44 +00:00
Diego Biurrun c9171a830b Rename faac_encoder to libfaac_encoder for consistency and to be able to
more easily add a possible future native encoder.

Originally committed as revision 9171 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-02 11:20:24 +00:00
Diego Biurrun cca2adb87d doc/Makefile no longer exists.
Originally committed as revision 9143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-27 16:31:02 +00:00
Aurelien Jacobs 7ee7412e6e cosmetics: alignment
Originally committed as revision 9113 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-23 23:22:39 +00:00
Aurelien Jacobs 2f3e7d554d define ENABLE_* for every CONFIG_ item
Originally committed as revision 9112 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-23 23:21:42 +00:00
Aurelien Jacobs 4bd8e17c8d loosen dependencies over mpegaudiodec
Originally committed as revision 9080 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-20 13:40:07 +00:00
Zuxy Meng d205abe9f7 Add --enable-auto-image-base for building mingw32 & cygwin DLLs
Originally committed as revision 9075 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-19 16:23:15 +00:00
Aurelien Jacobs 670a6b133b remove libdts decoder, we have a native dts decoder
Originally committed as revision 9051 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17 17:04:00 +00:00
Aurelien Jacobs facbea9596 prevent misdetection by using a stricter regexp
Originally committed as revision 9050 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17 16:50:16 +00:00
Zuxy Meng b9a793eec8 Building both shared and static libraries is now possible on MinGW.
patch by Zuxy Meng, zuxy.meng gmail com

Originally committed as revision 9030 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-15 19:30:07 +00:00