- 27 Oct, 2017 5 commits
-
-
James Almer authored
* commit '50a1c66c': ac3_parser: add a public function for parsing the data required by the demuxer avpriv_ac3_parse_header() is left in place but without the GetBitContext parameter, as the mov muxer requires a lot more fields than just bitstream_id and frame_size from the AC3HeaderInfo struct. Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
Signed-off-by: James Almer <jamrial@gmail.com>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Martin Storsjö authored
merge from libav: 585dc1ae If the metadata packet is corrupted, flv_read_metabody can accidentally read past the start of the next packet. If the start of the next packet had been flushed out of the IO buffer, we would be unable to seek to the right position (on a nonseekable stream). Prefer to clearly error out instead of silently trying to read from a desynced stream which will only be interpreted as garbage.
-
Steven Liu authored
This reverts commit ef7fe81b.
-
- 26 Oct, 2017 21 commits
-
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Carl Eugen Hoyos authored
Deprecated since October 2015.
-
James Almer authored
* commit '193b0918': thread: Define ff_mutex_* macros as stub functions when threads are disabled Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'b200a2c8': examples: Fixed and extended Doxygen documentation Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'efddf2c0': decode: Initialize ret before using it filtfmts-test: Mark filter as const This commit is a noop, see 3c14547e 960b4d47Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'f5950b8f': lavfi: Drop unused and empty header file Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'd32d59bc': matroska: Read only the data written in the scratch buffer This commit is a noop, see fd59207cMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '6ac0e781': mpeg4videodec: raise an error if sprite_trajectory.table is NULL Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'b62ed687': configure: Better names for functions that sanitize input Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
id3v2 code is compiled unconditionally and uses zlib when available. Signed-off-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '604fbb31': mov: Move code shared with CAF to a separate file Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '3d197514': qsvenc: Allow use of hw_device_ctx to make the internal session qsvdec: Allow use of hw_device_ctx to make the internal session qsv: Add ability to create a session from a device doc: Add VAAPI encoders vaapi_encode: Add VP9 support vp9: Add bsf to fix reordering in raw streams This commit is a noop, see 49419925 bde04604 dc81f1a2 91c3b50d 8aa3c2df 28aedeedMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '0cf949a0': vp9: Add bsf to merge superframes [14:25:37] <@BBB> the functional change is wrong [14:25:48] <@BBB> it allows recusrively packing superframes in superframes [14:26:37] <@BBB> so I would ignore the remainder See 2e6636aaMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'f64d1100': avconv: Flush output BSFs when encode reaches EOF vf_deinterlace_vaapi: Add support for field rate output pthread_frame: Propagate sw_pix_fmt across threads This commit is a noop, see ebce1332 bff7bec1 bc4e33ceMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '10f4511f': libavutil: Make LOCAL_ALIGNED(xx be equal to LOCAL_ALIGNED_xx( Also added LOCAL_ALIGNED_4 as it's used in vp8 decoder, and simplified the configure defines. Merged-by: James Almer <jamrial@gmail.com>
-
Mateusz authored
Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl>
-
Carl Eugen Hoyos authored
Fixes the following gcc warning: libavcodec/bitstream_filter.c:39:12: warning: return discards 'const' qualifier from pointer target type
-
Tobias Rapp authored
According to EBU tech 3285 supplement 3 the dwPosPeakOfPeaks field should contain the absolute position to the maximum audio sample value, but the current implementation writes the relative peak frame index instead. Fix the issue by writing the "unknown" value (-1) for now until the feature is implemented correctly. Previous version reviewed-by: Peter Bubestinger <p.bubestinger@av-rd.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Tobias Rapp <t.rapp@noa-archive.com>
-
James Almer authored
This prevents potential ABI issues with GetByteContext. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
-
James Almer authored
This prevents potential ABI issues with GetBitContext. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
-
- 25 Oct, 2017 8 commits
-
-
Zhong Li authored
Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Mateusz authored
This patch uses dithering in DITHER_COPY macro only if it was not used option '-sws_dither none'. With option '-sws_dither none' it uses downshift. For human eye dithering is OK, for video codecs not necessarily. If user don't want to use dithering, we should respect that. Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Kaustubh Raste authored
Use immediate unsigned saturation for clip to max saving one vector register. Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com> Reviewed-by: Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Kaustubh Raste authored
Replace generic with block size specific function. Load the specific destination bytes instead of MSA load and pack. Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com> Reviewed-by: Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Kaustubh Raste authored
Remove loops and unroll as block sizes are known. Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com> Reviewed-by: Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Dale Curtis authored
Technically _tzcnt* intrinsics are only available when the BMI instruction set is present. However the instruction encoding degrades to "rep bsf" on older processors. Clang for Windows debatably restricts the _tzcnt* instrinics behind the __BMI__ architecture define, so check for its presence or exclude the usage of these intrinics when clang is present. See also: https://ffmpeg.org/pipermail/ffmpeg-devel/2015-November/183404.html https://bugs.llvm.org/show_bug.cgi?id=30506 http://lists.llvm.org/pipermail/cfe-dev/2016-October/051034.htmlSigned-off-by: Dale Curtis <dalecurtis@chromium.org> Reviewed-by: Matt Oliver <protogonoi@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 24 Oct, 2017 6 commits
-
-
James Almer authored
* commit '26d9b603': hevc: Avoid using LOCAL_ALIGNED for 4 byte alignment Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '163cc67b': takdec: Use ISO C printf conversion specifiers where appropriate dcadec: remove extra indirection hevcdec: Use LOCAL_ALIGNED_* for declaring local variables with alignment arm: Always build the hevcdsp_init_arm.c file This commit is a noop. Merged-by: James Almer <jamrial@gmail.com>
-
Zhong Li authored
Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Code suggested by ubitux Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Felicia Lim authored
Enables demuxing of Ambisonics content coded with channel mapping 2 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-