Diego Biurrun
bf2f748fc7
configure: Use correct libm linker flag during math function checks
8 years ago
Diego Biurrun
ce6f780bc6
configure: Add missing asyncts filter, movie filter, and output example deps
...
Also add a missing avcodec.h #include in the movie filter.
8 years ago
Diego Biurrun
04698d528c
configure: Use correct variable name in libsnappy test
8 years ago
Diego Biurrun
30f0d1b997
configure: Remove old avisynth support leftover
8 years ago
Janne Grunau
6a1ea4ec93
arm: warn/error on movrelx usage problematic with PIC on ELF
...
The warning has false positives but our asm does not trigger it. For
new code false positives can only be avoided by changing the register
allocation.
8 years ago
Diego Biurrun
5bcc6f76f1
configure: Disable warning C4703 with MSVC
...
This disables warnings about potentially uninitialized local pointer
variables. Disabling the warning is in line with what we do for gcc.
8 years ago
Diego Biurrun
bd9cd04626
w32pthreads: Fix function pointer casts
...
This eliminates a handful of warnings at every inclusion of the header.
8 years ago
Martin Storsjö
233d50b275
qt-faststart: Do not try to use fancy 64-bit seeking functions on mingw32ce
...
These functions are not available on mingw32ce.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
8 years ago
Martin Storsjö
537b5b773b
rtmpdh: Do global initialization before running the test
...
The rtmpdh code can use crypto libraries which may require
a process global init. (gcrypt is one of the libraries
where the rtmpdh test code can fail if global init hasn't been
done, depending on gcrypt version.)
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Martin Storsjö
2f99117f6f
aarch64: vp9itxfm: Don't repeatedly set x9 when nothing overwrites it
...
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Alexandra Hájková
2dbe2aa2c2
rdt: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
2cef81a87c
ogg: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
8d1997add6
mpegts: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
178b4ea5f9
xsubdec: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
be35ef92a4
xan: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
f9c59f26c8
wnv1: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
0536e7d782
vima: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
e5bdfc6790
vble: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
104a4289f9
utvideodec: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
85f760fedd
twinvq: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
0bea79afa6
tscc2: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
8e4cadea5d
truespeech: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
0ac07d0b8d
tiertex: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
9ab1a3e283
truemotion2: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
9f78e3a46d
svq1dec: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
6efbc88a5c
smacker: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
087bc8d704
sipr: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
f26cbb555b
rtjpeg: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
c60cda7cb4
ra288: Convert to the new bitstream reader
8 years ago
Alexandra Hájková
7d8075cf47
ra144: Convert to the new bitstream reader
8 years ago
Martin Storsjö
79566ec8c7
arm: vp9itxfm: Rename a macro parameter to fit better
...
Since the same parameter is used for both input and output,
the name inout is more fitting.
This matches the naming used below in the dmbutterfly macro.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Martin Storsjö
721bc37522
arm/aarch64: vp9itxfm: Fix indentation of macro arguments
...
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Ronald S. Bultje
06fec74cac
checkasm: vp9dsp: benchmark all sub-IDCTs (but not WHT or ADST).
...
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Martin Storsjö
effc1430b2
Revert "checkasm: vp9dsp: Benchmark the dc-only version of idct_idct separately"
...
This reverts commit 81d7f0bbca
.
Instead of just benchmarking dc separately, test all relevant subparts
(in the next commit).
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
James Almer
12ab667e21
matroska: use av_stream_add_side_data() for stereo3d side data
...
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
8 years ago
James Almer
1893495e1d
mov: Use av_stream_add_side_data() for displaymatrix side data
...
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
8 years ago
James Almer
79ff9935ae
utils: Add av_stream_add_side_data()
...
Functionally similar to av_packet_add_side_data(). Allows the use of an
already allocated buffer as stream side data.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
8 years ago
Martin Storsjö
286ab878bd
fate.sh: Allow setting other make flags for running tests
...
If makeopts_fate is set, these makeopts are used for running the
tests instead of the normal makeopts. If it isn't set, the normal
makeopts variable is used as before.
This is useful if remote testing on a lesser machine where a large
number of parallel jobs might be undesireable, while wanting to speed
up the build with many parallel processes.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
James Almer
aa498c3183
avpacket: fix leak on realloc in av_packet_add_side_data()
...
If realloc fails, the pointer is overwritten and the previously allocated buffer
is leaked, which goes against the expected functionality of keeping the packet
unchanged in case of error.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
8 years ago
Anton Khirnov
c7ab0eb305
examples/decode_video: allocate the packet dynamically
...
AVPackets on stack are discouraged.
8 years ago
Anton Khirnov
728ea23cce
examples/decode_video: switch to the new decoding API
8 years ago
Anton Khirnov
f78d360bba
examples/decode_video: use a parser for splitting the input
...
Do not rely on the decoder handling this, as it's not guaranteed to
work.
8 years ago
Anton Khirnov
59ab9e8ba1
examples/encode_video: allocate the packet dynamically
...
AVPackets on stack are discouraged.
8 years ago
Anton Khirnov
5f102a9559
examples/encode_video: switch to the new encoding API
8 years ago
Anton Khirnov
fee0f1de2c
examples/decode_audio: flush the decoder
8 years ago
Anton Khirnov
9a38184a14
examples/decode_audio: allocate the packet dynamically
...
AVPackets on stack are discouraged now.
8 years ago
Anton Khirnov
45a1ce2ff7
examples/decode_audio: handle planar audio now produced by the MP2 decoder
8 years ago
Anton Khirnov
3d66717f7c
examples/decode_audio: use the new audio decoding API
8 years ago
Anton Khirnov
0946c754d9
examples/decode_audio: use a parser for splitting the input
...
Do not rely on the decoder handling this, as it's not guaranteed to
work.
8 years ago
Anton Khirnov
f27e262dbd
examples/encode_audio: switch to the new audio encoding API
8 years ago