]> git.sesse.net Git - ffmpeg/log
ffmpeg
6 years agox86/lossless_videodsp: rename ff_add_left_pred_int16_sse4 to ff_add_left_pred_int16_u...
James Almer [Sun, 10 Dec 2017 03:51:01 +0000 (00:51 -0300)]
x86/lossless_videodsp: rename ff_add_left_pred_int16_sse4 to ff_add_left_pred_int16_unaligned_ssse3

SSSE3_FAST is the proper check for it.

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agox86/lossless_videodsp: don't overread the dst buffer in ff_add_left_pred_unaligned_avx2
James Almer [Sun, 10 Dec 2017 03:38:05 +0000 (00:38 -0300)]
x86/lossless_videodsp: don't overread the dst buffer in ff_add_left_pred_unaligned_avx2

Fixes valgrind

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoamf: fix wrong profile level after auto-correction in H264 and HEVC
Mironov, Mikhail [Fri, 8 Dec 2017 19:23:38 +0000 (19:23 +0000)]
amf: fix wrong profile level after auto-correction in H264 and HEVC

Moved bitrate parameters set before Init() call because bitrate is used in
profile level correction code inside Init().

Signed-off-by: Mikhail Mironov <mikhail.mironov@amd.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agolavf/mov: modify code indentation
tiejun.peng [Fri, 8 Dec 2017 16:39:29 +0000 (00:39 +0800)]
lavf/mov: modify code indentation

Signed-off-by: tiejun.peng <tiejun.peng@foxmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agolavf/mov: add some useful warning log of eof
tiejun.peng [Fri, 8 Dec 2017 16:28:41 +0000 (00:28 +0800)]
lavf/mov: add some useful warning log of eof

Signed-off-by: tiejun.peng <tiejun.peng@foxmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/Makefile: Fix opus parser dependency.
Jacob Trimble [Thu, 7 Dec 2017 19:05:46 +0000 (11:05 -0800)]
avcodec/Makefile: Fix opus parser dependency.

The opus.c file uses ff_celt_freq_range and ff_celt_freq_bands which are
defined in opustab.c.  The opus parser needs to include that file to
avoid linker errors when not including the opus encoder/decoder.

Signed-off-by: Jacob Trimble <modmaker@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/decode: reset codec on receiving packet after EOF in compat_decode
James Cowgill [Thu, 9 Nov 2017 12:21:23 +0000 (12:21 +0000)]
avcodec/decode: reset codec on receiving packet after EOF in compat_decode

In commit 061a0c14bb57 ("decode: restructure the core decoding code"), the
deprecated avcodec_decode_* APIs were reworked so that they called into the
new avcodec_send_packet / avcodec_receive_frame API. This had the side effect
of prohibiting sending new packets containing data after a drain
packet, but in previous versions of FFmpeg this "worked" and some
applications relied on it.

To restore some compatibility, reset the codec if we receive a new non-drain
packet using the old API after draining has completed. While this does
not give the same behaviour as the old API did, in the majority of cases
it works and it does not require changes to any other part of the decoding
code.

Fixes ticket #6775
Signed-off-by: James Cowgill <jcowgill@debian.org>
Signed-off-by: Marton Balint <cus@passwd.hu>
6 years agoarm/hevc_idct: fix compilation on Android
James Almer [Fri, 8 Dec 2017 22:14:13 +0000 (19:14 -0300)]
arm/hevc_idct: fix compilation on Android

Compilation error "out of range" fixed for armeabi-v7a. Compilation failed
trying to build libvlc.aar for ARM7 android on ubuntu 16.04 host. Error
messages is "Offset out of range". The reason of the error is assembler LDR
directives in function "ff_hevc_transform_luma_4x4_neon_8" need local storage
in range <1k, but no such storage provided.

Based on a patch by Ihor Bobalo <bob@eleks.com>

Suggested-by: wbs
Signed-off-by: James Almer <jamrial@gmail.com>
6 years agocheckasm/llviddsp : add test for add_gradient_pred
Martin Vignali [Sat, 2 Dec 2017 18:47:24 +0000 (19:47 +0100)]
checkasm/llviddsp : add test for add_gradient_pred

6 years agoavcodec/utvideodec : add SIMD (SSSE3 and AVX2) for gradient_pred
Martin Vignali [Sat, 2 Dec 2017 18:46:42 +0000 (19:46 +0100)]
avcodec/utvideodec : add SIMD (SSSE3 and AVX2) for gradient_pred

6 years agoavcodec/x86/lossless_videodsp : add avx2 version for add_left_pred
Martin Vignali [Sat, 2 Dec 2017 18:09:58 +0000 (19:09 +0100)]
avcodec/x86/lossless_videodsp : add avx2 version for add_left_pred

6 years agoavcodec/x86/lossless_videodsp.asm : make macro for add_left_pred_unaligned in order...
Martin Vignali [Sat, 2 Dec 2017 18:04:11 +0000 (19:04 +0100)]
avcodec/x86/lossless_videodsp.asm : make macro for add_left_pred_unaligned in order to add avx2 version

6 years agocheckasm/llviddsp : test return of add_left_pred(16)
Martin Vignali [Sat, 2 Dec 2017 18:03:30 +0000 (19:03 +0100)]
checkasm/llviddsp : test return of add_left_pred(16)

6 years agoavcodec/huffyuvenc : sub_left_prediction_bgr32, call dsp after 32 first byte of the...
Martin Vignali [Sat, 2 Dec 2017 17:33:25 +0000 (18:33 +0100)]
avcodec/huffyuvenc : sub_left_prediction_bgr32, call dsp after 32 first byte of the line in order to try to call the align version (diff bytes have avx2 version)

6 years agoavcodec/huffyuvenc : remove code duplication in sub_left_prediction
Martin Vignali [Sat, 2 Dec 2017 17:32:05 +0000 (18:32 +0100)]
avcodec/huffyuvenc : remove code duplication in sub_left_prediction

start of the line (before dsp call), can be merge with width < 32 part

6 years agoavcodec/huffyuvenc : increase scalar loop count
Martin Vignali [Sat, 2 Dec 2017 17:30:26 +0000 (18:30 +0100)]
avcodec/huffyuvenc : increase scalar loop count

in order to try to call dsp in aligned mode
(diff_int16 have AVX2 now)

6 years agoavcodec/utvideodec : use dsp add_median_pred for second line
Martin Vignali [Sun, 26 Nov 2017 18:18:48 +0000 (19:18 +0100)]
avcodec/utvideodec : use dsp add_median_pred for second line

process start of the line in scalar, before call dsp
(dsp need align 16)

6 years agocheckasm/vf_threshold : add test for threshold16
Martin Vignali [Thu, 7 Dec 2017 21:03:44 +0000 (22:03 +0100)]
checkasm/vf_threshold : add test for threshold16

6 years agoavfilter/x86/vf_threshold : add threshold16 SIMD (SSE4 and AVX2)
Martin Vignali [Thu, 7 Dec 2017 21:01:54 +0000 (22:01 +0100)]
avfilter/x86/vf_threshold : add threshold16 SIMD (SSE4 and AVX2)

6 years agoavfilter/vf_scale: add more aliases for "range" options
Paul B Mahol [Fri, 8 Dec 2017 19:35:08 +0000 (20:35 +0100)]
avfilter/vf_scale: add more aliases for "range" options

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agofate: Fix fate-mov-bbi-elst-starts-b on ARM
Michael Niedermayer [Fri, 8 Dec 2017 15:58:10 +0000 (16:58 +0100)]
fate: Fix fate-mov-bbi-elst-starts-b on ARM

6 years agofate/mxf: add reel name test
Mark Reid [Tue, 5 Dec 2017 04:46:23 +0000 (20:46 -0800)]
fate/mxf: add reel name test

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavformat/mxfenc: write reel_name if metadata key is present
Mark Reid [Tue, 5 Dec 2017 04:46:22 +0000 (20:46 -0800)]
avformat/mxfenc: write reel_name if metadata key is present

Reviewed-by: Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavformat/mxfenc: use track count to generate component instance uuid
Mark Reid [Tue, 5 Dec 2017 04:46:21 +0000 (20:46 -0800)]
avformat/mxfenc: use track count to generate component instance uuid

Reviewed-by: Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agolibavcodec/hevc_filter: move AVDISCARD_NONREF switch-case into function
sfan5 [Thu, 7 Dec 2017 19:37:48 +0000 (20:37 +0100)]
libavcodec/hevc_filter: move AVDISCARD_NONREF switch-case into function

In preparation for implementation of skip_frame.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/nvdec: Fix capability check with old drivers.
Jacob Trimble [Thu, 30 Nov 2017 20:35:50 +0000 (12:35 -0800)]
avcodec/nvdec: Fix capability check with old drivers.

Copied the check from cuviddec.c (*_cuvid decoders) to allow the
capability check to be optional for older drivers.

Signed-off-by: Jacob Trimble <modmaker@google.com>
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
6 years agovf_zscale: Fix alpha destination graph for floating point pixel formats
Vittorio Giovara [Thu, 7 Dec 2017 21:32:22 +0000 (16:32 -0500)]
vf_zscale: Fix alpha destination graph for floating point pixel formats

This was setting the input pixel type instead of the output one,
leading to incorrect data being fed to the library.

Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
6 years agoavformat: add NSP demuxer
Paul B Mahol [Fri, 1 Dec 2017 14:15:13 +0000 (15:15 +0100)]
avformat: add NSP demuxer

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agoavfilter/vf_waveform: add default case when picking input formats
Paul B Mahol [Fri, 8 Dec 2017 11:31:01 +0000 (12:31 +0100)]
avfilter/vf_waveform: add default case when picking input formats

Should silence compiler warnings.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agoopus: fix hybrid folding indexing during band quantization
Rostislav Pehlivanov [Fri, 8 Dec 2017 03:40:41 +0000 (03:40 +0000)]
opus: fix hybrid folding indexing during band quantization

Resulted in valgrind errors due to uninitialized memory.
Also updates fate and makes it use the tron sample result.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agofate-opus: run and test inactive samples
Rostislav Pehlivanov [Tue, 5 Dec 2017 02:03:15 +0000 (02:03 +0000)]
fate-opus: run and test inactive samples

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agox86/vf_hflip: use xor to zero initialize registers
James Almer [Thu, 7 Dec 2017 22:28:19 +0000 (19:28 -0300)]
x86/vf_hflip: use xor to zero initialize registers

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agox86/vf_hflip: don't load the width argument twice
James Almer [Thu, 7 Dec 2017 21:09:00 +0000 (18:09 -0300)]
x86/vf_hflip: don't load the width argument twice

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agolavc/libx265: mark disposable frames
John Stebbins [Wed, 6 Dec 2017 00:36:58 +0000 (16:36 -0800)]
lavc/libx265: mark disposable frames

Used by movenc to fill sdtp box

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/libx265 - Add named option to set profile
Gyan Doshi [Tue, 5 Dec 2017 07:47:53 +0000 (13:17 +0530)]
avcodec/libx265 - Add named option to set profile

Adds call to x265_param_apply_profile after x265_param_parse.
Added as private option since HEVC profiles other than
Main, Main 10 and MSP in AVCodecContext are consolidated in a single
constant.

Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com>
Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Reviewed-by: Lou Logan <lou@lrcd.com>
6 years agoavcodec/diracdsp: Fix integer overflow in PUT_SIGNED_RECT_CLAMPED()
Michael Niedermayer [Sat, 2 Dec 2017 20:53:22 +0000 (21:53 +0100)]
avcodec/diracdsp: Fix integer overflow in PUT_SIGNED_RECT_CLAMPED()

Fixes: runtime error: signed integer overflow: 2147483646 + 2048 cannot be represented in type 'int'
Fixes: 4479/clusterfuzz-testcase-minimized-6529894147162112
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/dirac_dwt: Fix integer overflows in COMPOSE_DAUB97*
Michael Niedermayer [Sat, 2 Dec 2017 20:48:04 +0000 (21:48 +0100)]
avcodec/dirac_dwt: Fix integer overflows in COMPOSE_DAUB97*

Fixes: 4478/clusterfuzz-testcase-minimized-4752113767809024
Fixes: runtime error: signed integer overflow: -2147483626 + -319489 cannot be represented in type 'int'
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavformat/mux: stop delaying writing the header
James Almer [Sun, 26 Nov 2017 19:47:26 +0000 (16:47 -0300)]
avformat/mux: stop delaying writing the header

Every bitstream filter behaves as intended now, so there's no need to
wait for the first packet of every stream.

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoavcodec/extract_extradata_bsf: Fix leak discovered via fuzzing
Nikolas Bowe [Tue, 5 Dec 2017 23:11:26 +0000 (15:11 -0800)]
avcodec/extract_extradata_bsf: Fix leak discovered via fuzzing

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavfilter: add setrange filter
Paul B Mahol [Sun, 3 Dec 2017 10:59:58 +0000 (11:59 +0100)]
avfilter: add setrange filter

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agotests/fate/mov: Fix fate-mov-invalid-elst-entry-count failure on ARM
Michael Niedermayer [Wed, 6 Dec 2017 00:03:28 +0000 (01:03 +0100)]
tests/fate/mov: Fix fate-mov-invalid-elst-entry-count failure on ARM

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agofate/hevc: add skip_loop_filter test
sfan5 [Tue, 5 Dec 2017 11:47:47 +0000 (12:47 +0100)]
fate/hevc: add skip_loop_filter test

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agodoc/developer: revise mailing list section
Jim DeLaHunt [Mon, 4 Dec 2017 07:09:02 +0000 (23:09 -0800)]
doc/developer: revise mailing list section

The Developer Documentation had instructions to
subscribe to the ffmpeg-cvslog email list. But that is
no longer accurate. For the purposes in this section --
review of patches, discussion of development issues --
ffmpeg_devel is the appropriate email list. Some developers
may want to monitor ffmpeg-cvslog, but it is not mandatory.

This is v3 of this doc, based on discussion in thread
<https://ffmpeg.org/pipermail/ffmpeg-devel/2017-November/220528.html>
and in response to docs Maintainer comments in
<https://ffmpeg.org/pipermail/ffmpeg-devel/2017-December/221596.html>.

1. In doc/developer.texi, add a new section about
ffmpeg-devel, based on existing text from ffmpeg-cvslog
section regarding discussion of patches and of
development issues. Reflect wording from discussion at
<https://ffmpeg.org/pipermail/ffmpeg-devel/2017-November/221199.html>
but with copy-editing to make wording more concise.

2. In doc/developer.texi, rewrite the ffmpeg-cvslog section
to match the current usage of ffmpeg-cvslog. Some
developers choose to follow this list, but it is not
mandatory.

There are a lot of improvements possible to the
Developer Documentation page, beyond this refactoring.
However, making those improvements is a much bigger
and more difficult task.  This change is "low hanging
fruit".

Signed-off-by: Jim DeLaHunt <from.ffmpeg-dev@jdlh.com>
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
6 years agovaapi_h265: Add named options for setting profile and level
Mark Thompson [Wed, 29 Nov 2017 21:31:53 +0000 (21:31 +0000)]
vaapi_h265: Add named options for setting profile and level

Also fixes the default, which previously contained a nonsense value.

6 years agovaapi_h264: Add named options for setting profile and level
Mark Thompson [Wed, 29 Nov 2017 21:31:11 +0000 (21:31 +0000)]
vaapi_h264: Add named options for setting profile and level

6 years agorkmpp: Add hardware config information
Mark Thompson [Fri, 1 Dec 2017 22:01:41 +0000 (22:01 +0000)]
rkmpp: Add hardware config information

This is not strictly required here because the rkmpp decoder does not
call ff_get_format(), but it may be helpful metadata for users.

6 years agoavfilter/vf_convolution: add 7x7 filter
Paul B Mahol [Mon, 4 Dec 2017 20:32:29 +0000 (21:32 +0100)]
avfilter/vf_convolution: add 7x7 filter

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agox86/vf_threshold: make threshold8 functions work on x86_32
James Almer [Mon, 4 Dec 2017 18:04:43 +0000 (15:04 -0300)]
x86/vf_threshold: make threshold8 functions work on x86_32

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agofate/checkasm: add missing target for vf_threshold test
James Almer [Mon, 4 Dec 2017 18:39:19 +0000 (15:39 -0300)]
fate/checkasm: add missing target for vf_threshold test

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agocheckasm/vf_threshold: fix mixed code and declarations
James Almer [Mon, 4 Dec 2017 18:26:34 +0000 (15:26 -0300)]
checkasm/vf_threshold: fix mixed code and declarations

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agolibavcodec/hevc_filter: support for all skip_loop_filter levels.
sfan5 [Thu, 30 Nov 2017 22:58:02 +0000 (23:58 +0100)]
libavcodec/hevc_filter: support for all skip_loop_filter levels.

Continues where commit 52c75d486ed5f75cbb79e5dbd07b7aef24f3071f left off.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavformat/hlsenc: fix compiling error when disable-network
Steven Liu [Mon, 4 Dec 2017 15:52:17 +0000 (23:52 +0800)]
avformat/hlsenc: fix compiling error when disable-network

6 years agoavfilter/x86/vf_hflip.asm: fix building on x32
Paul B Mahol [Mon, 4 Dec 2017 14:08:43 +0000 (15:08 +0100)]
avfilter/x86/vf_hflip.asm: fix building on x32

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agofate-opus: update tests to use new decoder outputs
Rostislav Pehlivanov [Mon, 4 Dec 2017 10:50:23 +0000 (10:50 +0000)]
fate-opus: update tests to use new decoder outputs

Can't overwrite old ones.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agoopus_pvq: do not compile encoding/decoding code if the encoder/decoder is disabled
Rostislav Pehlivanov [Mon, 4 Dec 2017 08:57:45 +0000 (08:57 +0000)]
opus_pvq: do not compile encoding/decoding code if the encoder/decoder is disabled

This should save quite a bit of space if either has been disabled for size reasons.
Could just check if the encoding flag is set during runtime on every single location,
however the overhead of branch misses would somewhat decrease performance.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agoopus_celt: deduplicate band quantization/dequantization function
Rostislav Pehlivanov [Mon, 4 Dec 2017 08:55:45 +0000 (08:55 +0000)]
opus_celt: deduplicate band quantization/dequantization function

No point in having the same code twice to do exactly the same thing.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agoavfilter: add hflip x86 SIMD
Paul B Mahol [Fri, 1 Dec 2017 19:56:45 +0000 (20:56 +0100)]
avfilter: add hflip x86 SIMD

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agofate-opus: update to match the changes from RFC8251
Rostislav Pehlivanov [Mon, 4 Dec 2017 07:26:33 +0000 (07:26 +0000)]
fate-opus: update to match the changes from RFC8251

Also change note to say that we compare against the officially decoded
samples rather than our own, this was changed long ago.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agoopus: add an option to toggle intensity stereo phase inversion
Rostislav Pehlivanov [Mon, 4 Dec 2017 06:36:42 +0000 (06:36 +0000)]
opus: add an option to toggle intensity stereo phase inversion

Due to a somewhat high volume of complains, phase inversion has
been made optional with RFC8251. This allows for better bass
frequency response when partially downmixing to play on systems
with an LFE speaker.

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
6 years agoopus: Add Special Hybrid Folding (per RFC8251)
Andrew D'Addesio [Sat, 2 Dec 2017 17:46:58 +0000 (11:46 -0600)]
opus: Add Special Hybrid Folding (per RFC8251)

This decoder-side change, introduced in RFC 8251 (section 9), slightly
improves the decoded quality of 16kbps speech in Hybrid Mode.

Differences can be seen/heard in testvector05.bit, testvector06.bit,
and testvector12.bit in the RFC 6716/8251 testvectors found here:
https://people.xiph.org/~greg/opus_testvectors/

Signed-off-by: Andrew D'Addesio <modchipv12@gmail.com>
6 years agoopus_celt: Fix arithmetic overflow (per RFC8251)
Andrew D'Addesio [Sat, 2 Dec 2017 17:36:25 +0000 (11:36 -0600)]
opus_celt: Fix arithmetic overflow (per RFC8251)

As per Sec.8 of RFC8251:
    Cap on Band Energy
    NaN due to large log-energy value. Affects celt_denormalize().

Signed-off-by: Andrew D'Addesio <modchipv12@gmail.com>
6 years agoopus_silk: Fix arithmetic overflow (per RFC8251)
Andrew D'Addesio [Sat, 2 Dec 2017 17:36:25 +0000 (11:36 -0600)]
opus_silk: Fix arithmetic overflow (per RFC8251)

As per Sec.6 of RFC8251:
    Integer Wrap-Around in Inverse Gain Computation
    32-bit integer overflow in Levinson recursion. Affects
    silk_is_lpc_stable().

Signed-off-by: Andrew D'Addesio <modchipv12@gmail.com>
6 years agolibavutil: Add saturating subtraction functions
Andrew D'Addesio [Sat, 2 Dec 2017 17:36:24 +0000 (11:36 -0600)]
libavutil: Add saturating subtraction functions

Add av_sat_sub32 and av_sat_dsub32 as the subtraction analogues to
av_sat_add32/av_sat_dadd32.

Also clarify the formulas for dadd32/dsub32.

Signed-off-by: Andrew D'Addesio <modchipv12@gmail.com>
6 years agox86vf_threshold/: use the PBLENDVB macro
James Almer [Mon, 4 Dec 2017 05:20:52 +0000 (02:20 -0300)]
x86vf_threshold/: use the PBLENDVB macro

Fixes building with yasm

Tested-by: stevenliu
Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoavformat/dashenc: add avpriv_io_move return value check
Steven Liu [Mon, 4 Dec 2017 04:06:26 +0000 (12:06 +0800)]
avformat/dashenc: add avpriv_io_move return value check

fix cid: 1424883

Suggested-by: Moritz Barsnick <barsnick@gmx.net>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
6 years agoavformat/hlsplaylist: add return value check of strftime
Steven Liu [Mon, 4 Dec 2017 04:05:04 +0000 (12:05 +0800)]
avformat/hlsplaylist: add return value check of strftime

fix CID: 1424884
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
6 years agoavformat/hlsplaylist: add int type of API ff_hls_write_file_entry
Steven Liu [Mon, 4 Dec 2017 04:03:37 +0000 (12:03 +0800)]
avformat/hlsplaylist: add int type of API ff_hls_write_file_entry

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
6 years agoavformat/hlsenc: fix baseurl missing last char
Robert Nagy [Mon, 4 Dec 2017 04:00:13 +0000 (12:00 +0800)]
avformat/hlsenc: fix baseurl missing last char

Reviewed-by: Steven Liu <lq@onvideo.cn>
6 years agolavf/mov: Fix missing newline.
Carl Eugen Hoyos [Mon, 4 Dec 2017 03:15:49 +0000 (04:15 +0100)]
lavf/mov: Fix missing newline.

6 years agoavformat/mxfdec: fix last packet timestamps
Marton Balint [Thu, 23 Nov 2017 21:47:22 +0000 (22:47 +0100)]
avformat/mxfdec: fix last packet timestamps

The current edit unit cannot be reliably determined for the last packet of a
video stream, because we can't query the start offset of the next edit unit
from the index. This caused missing timestamps for the last video packet.

Therefore from now on, we allow setting the PTS even if we are not sure of the
current edit unit if mxf_set_current_edit_unit returned a specific failure, and
the assumed current edit unit is the last.

Fixes last packet timestamp of:
ffprobe -fflags nofillin -show_packets tests/data/lavf/lavf.mxf -select_streams v

Signed-off-by: Marton Balint <cus@passwd.hu>
6 years agoavfilter/x86/vf_threshold : cosmetic indent
Martin Vignali [Sun, 3 Dec 2017 16:04:38 +0000 (17:04 +0100)]
avfilter/x86/vf_threshold : cosmetic indent

6 years agoavfilter/x86/vf_threshold : add avx2 version for threshold 8
Martin Vignali [Sun, 3 Dec 2017 16:02:44 +0000 (17:02 +0100)]
avfilter/x86/vf_threshold : add avx2 version for threshold 8

6 years agoavfilter/x86/vf_threshold : make macro for threshold8 in order to add avx2 version
Martin Vignali [Sun, 3 Dec 2017 15:58:09 +0000 (16:58 +0100)]
avfilter/x86/vf_threshold : make macro for threshold8 in order to add avx2 version

6 years agocheckasm/vf_threshold : add checkasm test for threshold8
Martin Vignali [Sun, 3 Dec 2017 15:56:25 +0000 (16:56 +0100)]
checkasm/vf_threshold : add checkasm test for threshold8

6 years agoavfilter/vf_threshold : move context func init in ff_threshold_init
Martin Vignali [Sun, 3 Dec 2017 15:55:37 +0000 (16:55 +0100)]
avfilter/vf_threshold : move context func init in ff_threshold_init

6 years agodoc: reorganize developer.texi chapter hierarchy
Jim DeLaHunt [Sun, 26 Nov 2017 08:31:11 +0000 (00:31 -0800)]
doc: reorganize developer.texi chapter hierarchy

Previously, the Developer Documentation <ffmpeg.org/developer.html>
contained a single chapter, "1. Developer Guide," with all content under
that single chapter. Thus the document structure was one level deeper
and more complicated than it needed to be.  It differed from similar
documents such as /faq.html, which have multiple chapters.

Eliminate the single chapter, and promote each section underneath to
chapter, and each subsection to section. Thus content and relative
structure remains the same, but the overall structure is simpler.
Anchors within the page remain the same.

Signed-off-by: Jim DeLaHunt <from.ffmpeg-dev@jdlh.com>
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
6 years agoavcodec/h264_parse: Treat escaped and unescaped decoding error equal in decode_extrad...
Michael Niedermayer [Sat, 25 Nov 2017 21:21:16 +0000 (22:21 +0100)]
avcodec/h264_parse: Treat escaped and unescaped decoding error equal in decode_extradata_ps_mp4()

Fixes: lorex.mp4
Fixes: ticket6762
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavfilter/vf_stack: always copy SAR from first input
Paul B Mahol [Sat, 2 Dec 2017 22:29:49 +0000 (23:29 +0100)]
avfilter/vf_stack: always copy SAR from first input

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agolavf/movenc: add sdtp (sample dependency) box
John Stebbins [Sun, 19 Nov 2017 20:46:30 +0000 (12:46 -0800)]
lavf/movenc: add sdtp (sample dependency) box

The sdtp is required by the AppleTV 4K in order to play 2160p60 video.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavformat/oggdec: Respect AVERROR codes returned by ogg parsers.
Dale Curtis [Tue, 28 Nov 2017 21:40:20 +0000 (13:40 -0800)]
avformat/oggdec: Respect AVERROR codes returned by ogg parsers.

Fixes ticket #6804. All of the ogg header and packet parsers may
return standard AVERROR codes; these return values should not be
treated as success.

Additionally changes oggparsevorbis, to not give up too early
with certain types of poorly muxed files.

Signed-off-by: Dale Curtis <dalecurtis@chromium.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavutil/mem: Add DECLARE_ASM_ALIGNED macro for DJGPP architecture.
Thomas Köppe [Tue, 14 Nov 2017 18:26:49 +0000 (18:26 +0000)]
avutil/mem: Add DECLARE_ASM_ALIGNED macro for DJGPP architecture.

The macro was added in 43171a2a738f5114768d34a7278e56e5fde714bc, but I forgot to add it to the DJGPP architecture in that change.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/x86/bswapdsp : use macro for 128 bits constants loading in xmm or ymm
Martin Vignali [Sat, 2 Dec 2017 17:22:32 +0000 (18:22 +0100)]
avcodec/x86/bswapdsp : use macro for 128 bits constants loading in xmm or ymm

6 years agoavutil/x86util : add macro for loading a 128 bits constants in an xmm or in each...
Martin Vignali [Sat, 2 Dec 2017 17:22:14 +0000 (18:22 +0100)]
avutil/x86util : add macro for loading a 128 bits constants in an xmm or in each part of an ymm in order to simplify avx2 asm func

6 years agoavfilter/vf_threshold: add x86 SIMD
Paul B Mahol [Sun, 12 Nov 2017 18:11:51 +0000 (19:11 +0100)]
avfilter/vf_threshold: add x86 SIMD

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agoavcodec/jpeg2000: Only allocate Jpeg2000Pass for the encoder
Michael Niedermayer [Thu, 30 Nov 2017 20:51:56 +0000 (21:51 +0100)]
avcodec/jpeg2000: Only allocate Jpeg2000Pass for the encoder

Reduces memory needed.
Fixes: OOM
Fixes: 4427/clusterfuzz-testcase-minimized-5106919271301120
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/j2kenc: Fix out of array access in encode_cblk()
Michael Niedermayer [Thu, 30 Nov 2017 22:42:04 +0000 (23:42 +0100)]
avcodec/j2kenc: Fix out of array access in encode_cblk()

Fixes: 4427/clusterfuzz-testcase-minimized-5106919271301120
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavcodec/hevcdsp_template: Fix undefined shift in put_hevc_epel_bi_w_h()
Michael Niedermayer [Thu, 30 Nov 2017 20:27:37 +0000 (21:27 +0100)]
avcodec/hevcdsp_template: Fix undefined shift in put_hevc_epel_bi_w_h()

Fixes: runtime error: left shift of negative value -127
Fixes: 4397/clusterfuzz-testcase-minimized-4779061080489984
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoexamples/vaapi_encode: Fix leak on hwframe init failure
Mark Thompson [Fri, 1 Dec 2017 21:06:42 +0000 (21:06 +0000)]
examples/vaapi_encode: Fix leak on hwframe init failure

Fixes CID #1424882.

6 years agomediacodecdec: fix build by including hwaccel.h
Jan Ekström [Fri, 1 Dec 2017 20:21:54 +0000 (22:21 +0200)]
mediacodecdec: fix build by including hwaccel.h

Enables the decoder to utilize the type AVCodecHWConfigInternal.

6 years agocheckasm/utvideo : be more explicit to the WIDTH_PADDED define
Martin Vignali [Tue, 21 Nov 2017 21:01:42 +0000 (22:01 +0100)]
checkasm/utvideo : be more explicit to the WIDTH_PADDED define

6 years agoavfilter: add fillborders filter
Paul B Mahol [Sat, 18 Nov 2017 17:18:39 +0000 (18:18 +0100)]
avfilter: add fillborders filter

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agoavcodec/vorbis: Fix another 1 << 31 > int32_t::max() with 1u.
Dale Curtis [Thu, 30 Nov 2017 20:20:36 +0000 (12:20 -0800)]
avcodec/vorbis: Fix another 1 << 31 > int32_t::max() with 1u.

Didn't notice this one when 9648cc6d was landed.

Signed-off-by: Dale Curtis <dalecurtis@chromium.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agoavfilter/vf_tile: add init_padding option
Paul B Mahol [Fri, 17 Nov 2017 20:33:37 +0000 (21:33 +0100)]
avfilter/vf_tile: add init_padding option

Signed-off-by: Paul B Mahol <onemda@gmail.com>
6 years agoavcodec/h264_slice: use H264_SEI_FpaType enum constants
James Almer [Fri, 1 Dec 2017 04:17:44 +0000 (01:17 -0300)]
avcodec/h264_slice: use H264_SEI_FpaType enum constants

Cosmetic change.

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoavcodec/h264_sei: remove redundant prefix to H264SEIFramePacking fields
James Almer [Fri, 1 Dec 2017 04:09:43 +0000 (01:09 -0300)]
avcodec/h264_sei: remove redundant prefix to H264SEIFramePacking fields

Cosmetic change.

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoconfigure: Fix dependencies of aac_at decoder.
Jacob Trimble [Thu, 30 Nov 2017 22:58:59 +0000 (14:58 -0800)]
configure: Fix dependencies of aac_at decoder.

Signed-off-by: Jacob Trimble <modmaker@google.com>
Signed-off-by: James Almer <jamrial@gmail.com>
6 years agolavf/mov: fix huge alloc in mov_read_ctts
John Stebbins [Sun, 26 Nov 2017 15:32:30 +0000 (07:32 -0800)]
lavf/mov: fix huge alloc in mov_read_ctts

An invalid file may cause huge alloc.  Delay expansion of ctts entries
until the number of samples is known in mov_build_index.

Fixes: 23
Found-by: zhao dongzhuo, AD-lab of Venustech
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
6 years agolavfi/libvmaf: Rename local variable "main" as "master".
Carl Eugen Hoyos [Thu, 30 Nov 2017 13:13:15 +0000 (14:13 +0100)]
lavfi/libvmaf: Rename local variable "main" as "master".

Fixes the following warning:
libavfilter/vf_libvmaf.c:179:14: warning: 'main' is usually a function

Missed in 5d3e9357

6 years agoconfigure: select vp9_superframe_split_bsf when enabling vp9_decoder
James Almer [Thu, 30 Nov 2017 04:51:16 +0000 (01:51 -0300)]
configure: select vp9_superframe_split_bsf when enabling vp9_decoder

This is required since a5679933c1b8b6bef5c5c3eb7c70d06c695066cf

Signed-off-by: James Almer <jamrial@gmail.com>
6 years agoavformat/avc: support writting more than one sps/pps in ff_isom_write_avcc
James Almer [Sat, 25 Nov 2017 01:36:22 +0000 (22:36 -0300)]
avformat/avc: support writting more than one sps/pps in ff_isom_write_avcc

Addresses ticket #6864

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>