- 12 Feb, 2018 29 commits
-
-
Mark Thompson authored
* commit 'a674b312': build: Ignore generated mpeg12framerate test binary This commit is a noop, see fb791d28Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit '5b6213ef': avcodec/vc1dec: fix mby_start for interlaced content This commit is a noop, see c9f72e4bMerged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit '9b09792c': lavc/qsv: default la_ds to MFX_LOOKAHEAD_DS_UNKNOWN This commit is a noop: the code in FFmpeg is slightly different and never contained the invalid value. Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit '8bb9824f': qsvenc: AVBR is not supported on non-windows OS Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit 'e412d683': hwcontext: Perform usual uninitialisation on derived frames contexts This commit is a noop, see 0f93cef2Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit 'caecb850': hwcontext: Perform usual initialisation on derived device contexts This commit is a noop, see 309d6607Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit 'c6bc18bc': vf_hwupload/hwmap: Support setting a fixed pool size Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit 'e4cdef00': vf_scale_qsv: Support increasing hardware frame pool size Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
Broken by d23fff0d.
-
Mark Thompson authored
* commit 'b128be17': vf_*_vaapi: Support increasing hardware frame pool size Rewritten to apply to common VAAPI code rather than specific filters. Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit '6d86cef0': lavfi: Add support for increasing hardware frame pool sizes Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit 'cad739da': lavc: Add per-thread surfaces in get_hw_frame_parameters() Merged-by: Mark Thompson <sw@jkqxz.net>
-
Mark Thompson authored
* commit '5b145290': lavc: Add support for increasing hardware frame pool sizes Merged-by: Mark Thompson <sw@jkqxz.net>
-
Carl Eugen Hoyos authored
Fixes an assertion failure: Assertion size >= 2 failed at libavformat/matroskaenc.c:298
-
Richard Shaffer authored
A basic test for demuxing raw AAC (ADTS) with ID3v2 tags.
-
Richard Shaffer authored
While rare, ID3 tags may be inserted between ADTS frames. This change enables parsing them and setting the appropriate metadata updated event flag.
-
James Almer authored
Fixes compilation of libavformat when librtmp is enabled but all the relevant protocols are disabled. Signed-off-by: James Almer <jamrial@gmail.com>
-
Rostislav Pehlivanov authored
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-
Diego Biurrun authored
-
Michael Niedermayer authored
Bug-Id: 1100 Bug-Id: ffmpeg/Ticket2531 Cc: libav-stable@libav.org
-
James Almer authored
* commit 'fd36cf6b': configure: Factorize check_64_bit() Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '38434a9f': configure: Simplify restrict keyword handling Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '4cf84e25': Drop some unnecessary config.h #includes Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit 'bca41545': configure: Group code that sets the license string with licensing checks Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '2eb396b1': hwcontext: Fix memory leak on derived frame allocation failure Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '96e476cc': hwcontext: Fix documentation for av_hwdevice_ctx_alloc() This commit is a noop, see 9365dfcbMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '8965e2af': avpacket: Initialize the allocated padding area in side data This commit is a noop, see 9cbb3fceMerged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '5085f25a': vc1: skip motion compensation when data for last picture is invalid This commit is a noop. The crash can't be reproduced with ffmpeg. Merged-by: James Almer <jamrial@gmail.com>
-
James Almer authored
* commit '6829a079': qsvdec: Relax the surface vs coded dimension check Merged-by: James Almer <jamrial@gmail.com>
-
- 11 Feb, 2018 11 commits
-
-
Ruiling Song authored
MFX_LOOKAHEAD_DS_UNKNOWN means auto. -1 is not a valid value. Signed-off-by: Ruiling Song <ruiling.song@intel.com> Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
-
Zhong Li authored
AVBR is supported from API 1.3 but only available for Windows Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
-
Muhammad Faiz authored
Remove runtime check at codec_desc.c Reviewed-by: wm4 <nfxjfg@googlemail.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
-
Mark Thompson authored
-
Mark Thompson authored
The initialisation should be common. For libmfx, it was previously happening in the derivation function and this moves it out.
-
Mark Thompson authored
These filters do not directly know whether the API they are using will support dynamic frame pools, so this is somewhat tricky. If the user sets extra_hw_frames, we assume that they are aware of the problem and set a fixed size based on that. If not, most cases use dynamic sizing just like they did previously. The hardware-reverse-mapping case for hwmap previously had a large fixed size (64) here, primarily as a hack for QSV use - this is removed and extra_hw_frames will need to be set for QSV to work since it requires fixed-size pools (as the other cases do, and which didn't work before).
-
Mark Thompson authored
The deinterlacer does not change, because it does not allocate any new frames (for output it uses the same pool as the input).
-
Mark Thompson authored
Defaults to 10 frames to preserve compatibility, but can allocate fewer if extra_hw_frames is set explicitly.
-
Mark Thompson authored
AVFilterContext.extra_hw_frames functions identically to the field of the same name in AVCodecContext.
-
Mark Thompson authored
This number is definitely required when frame threading is enabled, so add it here rather than forcing all users to handle it themselves. DXVA2 contained this addition in specific code as well (therefore being added twice in the internal case) - just remove it from there.
-
Mark Thompson authored
AVCodecContext.extra_hw_frames is added to the size of hardware frame pools created by libavcodec for APIs which require fixed-size pools. This allows the user to keep references to a greater number of frames after decode, which may be necessary for some use-cases. It is also added to the initial_pool_size value returned by avcodec_get_hw_frames_parameters() if a fixed-size pool is required.
-