Vittorio Giovara
f5950b8fd6
lavfi: Drop unused and empty header file
...
This header was public but deprecated on 2013-04-11 (lavfi 3.8.0).
8 years ago
Luca Barbato
d32d59bc97
matroska: Read only the data written in the scratch buffer
...
The private buffer is 20bytes but depending on the type only 12 bytes
are actually filled.
8 years ago
Sean McGovern
6ac0e78183
mpeg4videodec: raise an error if sprite_trajectory.table is NULL
...
CC: libav-stable@libav.org
Bug-Id: 1012
8 years ago
Diego Biurrun
b62ed68738
configure: Better names for functions that sanitize input
8 years ago
Diego Biurrun
604fbb3132
mov: Move code shared with CAF to a separate file
8 years ago
Mark Thompson
3d197514e6
qsvenc: Allow use of hw_device_ctx to make the internal session
8 years ago
Mark Thompson
8848ba0bd6
qsvdec: Allow use of hw_device_ctx to make the internal session
8 years ago
Mark Thompson
4936a48b1e
qsv: Add ability to create a session from a device
8 years ago
Mark Thompson
41dda86087
doc: Add VAAPI encoders
8 years ago
Mark Thompson
0fd91e4bfc
vaapi_encode: Add VP9 support
8 years ago
Mark Thompson
34e051d168
vp9: Add bsf to fix reordering in raw streams
...
Takes a raw input stream containing frames with correct timestamps but
possibly out of order and inserts additional show-existing-frame
packets to correct the ordering.
8 years ago
Ronald S. Bultje
0cf949a011
vp9: Add bsf to merge superframes
...
From ffmpeg commit 2e6636aa87
.
8 years ago
Mark Thompson
f64d1100a5
avconv: Flush output BSFs when encode reaches EOF
...
Before this, output bitstream filters would never see EOF and
therefore would not be able to flush any delayed packets.
8 years ago
Mark Thompson
9aa251c98c
vf_deinterlace_vaapi: Add support for field rate output
...
In order to work correctly with the i965 driver, this also fixes the
direction of forward/backward references - forward references are
intended to be those from the past to the current frame, not from the
current frame to the future.
8 years ago
Mark Thompson
c2bebfc801
pthread_frame: Propagate sw_pix_fmt across threads
8 years ago
Martin Storsjö
10f4511f14
libavutil: Make LOCAL_ALIGNED(xx be equal to LOCAL_ALIGNED_xx(
...
Previously, the former form always produced a manually aligned,
padded buffer, while the latter can use DECLARE_ALIGNED, if that
amount of stack alignment is supported.
libavutil/internal.h needs to include mem.h, since it uses
the DECLARE_ALIGNED macro.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Martin Storsjö
26d9b60373
hevc: Avoid using LOCAL_ALIGNED for 4 byte alignment
...
The data types within the MvField struct themselves imply 4 byte alignment.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Diego Biurrun
163cc67beb
takdec: Use ISO C printf conversion specifiers where appropriate
...
libavformat/takdec.c:144:20: warning: format '%X' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t'
8 years ago
Anton Khirnov
6a9e331d79
dcadec: remove extra indirection
...
num_core_channels is always equal to s->audio_header.prim_channels,
neither one of those variables ever get changed.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
8 years ago
Martin Storsjö
e788ca05a7
hevcdec: Use LOCAL_ALIGNED_* for declaring local variables with alignment
...
Not all compilers can do alignment larger than the normal stack alignment
for variables on the stack. In these cases, the LOCAL_ALIGNED_* macros
produce the workaround alignment wrapper consisting of a padded array
and a pointer variable.
This fixes the hevc fate tests on RVCT/ARMCC after adding IDCT assembly
that actually assumes/relies on this alignment.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Martin Storsjö
fbc6f190a6
arm: Always build the hevcdsp_init_arm.c file
...
The main hevcdsp.c file calls this init function if HAVE_ARM is set,
regardless of whether neon support is available or not.
This fixes builds where neon isn't supported by the build tools at all.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Diego Biurrun
5a969f64b9
jack: Drop support for old (2012) JACK versions
8 years ago
Mark Thompson
1bd986ed4b
hwcontext: Move NONE to the be the first member of AVHWDeviceType
...
Also use that to fix a warning in av_hwdevice_get_type_name().
8 years ago
Alexandra Hájková
0b9a237b23
hevc: Add NEON 4x4 and 8x8 IDCT
...
Optimized by Martin Storsjö <martin@martin.st>.
The speedup vs C code is around 3.2-4.4x.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Diego Biurrun
75ef915434
configure: Disable inline assembly for PathScale compilers
...
These compilers pass the inline assembly check, but fail to compile
our inline assembly in various ways.
8 years ago
Sean McGovern
fe6eea99ef
nsvdec: don't ignore the return value of av_get_packet()
...
Fixes invalid reads with corrupted files.
CC: libav-stable@libav.org
Bug-Id: 1039
8 years ago
Ricardo Constantino
d4f3c26b70
rtmpproto: send swfverify value as swfurl if latter is unused
...
Replicates lavf/librtmp.c behavior in L145-152 and rtmpdump's
behavior with "--swfVfy <url>" passing the url to swfUrl.
Fixes bug 943.
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years ago
Diego Biurrun
d6390090c4
configure: Skip check for inline assembly capabilities when explicitly disabled
...
Otherwise inline assembly may get enabled when disabled on the command line.
8 years ago
Vittorio Giovara
083ea87681
APIchanges: Update bump dates
8 years ago
Luca Barbato
8c616b3b89
avplay: Use the named syntax for buffersrc arguments
...
Avoid confusion.
8 years ago
Vittorio Giovara
883ce264d9
vf_showinfo: Display spherical properties
8 years ago
Vittorio Giovara
3f128fc4a3
vf_showinfo: Simplify reporting stereo3d information
8 years ago
Vittorio Giovara
5f90ad99bb
spherical: Change types of bounding and pad to uint32_t
...
These values are defined to be 32bit in the specification,
so it makes more sense to store them as fixed width.
Based on a patch by Micahel Niedermayer <michael@niedermayer.cc>.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
8 years ago
Vittorio Giovara
35cf146a33
lavu: Drop deprecated av_dlog macro
...
Deprecated in 05/2015.
8 years ago
Vittorio Giovara
619a433eca
lavu: Drop deprecated option type
...
Deprecated in 02/2014.
8 years ago
Vittorio Giovara
dd343fd986
lavu: Drop deprecated VDPAU pixel formats
...
Deprecated in 07/2013.
8 years ago
Vittorio Giovara
0648dec19d
lavc: Drop deprecated stream codec tag
...
Deprecated in 07/2015.
8 years ago
Vittorio Giovara
94eed68ace
lavc: Drop deprecated options moved to private contexts
...
Deprecated in 10/2014 and 07/2015.
8 years ago
Vittorio Giovara
c43a96fe16
lavc: Drop deprecated time_base variable for decoding
...
Deprecated in 10/2015.
8 years ago
Vittorio Giovara
48bb0da050
lavc: Drop deprecated way of setting audio delay on encode
...
Deprecated in 08/2014.
8 years ago
Vittorio Giovara
5182a28b5d
lavc: Drop deprecated global afd field
...
Deprecated in 08/2014.
8 years ago
Vittorio Giovara
4476027d93
lavc: Drop deprecated avctx codec name
...
Deprecated in 04/2014.
8 years ago
Vittorio Giovara
bb45d11282
lavc: Drop deprecated codec flags
...
Deprecated between 04/2014 - 05/2015.
8 years ago
Vittorio Giovara
302554835e
lavc: Drop deprecated unused public members
...
Deprecated in 07/2014.
8 years ago
Vittorio Giovara
b3739599bd
lavc: Drop deprecated emu edge functionality
...
Deprecated in 01/2014.
8 years ago
Vittorio Giovara
06c20d3e32
lavc: Drop deprecated av_fast_malloc() compatibility
...
Deprecated in 10/2013.
8 years ago
Vittorio Giovara
da5ba26b9e
lavc: Drop deprecated macroblock type symbols
...
Deprecated in 10/2013.
8 years ago
Vittorio Giovara
cbebc3251b
lavc: Drop deprecated public symbols
...
qscale types and maximum number of bframes deprecated in 10/2013.
Negative linesizes deprecated in 11/2013.
xvidmmx deprecated in 08/2014.
8 years ago
Vittorio Giovara
72dc7ddd18
lavc: Drop deprecated error rate option
...
Deprecated in 10/2013.
8 years ago
Diego Biurrun
dcc39ee10e
lavc: Remove deprecated XvMC support hacks
...
Deprecated in 11/2013.
8 years ago