Martin Storsjö
336cc1b0ee
Enable creation of microsoft-style import libraries on arm.
...
Patch by Martin Storsjö <martin at martin dot st>
Originally committed as revision 19426 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
İsmail Dönmez
b504ce57ed
Only #define lseek to _lseeki64 on MinGW, not MinGW CE.
...
This fixes compilation on WinCE, which does not support _lseeki64.
patch by Ismail Dönmez, ismail namtrac org
Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
David Conrad
3e962f315b
Fix "warning: assignment discards qualifiers from pointer target type"
...
Originally committed as revision 19424 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Art Clarke
870ee6f715
Fix memory leak in libtheora encoder
...
Patch by Art Clarke [aclark , xuggle . com]
Originally committed as revision 19423 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
38a9c529e2
Use add_*flags only after compiler-specific configuration
...
Originally committed as revision 19422 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
caf458dda4
Allow filtering of flags passed to compiler and assembler
...
This can be used to map gcc-type flags to equivalents with other
compilers.
Originally committed as revision 19421 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
647c2356a6
Make (de)muxers for format variants select the main format (de)muxer.
...
It makes little sense to enable the variant without the main format.
Originally committed as revision 19420 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
d8059267bc
Place flags for dependency generation in DEPFLAGS
...
This avoids duplicating the full DEPEND_CMD line only to change some
flags.
Originally committed as revision 19419 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
ce40e3470c
Set CPPFLAGS in config.mak using normal assignment
...
Setting this value using ?= caused some trouble if it was already
defined in the environment.
Originally committed as revision 19418 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
8c6d2da5be
Protect config.mak against multiple inclusion
...
Some of the values set here are modified by the main makefiles
and should not be reset when config.mak is included again.
Originally committed as revision 19417 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
04a803bef4
Append the user CPPFLAGS value to the CPPFLAGS used for compilation,
...
rather than prepend it.
This way there is the guarantee that the included headers are those in
the FFmpeg sources, rather than pre-installed headers referenced by
the user CPPFLAGS.
Originally committed as revision 19416 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
0115927eae
Use CFLAGS in default DEPEND_CMD
...
Originally committed as revision 19415 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
9e7f32775c
Use CFLAGS in check_cpp
...
Originally committed as revision 19414 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
75bafbac7b
Set as_default after compiler detection, allowing compiler-specific defaults
...
Originally committed as revision 19413 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
2f2e6c7ce1
Pass ASFLAGS to assembler instead of CFLAGS
...
Originally committed as revision 19412 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
7f32f40c89
Add flags from --extra-cflags after compiler detection
...
Originally committed as revision 19411 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
997f3ba4ef
Set CPU selection flags in $cpuflags, add to cflags outside case block
...
Originally committed as revision 19410 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
7e6c86e65d
Allow unusual ways of specifying compiler output file
...
Some compilers do not use the typical -c -o foo.o style.
This allows compiler-specific equivalents to be set by the
configure script.
Originally committed as revision 19409 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
50567afa5a
Use DEPCC to find dependencies, default to same as CC
...
Originally committed as revision 19408 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
684b28e09c
Use LD for linking, default to same as CC
...
Originally committed as revision 19407 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
3198f6187a
Set CFLAGS directly in config.mak instead of using OPTFLAGS
...
Originally committed as revision 19406 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
467256f248
Add --sysroot flag to CPPFLAGS, not CFLAGS
...
Originally committed as revision 19405 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
50a334e426
Separate C preprocessor flags into CPPFLAGS variable
...
Originally committed as revision 19404 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
95a61cfc24
Make VAAPI/VDPAU variant of decoder foo depend on decoder foo.
...
The VAAPI/VDPAU variants of foo require almost all of the code of foo.
Thus it makes little sense to enable just the accelerated variant.
This allows refactoring some object dependencies in the Makefiles.
Originally committed as revision 19403 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
68485d2728
Remove useless definition of struct AVCLASS.
...
Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
fed5d54b56
configure: allow bulk-disabled things to be re-enabled by dependents
...
Originally committed as revision 19401 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
36f517736f
Cosmetics: reindent after last commit
...
Originally committed as revision 19400 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
6308765cb5
Ignore subsequent channel configurations after the first in an AAC file. The
...
current code doesn't handle them properly, and they are a dubious construction
at best.
Originally committed as revision 19399 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
c8ec2f1cb8
Mark iir filter init and free functions av_cold.
...
Originally committed as revision 19398 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
47f49f98ca
Fix "iirfilter.c:55: warning: unused variable ‘size’"
...
Originally committed as revision 19397 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
e187d87d7d
Eliminate use of complex.h from iirfilter.c
...
Originally committed as revision 19396 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
291fd18a6e
Add a log2 replacement for systems that haven't quite caught up with the C99
...
standard library.
Originally committed as revision 19395 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
451ae25724
Prepare SHA code to handle SHA-2 as well. For now rename files and functions
...
and leave av_sha1_* functions for compatibility until next major bump.
Originally committed as revision 19394 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
71ecc16b09
cygwin documentation: diffutils is part of the Utils packages.
...
Originally committed as revision 19393 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
6892931b0b
Add myself as AAC encoder maintainer
...
Originally committed as revision 19392 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
988c170547
Change fminf/fmaxf to FFMIN/FFMAX to fix the build on broken operating systems.
...
Originally committed as revision 19391 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
181b336304
Fix declarations of complex numbers
...
Complex numbers must be declared using a base type of float, double,
or long double.
Originally committed as revision 19390 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
0d73abb86a
Rename function to sha1_transform so it won't be confused with SHA-2 transform
...
when it's added.
Originally committed as revision 19389 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
2c6361e009
Use pointer to hash transform function to make adding SHA-2 support easier.
...
Originally committed as revision 19388 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
3a7c65077d
cosmetics: vertical align AVSHA1 members
...
Originally committed as revision 19387 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
01cc628845
Extend AVSHA1 so it can be used in future SHA-2 code as well
...
Originally committed as revision 19386 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
4364fc9a0d
Document SHA-1 functions and structures
...
Originally committed as revision 19385 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
71ed6c8f06
Remove dependency from swscale_internal.h to lavu/internal.h, it is no longer
...
needed for DECLARE_ALIGNED.
Remove dependency from swscale-example.c to swscale_internal.h by duplicating
the necessary code. The duplicated code is a hack and should be removed once a
cleaner pixel format information system exists. swscale-example.c is example
code on how to use the library and therefore shouldn't rely on internal
headers.
Originally committed as revision 29415 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
16 years ago
Ramiro Polla
16c2e21488
Move DECLARE_ALIGNED and DECLARE_ASM_CONST back from lavu/internal.h to
...
lavu/mem.h.
Originally committed as revision 19384 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
4b2be143cd
Do not throw compiler error if asm code needs alignment, but we do not know
...
how to do it for this compiler. This removes a dependency of config.h on the
DECLARE_* macros.
Originally committed as revision 19383 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
f11bfe3065
Reindent after last commit
...
Originally committed as revision 19382 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
48d20c11ba
Prevent AAC frame size overflows.
...
Originally committed as revision 19381 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
5962f6b0da
Refactor windowing and early psy from bitstream writing parts of the AAC encoder.
...
Originally committed as revision 19380 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
7a4eebcdce
Turn on AAC rate control.
...
Originally committed as revision 19379 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
c8f47d8b79
cosmetics: Remove unnecessary {} around if/for blocks;
...
move statements after if/for to the next line.
Originally committed as revision 19378 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago