Vitor Sessak
7bd4733588
TwinVQ decoder
...
Originally committed as revision 19682 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Loren Merritt
50b1785a57
bring back some randomness in fft-test. (regression in r18070)
...
Originally committed as revision 19679 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Sascha Sommer
31c57185c5
Add some more wmapro decoder hunks
...
Originally committed as revision 19678 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
7056883be9
Replace redundant GNUC_PREREQ macro by AV_GCC_VERSION_AT_LEAST from libavutil.
...
Originally committed as revision 19677 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
f2d702e109
Replace #ifdef PIC checks with the more appropriate HAVE_EBX_AVAILABLE/HAVE_7REGS.
...
Originally committed as revision 19676 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
da47f0eecb
Add missing #includes to pass 'make checkheaders'.
...
Originally committed as revision 19675 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
29d7eef7dc
Always allocate a buffer of AVPALETTE_SIZE for palette in the subtitle
...
decoders instead of as small as possible.
This avoids completely unnecessary issues with e.g. libswscale.
Originally committed as revision 19673 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
90d43b52e1
Get rid of large stack array in rd8x8_c()
...
Originally committed as revision 19671 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
0314dead4e
eval: replace variable-length array with av_malloc/free
...
There is a theoretical possibility to pass a very long string to ff_parse,
which could crash if allocated from the stack. This allows the allocation
to be checked properly.
Originally committed as revision 19670 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
8313e17976
flacdec: change variable-length array to fixed length
...
pred_order can never exceed 32, so always allocating that amount is safe
and not very wasteful.
Originally committed as revision 19669 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
b7904f78c1
AVR32: optimised mathops.h
...
44% faster MP3 decoding
Originally committed as revision 19667 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alex Converse
0cc4701a3a
Use the AOT enum instead of integer literals for setting and comparing audio
...
object types.
Originally committed as revision 19666 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alex Converse
8ba939d702
Mark the AOT escape value as supported.
...
Originally committed as revision 19662 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alex Converse
08dac48d61
Add USAC and SAOC AOTs to the AudioObjectType enum.
...
Originally committed as revision 19661 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Anuradha Suraparaju
d15f2e00c5
Fix bug caused by difference in stride and picture width.
...
When a frame is allocated using libschroedinger routines, the frame data size
does not match the actual frame size if the width is not a multiple of 16. So
we cannot do a straightforward memcpy of the frame returned by libschroedinger
into the FFmpeg picture as the stride differs from the width.
Fix this bug by allocating for the libschroedinger frame with the dimensions
in AVCodecContext within libavcodec and passing the frame to libschroedinger.
patch by Anuradha Suraparaju, anuradha rd.bbc.co uk
Originally committed as revision 19653 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
0ebe3b8e2b
cosmetics: indentation, prettyprinting, K&R coding style
...
Originally committed as revision 19652 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
c64380009d
Drop some more useless braces around if/for constructs.
...
Originally committed as revision 19651 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
e6cb49bfa9
Simplify another 'if' condition: Replace 'exp == 0' by '!exp'.
...
Originally committed as revision 19650 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Colin McQuillan
bb937155ec
Add a function that can apply an order 2 rational transfer function in-place.
...
This function will be used in the upcoming AMR-NB floating point decoder for
high-pass filtering.
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19649 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
735a38045a
Remove useless braces around if/for/while expressions.
...
Originally committed as revision 19648 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
7c809dc3e2
Simplify 'if' condition statements.
...
Drop useless '!= 0' from 'exp != 0', replace 'exp == 0' by '!exp'.
Originally committed as revision 19647 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
cea0b5272d
Fix start_display_time/end_display_time to be relative to packet pts in xsub decoder.
...
Makes no difference for the sample AVI files since they all have no packet pts values.
Originally committed as revision 19646 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
4a3190ed40
Reindent.
...
Originally committed as revision 19645 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
fd35d6d097
Remove code that is now dead.
...
Originally committed as revision 19644 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
90ea6fce1e
Simplify initialization of AVSubtitle by using memset.
...
Originally committed as revision 19643 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
df47d24501
Make sure AVSubtitle is initialized, memset it to 0.
...
Originally committed as revision 19642 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
ffbe087b58
Fix cmd_pos bounds check to avoid the overflow case.
...
Originally committed as revision 19640 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Carl Eugen Hoyos
84c1b149b2
Fix typo.
...
Originally committed as revision 19639 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
9ae443f420
10L: remove instruction left over from debugging
...
Originally committed as revision 19638 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
e814015d69
ARM: NEON optimised vorbis_inverse_coupling
...
12% faster Vorbis decoding on Cortex-A8.
Originally committed as revision 19637 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Colin McQuillan
d4d6ae1603
Add ff_celp_circ_addf() function to be used for sparse vector circular
...
convolution in the upcoming AMR-NB floating point decoder. The function scales
and adds a vector, that is lagged by some offset, to another vector with the
same number of elements.
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19634 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Shehzad Salim
51fdb6f08d
Fix a memleak with win32 threads: the handle returned by _beginthreadex
...
must be closed (this differs from _beginthread).
Patch by Shehzad Salim (shehzadsalim gmail com)
Originally committed as revision 19633 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alexis Ballier
ffd38d8b64
Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
...
endian counterparts.
Patch by Alexis Ballier, alexis D ballier gmail
Originally committed as revision 19626 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Loren Merritt
d094052c8e
fix a crash in SVQ1 with cmp!=sad
...
Originally committed as revision 19625 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
10f840bd57
Remove pointless #ifdefs from conditionally used files.
...
Originally committed as revision 19615 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
87a920c6bf
eval: include libavutil/mathematics.h for NAN and M_PI
...
Originally committed as revision 19613 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
9a88c1dfa8
eval: include our headers after system headers
...
Originally committed as revision 19612 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
547d205545
Remove commented-out cruft.
...
Originally committed as revision 19605 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
1746e2a936
Make WMV2 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19601 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
c37de5e194
Make MPEG-4 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19600 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
665507aac2
Make WMV1 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19599 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
0bd485300e
Do not check for both CONFIG_H263_ENCODER and CONFIG_FLV_ENCODER.
...
The latter can never be enabled without the former.
Originally committed as revision 19598 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4d4b4bd149
Make FLV encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19597 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
965424dad1
Do not check for both CONFIG_H263_ENCODER and CONFIG_H263P_ENCODER.
...
The latter can never be enabled without the former.
Originally committed as revision 19596 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
fe629c2d2c
Make H.263+ (H263P) encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19595 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4e169d89f3
Declare the dependencies of the MSMPEG4v1/MSMPEG4v2/MSMPEG4v3 encoders on the
...
H.263 encoder in configure.
Originally committed as revision 19594 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
735e36a3e4
Do not redundantly check for preprocessor definitions of CONFIG_RV10_ENCODER or
...
CONFIG_RV20_ENCODER when also checking for CONFIG_H263_ENCODER.
The RV10/RV20 encoders depend on the H.263 encoder.
Originally committed as revision 19593 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
b2bf38b446
Declare the dependency of RV10/RV20 encoder on the H.263 encoder in configure.
...
Originally committed as revision 19592 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
bb5b99a789
cosmetics: move fixed_coeffs into the aligned arrays comment group
...
Originally committed as revision 19590 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
a521aadfe8
cosmetics: reindent after last commit
...
Originally committed as revision 19589 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago