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
Justin Ruggles
25dcd1823c
ac3dec: simplify zero-bit mantissa dithering by calculating it
...
conditionally during mantissa decoding, then only removing it from the
coupling range for coupled channels which do not use dithering.
Originally committed as revision 19588 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
b972c06a8f
cosmetics: indentation and line wrap
...
Originally committed as revision 19587 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
c36ea0600c
cosmetics after last commit
...
Originally committed as revision 19586 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
3f93716809
Modify decode_band_structure() so that the actual band structure is only
...
used within the function. This removes the need to have the coupling band
structure stored in the AC3DecodeContext.
Originally committed as revision 19585 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
603139022d
Use coupling band sizes instead of coupling band structure when
...
calculating coupling transform coefficients.
Originally committed as revision 19584 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ronald S. Bultje
faccfeec0e
Parse frame size code, see "svq3.c: parse frame size" thread on ML.
...
Originally committed as revision 19583 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
John Adcock
3f87f39cb8
Update x264 asm code to latest to add support for 64-bit Windows.
...
Use the new x86inc features to support 64-bit Windows on all non-x264 nasm
assembly code as well.
Patch by John Adcock, dscaler.johnad AT googlemail DOT com.
Win64 changes originally by Anton Mitrofanov.
x86util changes mostly by Holger Lubitz.
Originally committed as revision 19580 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
d8c2f8f71f
Split RV10 encoder off into its own file.
...
Originally committed as revision 19579 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
b6767d6d9b
Split RV20 encoder into its own file.
...
Originally committed as revision 19578 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
eb98cdfa8d
cosmetics: add more detailed information to the documentation for
...
decode_band_structure().
Originally committed as revision 19577 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Jeff Downs
81b44c42d5
Cosmetic: Reindent after last commit
...
Originally committed as revision 19576 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Jeff Downs
ca6493ab40
Revert r18344. Fixes at least issue 1218, 1221, and 1187), see master
...
issue 1221 for details.
Briefly, out of bounds field mvs in field pictures would cause a crash.
Originally committed as revision 19575 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Colin McQuillan
d5652f38fb
Correct the sign of the arithmetic in ff_celp_lp_zero_synthesis_filterf()
...
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19574 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
f7e1353523
Move AVCodec declarations for RV10/20 from mpegvideo_enc.c to rv10.c.
...
It is better to keep the declarations in conditionally compiled places.
Originally committed as revision 19573 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Colin McQuillan
33ae681f5c
Expose QCELP's floating-point LSP-to-LPC function
...
qcelp_lsp exported a single function, ff_acelp_lspd2lpc, which was not
specific to qcelp. It can be kept with its fixed-point version
ff_acelp_lsp2lpc in lpc.c.
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19571 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Colin McQuillan
1e1e02eacd
Make the LSP naming more consistent
...
Use the convention from lsp.c: an LSF is a frequency, an LSP is the
cosine of an LSF, and LSP functions should have an ff_acelp prefix.
Use a "d" suffix to specify doubles.
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19570 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
b5fe06abf0
Replace 5 with AOT_SBR when referring to the MPEG-4 audio object type.
...
Originally committed as revision 19569 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
e4d65ba590
Remove commented-out cruft.
...
Originally committed as revision 19566 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4d8eecf475
Make XVMC mpegvideo decoder depend on mpegvideo decoder.
...
It makes no sense to enable the former without the latter.
Originally committed as revision 19565 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
b25a881851
cosmetics: K&R coding style, prettyprinting
...
Originally committed as revision 19564 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Sascha Sommer
da136c7e05
add approved hunks of the wmapro decoder
...
Originally committed as revision 19563 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
577d383b0c
cosmetics: K&R coding style
...
Originally committed as revision 19562 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
954489244e
cosmetics: K&R coding style
...
Originally committed as revision 19561 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Baptiste Coudurier
6b620372a8
cosmetics, reindent
...
Originally committed as revision 19560 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Baptiste Coudurier
ee5b26f5ff
cosmetics, reindent
...
Originally committed as revision 19559 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Baptiste Coudurier
4546bf4116
fix jpeg parser when PARSER_FLAG_COMPLETE_FRAMES is set
...
Originally committed as revision 19558 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
8b44de14d1
Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.
...
Originally committed as revision 19550 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
7881793dd0
Remove unused debug av_log() calls.
...
Originally committed as revision 19549 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
07fd17823f
Remove unused variable intra_count.
...
Originally committed as revision 19537 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
700363afe7
Only enable WMV3 decoder when it has been turned on in the build system.
...
Originally committed as revision 19534 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago