U. Artie Eoff [Fri, 21 Feb 2020 14:54:47 +0000 (06:54 -0800)]
vaapipostproc: only set VPP colorimetry when VPP is available
If we don't have functional vpp then we should not call
gst_vaapi_filter_set_colorimetry.
He Junyan [Sat, 15 Feb 2020 17:25:37 +0000 (01:25 +0800)]
videobufferpool: don't reset surface when created internally
The bug fixing, in commit
89f202ea, just considers the case when
surface's DMABuf is set through gst_buffer_pool_acquire_buffer(),
which is typically a decoder's behavior. But vaapipostproc doesn't
provide any surface when calling gst_buffer_pool_acquire_buffer(),
thus a surface is created when GstMemory is allocated.
If the surface proxy in buffer's meta is reset at
buffer_pool_reset_buffer(), that surface will be destroyed and it
won't be available anymore. But GstBuffers are cached in the buffer
pool and they are reused again, hence only those images are rendered
repeatedly.
Fixes: #232
Víctor Manuel Jáquez Leal [Sun, 16 Feb 2020 16:19:04 +0000 (17:19 +0100)]
libs: blend: filter: handle finalize() if display isn't assigned
I've just discovered iHD driver in Skylake doesn't have VideoProc
entry point, hence, in this platform, when vaapioverlay is tried to be
registered, critical warnings are raised because blend doesn't have a
display assigned.
As it is possible to have drivers without EntryPointVideoProc it is
required to handle it gracefully. This patch does that: only tries to
register vaapioverlay if the testing display has VPP and finalize()
vmethods, in filter and blend, bail out if display is NULL.
U. Artie Eoff [Sat, 15 Feb 2020 19:02:49 +0000 (11:02 -0800)]
libs: filter: guard all color properties to VA-API 1.2.0
Older VA-API (0.39.0) doesn't have VAProcColorProperties.
Thus, guard all colorimetry -> VA-API support to version
1.2.0.
Fixes #234
Víctor Manuel Jáquez Leal [Mon, 17 Feb 2020 07:55:36 +0000 (08:55 +0100)]
libs: decoder: h265: set parser info state at decoding codec data
Commit
1168d6d5 showed up a regression: decode_sps() stores the unit's
parser info in sps array. If that parser info comes from decoding
codec data, that parser info will have an undefined state which might
break ensure_sps().
This patch sets the parser info state, at decoding codec data, with
the internal parser state. This is similar with h264 decoder apprach.
Original-patch-by: Xu Guangxin <guangxin.xu@intel.com>
Víctor Manuel Jáquez Leal [Fri, 7 Feb 2020 14:24:18 +0000 (15:24 +0100)]
vaapipostproc: demote log message to trace level
Víctor Manuel Jáquez Leal [Fri, 14 Feb 2020 13:45:56 +0000 (14:45 +0100)]
libs: video-format: set general vaapi log category
Instead of logging in an unspecified category, set the default vaapi.
U. Artie Eoff [Sat, 15 Feb 2020 19:44:48 +0000 (11:44 -0800)]
libs: utils: guard EncSliceLP for VA-API < 0.39.1
Relates to #234
Haihao Xiang [Fri, 14 Feb 2020 08:17:04 +0000 (16:17 +0800)]
libs: h265enc: Set VA_PICTURE_HEVC_INVALID flag for invalid picture
Víctor Manuel Jáquez Leal [Tue, 11 Feb 2020 10:31:31 +0000 (11:31 +0100)]
libs: remove crumbs of libva < 0.39
All these guarded code seem like leftovers of commit
920b1ec7a. This
patch completes that missing clean up.
U. Artie Eoff [Tue, 11 Feb 2020 08:38:40 +0000 (00:38 -0800)]
libs: VA explicit color standard not supported until 1.2.0
VAProcColorStandardExplicit and associated VAProcColorProperties
(primaries, transfer and matrix) are not supported until
VA-API 1.2.0.
Use VAProcColorStandardNone instead of VAProcColorStandardExplicit
if VA-API < 1.2.0.
Fixes #231
U. Artie Eoff [Mon, 10 Feb 2020 17:31:15 +0000 (09:31 -0800)]
libs: utils: WA: use explicit for sRGB colorimetry
Addresses #228 on iHD side. It seems iHD can't handle
VAProcColorStandardSRGB in all situations for vpp. But
it has no problem when we specify the sRGB parameters
via VAProcColorStandardExplicit parameters.
U. Artie Eoff [Fri, 7 Feb 2020 19:25:31 +0000 (11:25 -0800)]
libs: filter: set vpp input/output color range
We've always sent VA_SOURCE_RANGE_UNKNOWN to the driver.
And, the [iHD] driver essentially computes the same color
range as gstreamer when we send VA_SOURCE_RANGE_UNKNOWN for
cases were gstreamer computes it automatically. But,
if the user wants to make it explicit, we should try
to honor it.
U. Artie Eoff [Fri, 7 Feb 2020 19:20:11 +0000 (11:20 -0800)]
libs: utils: map GstVideoColorRange to VAAPI VPP
Víctor Manuel Jáquez Leal [Fri, 7 Feb 2020 14:28:24 +0000 (15:28 +0100)]
vaapidecode: don't remove chroma-site nor colorimetry
Since now they can be handled by vaapipostproc.
U. Artie Eoff [Tue, 4 Feb 2020 22:17:43 +0000 (14:17 -0800)]
vaapipostproc: use sink resolution to calculate src colorimetry
The default output colorimetry is persuaded by the output
resolution, which is too naive when doing VPP cropping
and/or scaling. For example, scaling 4K(sink)->1080P(src)
resolution (i.e. both YUV) results in bt2020(sink)->bt709(src)
colorimetry selection and some drivers don't support that
mode in vpp.
Thus, if output (i.e. downstream) does not specify a
colorimetry then we use the input resolution instead of the
output resolution to create the default colorimetry. Also,
note that we still use the output format since it may be a
different color space than the input. As in the example
above, this will result in bt2020(sink)->bt2020(src)
colorimetry selection and all drivers (afaik) should support
that in vpp.
U. Artie Eoff [Tue, 4 Feb 2020 17:57:42 +0000 (09:57 -0800)]
vaapipostproc: set srcpad colorimetry unconditionally
We always need a srcpad colorimetry for VAAPI VPP
operations.
Also, check the return value of _set_colorimetry.
U. Artie Eoff [Thu, 30 Jan 2020 20:34:07 +0000 (12:34 -0800)]
vaapipostproc: do not override explicit srcpad colorimetry
If colorimetry has been set by a capsfilter (e.g.
vaapipostproc ! video/x-raw,colorimetry=bt709) then
don't try to override it. Previously, the aforementioned
capsfilter will fail to negotiate if default colorimetry
is not the same as the capsfilter (e.g. 4K resolutions).
U. Artie Eoff [Thu, 30 Jan 2020 17:37:18 +0000 (09:37 -0800)]
vaapipostproc: set vpp filter colorimetry
Set the input and output colorimetry for vpp filter.
U. Artie Eoff [Thu, 30 Jan 2020 17:34:10 +0000 (09:34 -0800)]
libs: filter: support vpp input/output color standard
Add API function to allow setting the input and output vpp
color standard from GstVideoColorimetry.
U. Artie Eoff [Tue, 4 Feb 2020 19:32:54 +0000 (11:32 -0800)]
libs: utils: map GstVideoColorimetry to VAAPI VPP
Fallback to VAProcColorStandardExplicit if there is no
1:1 mapping.
U. Artie Eoff [Tue, 4 Feb 2020 18:27:23 +0000 (10:27 -0800)]
libs: display: add vpp color standard quirk for i965 driver
The i965 does not properly report supported vpp color
standards.
Víctor Manuel Jáquez Leal [Sun, 2 Feb 2020 17:04:35 +0000 (18:04 +0100)]
vaapivideobufferpool: dmabuf implies allocator
Some code can be optimized since only if the dmabuf allocator is set,
the internal flag of dmabuf is TRUE, thus there's no need to evaluate
the allocator address.
Víctor Manuel Jáquez Leal [Wed, 29 Jan 2020 10:55:39 +0000 (11:55 +0100)]
vaapivideobufferpool: reject configuration if allocator isn't vaapi
If the requested allocator in set_config() is not a VAAPI valid one,
reject the configuration, instead of lying and using a private one.
This patch superseeds !254 and !24
Víctor Manuel Jáquez Leal [Wed, 29 Jan 2020 10:55:28 +0000 (11:55 +0100)]
vaapivideobufferpool: add explanation for allocator reconfig
Víctor Manuel Jáquez Leal [Wed, 29 Jan 2020 10:54:38 +0000 (11:54 +0100)]
vaapivideobufferpool: check for vaapi meta first
If the configured meta doesn't request vaapi meta then it is not a
vaapi buffer pool. Bail out as soon as possible.
Víctor Manuel Jáquez Leal [Wed, 29 Jan 2020 10:52:38 +0000 (11:52 +0100)]
vaapivideobufferpool: turn errors into warnings
set_config() vmethod should fail gracefully, thus upstream could
negotiate another pool if possible.
Instead of sending error messages to the bus, let demote the level
to warning.
Víctor Manuel Jáquez Leal [Wed, 29 Jan 2020 10:51:47 +0000 (11:51 +0100)]
libs: display: log out vendor string when available
This is useful while asking for logs to know the used driver.
Víctor Manuel Jáquez Leal [Mon, 27 Jan 2020 10:49:26 +0000 (11:49 +0100)]
libs: surface: initialize VASurfaceAttribExternalBuffers
Initialize VASurfaceAttribExternalBuffers using compiler's syntax
rather than using memset().
Víctor Manuel Jáquez Leal [Mon, 27 Jan 2020 10:44:49 +0000 (11:44 +0100)]
libs: surface: merge two loops into one
Merge two loops into one for setting offsets and strides in the
external buffer descriptor.
Víctor Manuel Jáquez Leal [Wed, 22 Jan 2020 09:42:35 +0000 (10:42 +0100)]
libs: surface: surfacepool: rename variable for clearity
In order to be readable, the meaningless 'flags' is renamed to
surface_allocation_flags, which is clearer.
Víctor Manuel Jáquez Leal [Mon, 27 Jan 2020 17:40:46 +0000 (18:40 +0100)]
vaapivideobufferpool: Reuse internal allocator is possible.
Instead of creating a new allocator when upstream requests a different
allocator, this patch tries to reuse the internal allocator if it was
already initializated.
If the stream changes, then either one will be unref and a new
allocator is created.
Víctor Manuel Jáquez Leal [Mon, 27 Jan 2020 17:05:14 +0000 (18:05 +0100)]
vaapivideobufferpool: Log messages in proper category.
The log messages where logged in the GstBufferPool category because
the instance was not properly casted. This fix that situation.
Víctor Manuel Jáquez Leal [Thu, 16 Jan 2020 10:49:21 +0000 (11:49 +0100)]
libs: display: driver quirks mechanism
This mechanism comes from ffmpeg vaapi implementation, where they have
their own quirks.
A specific driver is identified by a substring present in the vendor
string. If that substring is found, a set of bitwise flags are store.
These flags can be accessed through the function
gst_vaapi_display_has_driver_quirks().
The purpose for this first quirks is to disable the put image try for
AMD Gallium driver (see [1]).
1. https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/merge_requests/72
Víctor Manuel Jáquez Leal [Wed, 15 Jan 2020 22:07:29 +0000 (23:07 +0100)]
plugins: renable Mesa Gallium driver
Víctor Manuel Jáquez Leal [Fri, 24 Jan 2020 10:55:22 +0000 (11:55 +0100)]
vaapivideobufferpool: validate returned meta
Validate if the meta returned by gst_buffer_get_vaapi_video_meta() in
the acquired buffer is not null.
This situation should be very "pathological", but still it is better
be safe since that meta might be used later to create a new dma
buffer.
Philipp Zabel [Wed, 22 Jan 2020 17:50:36 +0000 (18:50 +0100)]
vaapivideobufferpool: always update/release the underlying surface proxy
gst_vaapi_video_buffer_pool_reset_buffer() is called when the sink
releases the last reference on an exported DMA buffer. This should
release the underlying surface proxy. To avoid releasing the wrong
surface due to a stale surface proxy reference in the buffer's
GstVaapiVideoMeta, always update the reference to the correct surface
in gst_vaapi_video_buffer_pool_acquire_buffer().
Víctor Manuel Jáquez Leal [Thu, 23 Jan 2020 15:56:44 +0000 (16:56 +0100)]
libs: context: select vaCreateSurfaces version according attributes
This commit tries to centralize the selection of vaCreateSurfaces
version, instead of having fallbacks everywhere.
These fallbacks are hacks, added because new drivers use the latest
version of vaCreateSurfaces (with surface attributes) [1], meanwhile
old drivers (or profiles as JPEG decoder in i965) might rather use the
old version.
In order to select which method, there's detected hack: each config
context has a list of valid formats, in the case of JPEG decoder the
list only contains "rare" 4:2:2 formats (ICM3, GRAY8) which aren't
handled correctly by the current gstreamer-vaapi code [2].
The hack consist in identify if the format list contains an arbitrary
preferred format (which is suposedly well supported by
gstreamer-vaapi, mostly NV12). If no prefered colour format is found,
the the old version of vaCreateSurfaces is used, and the surfaces wil
be mapped into a image with their own color format.
1. https://bugzilla.gnome.org/show_bug.cgi?id=797143
2. https://bugzilla.gnome.org/show_bug.cgi?id=797222
Víctor Manuel Jáquez Leal [Tue, 21 Jan 2020 18:35:02 +0000 (19:35 +0100)]
libs: context: add debug category for context
Víctor Manuel Jáquez Leal [Wed, 22 Jan 2020 19:20:30 +0000 (20:20 +0100)]
libs: blend: guard VA_BLEND_GLOBAL_ALPHA
Víctor Manuel Jáquez Leal [Tue, 21 Jan 2020 13:09:33 +0000 (14:09 +0100)]
vaapiencode: promote info to warning
Let's notify user about using constrained-baseline instead on
requested basline profile.
Nicolas Dufresne [Fri, 28 Jun 2019 19:41:16 +0000 (15:41 -0400)]
vaapih264dec: Add a property to assume constrained-baseline
When baseline-as-constrained is set, the decoder will expose support
for baseline decoding and assume that the baseline content is
constrained-baseline. This can be handy to decode streams in hardware
that would otherwise not be possible to decode. A lot of baseline
content is in fact constrained.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 15:19:52 +0000 (16:19 +0100)]
vaapih264enc: accept baseline as constrained baseline compatible
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 13:24:37 +0000 (14:24 +0100)]
vaapih264enc: update level in src caps
And, if downstream requests a specific level, the caps are not
negotiated, because there is no mechanism right now to specify a
custom level in the internal encoder.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 16:12:53 +0000 (17:12 +0100)]
libs: encoder: h264: document gst_vaapi_encoder_h264_supports_avc()
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 12:38:29 +0000 (13:38 +0100)]
vaapih264enc: force byte-stream if avc isn't supported
Removing the validation in gst_vaapiencode_h264_get_caps() since that
ought be handled in gst_vaapiencode_h264_set_config()
Philipp Zabel [Wed, 8 Jan 2020 16:37:22 +0000 (17:37 +0100)]
vaaph264enc: suppress avc if the driver does not support packed headers
Do not negotiate AVC output if the driver does not support it.
Philipp Zabel [Wed, 8 Jan 2020 16:16:35 +0000 (17:16 +0100)]
libs: encoder: h264: Add gst_vaapi_encoder_h264_supports_avc()
AVC output requires packed header support in the driver.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 12:07:04 +0000 (13:07 +0100)]
vaapih264enc: intersect the new proposed caps
Instead of just leave to keep the proposed caps, with the best profile
in the allowed caps, is its intersected again.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 11:58:58 +0000 (12:58 +0100)]
vaapih264enc: propose new profile caps and fixate it
When the available caps doesn't intersect with the allowed caps in the
pipeline, a new caps is proposed rather than just expecting to
iterate.
Later, the intersected caps (profile_caps) is fixated in order to
extract the configuration.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 12:18:28 +0000 (13:18 +0100)]
vaapih264enc: common fail for gst_vaapiencode_h264_set_config()
Add a common fail code path for gst_vaapiencode_h264_set_config().
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 11:54:21 +0000 (12:54 +0100)]
libs: encoder: unref formats array if none
The formats array is always created, in order to keep the logic and
to avoid broken caps, if this formats array doesn't contain any
elements, it has to be unref and the function should return NULL.
Víctor Manuel Jáquez Leal [Fri, 17 Jan 2020 13:22:48 +0000 (14:22 +0100)]
vaapih264enc: fix log message
Before the log wasn't processed because wrong instance pointer.
He Junyan [Fri, 21 Jun 2019 16:44:25 +0000 (00:44 +0800)]
plugin: encode: Add H265 main-444 profile.
Expose the main-444 profile to h265enc caps, when the upstream
chooses to use VUYA as input, we choose main 4:4:4 profile to encode
the frames.
He Junyan [Wed, 15 Jan 2020 11:36:00 +0000 (19:36 +0800)]
libs: encoder: h265: Consider main-444 profile when encoding.
Add support of main-444 profile for parameter setting and packed header
generation.
Víctor Manuel Jáquez Leal [Wed, 15 Jan 2020 22:04:08 +0000 (23:04 +0100)]
vaapiencode: DMABuf only if PRIME is available
Add DMABuf capsfeature in encoders' allowed sinkcaps only if PRIME
memory type is available in the VA surface attributes of codec
context.
Haihao Xiang [Thu, 16 Jan 2020 01:14:30 +0000 (09:14 +0800)]
Add hooks/pre-commit.hook
meson.build in gstreamer-vaapi requires hooks/pre-commit.hook
Copied and pasted pre-commit.hook from other gstreamer modules to make
sure gstreamer-vaapi follows the same code style
He Junyan [Thu, 26 Dec 2019 08:45:51 +0000 (16:45 +0800)]
libs: encoder: h265: Set encoder paramters base on entrypoint.
When the tune is NONE, we now can choose entrypoint freely. So the
GST_VAAPI_ENCODER_TUNE macro may not return the correct current
entrypoint.
We also delay CTU size calculation after entrypoint has been decided.
Víctor Manuel Jáquez Leal [Sat, 28 Dec 2019 18:18:12 +0000 (19:18 +0100)]
Remove all FEI related
FEI encoders are not actively mantained neither tested, and it is
using infrastructure that is changing and FEI is stopping this
effort.
Also it is required to rethink how FEI can be used in GStreamer.
U. Artie Eoff [Tue, 14 Jan 2020 19:17:49 +0000 (11:17 -0800)]
vaapioverlay: ensure sinkpad has current buffer
Use the gst_video_aggregator_pad_has_current_buffer API
to check if the current sinkpad has a queued buffer before
attempting to obtain a input buffer from the base plugin.
If the sinkpad does not have a current buffer, then it is
either not producing them yet (e.g. current time < sinkpad
start time) or it has reached EOS.
Previously, we only handled EOS case.
Example:
gst-launch-1.0 videotestsrc num-buffers=100 \
! vaapipostproc ! vaapioverlay name=overlay \
! vaapisink videotestsrc timestamp-offset=
1000000000 \
num-buffers=100 ! video/x-raw,width=160,height=120 \
! overlay.
Víctor Manuel Jáquez Leal [Tue, 14 Jan 2020 17:57:31 +0000 (18:57 +0100)]
vaapioverlay: unroll the recursive call
Recursive functions are elegant but dangerous since they might
overflow the stack. It is better to turn them into a list tranversal
if possible, as this case.
Víctor Manuel Jáquez Leal [Tue, 14 Jan 2020 17:46:49 +0000 (18:46 +0100)]
vaapioverlay: add minimal documentation
Víctor Manuel Jáquez Leal [Tue, 14 Jan 2020 17:25:11 +0000 (18:25 +0100)]
libs: blend: simplify generator API
Instead of using a parent structure that has to be derived by API
consumers, this change propse a simplification by using the common
pattern of GTK of passing a function pointer and user data which will
be passed as its parameter. That user data contains the state and the
function will be called to update that state.
U. Artie Eoff [Fri, 10 Jan 2020 18:14:38 +0000 (10:14 -0800)]
libs: blend: remove begin/render/end API
This API was risky and is superseded by the surface
generator (process) API.
Resolves #219
U. Artie Eoff [Fri, 10 Jan 2020 18:12:36 +0000 (10:12 -0800)]
vaapioverlay: use blend surface generator API
See #219
U. Artie Eoff [Fri, 10 Jan 2020 17:54:30 +0000 (09:54 -0800)]
libs: blend: add surface generator API
This new API allows the user to call a single method (process)
which handles the [display] lock/unlock logic internally for
them.
This API supersedes the risky begin, render, end API.
It eliminates the need for the user to call a lock method
(process_begin) before processing the input buffers
(process_render) and calling an unlock method (process_end)
afterwards.
See #219
He Junyan [Mon, 23 Dec 2019 06:29:08 +0000 (14:29 +0800)]
plugin: encode: List all possible profiles to detect input formats.
The current get_profile just return one possible profile for the encode,
which is not enough. For example, if we want to support HEVC 4:4:4
profile, the input of encode should be VYUA rather than NV12 in HEVC
main profile. So the command line:
gst-launch-1.0 videotestsrc num-buffers=200 ! capsfilter \
caps=video/x-raw,format=VUYA,width=800,height=600 ! vaapih265enc \
tune=low-power init-qp=30 ! fakesink
can not work because vaapih265enc just report NV12 in sink caps, we need
to specify the profile obviously like:
gst-launch-1.0 videotestsrc num-buffers=200 ! capsfilter \
caps=video/x-raw,format=VUYA,width=800,height=600 ! vaapih265enc \
tune=low-power init-qp=30 ! capsfilter caps=video/x-h265, \
profile=main-444 ! fakesink
The encode should have the ability to choose the profile based on input
format automatically. If the input video format is VUYA, the main-444
profile should be auto choosed.
We modify to let get_allowed_profiles of each encode sub class to return
an array of all supported profiles based on downstream's allowed caps, or
return NULL if no valid profiles specified by downstream.
If no allowed profiles found, all profiles which belong to the current
encoder's codec will be the candidates.
The function gst_vaapi_encoder_get_surface_attributes collects the surface's
attributes for that profile list we just get.
So for this case, both NV12 and VUYA should be returned.
TODO: some codec like VP9, need to implement the get_profile() function.
He Junyan [Wed, 8 Jan 2020 07:07:36 +0000 (15:07 +0800)]
plugin: util: add helper function to detect profiles in caps.
He Junyan [Wed, 8 Jan 2020 07:04:18 +0000 (15:04 +0800)]
libs: encoder: add a helper function to get all supported profiles
Seungha Yang [Mon, 13 Jan 2020 06:34:54 +0000 (15:34 +0900)]
libs: decoder: Don't unref null object
** (gst-launch-1.0:9789): CRITICAL **: 15:29:09.330:
gst_vaapi_context_unref: assertion 'context != NULL' failed
U. Artie Eoff [Fri, 10 Jan 2020 17:26:44 +0000 (09:26 -0800)]
plugins: overlay: use proper NULL check on double pointer
Check the address of the variable is not NULL,
not the address of the pointer.
He Junyan [Wed, 8 Jan 2020 15:42:21 +0000 (23:42 +0800)]
libs: codedbuf: delete a useless field.
The context field in GstVaapiCodedBuffer is not inited correctly
and is never used, just delete it.
Víctor Manuel Jáquez Leal [Sun, 29 Dec 2019 16:57:52 +0000 (17:57 +0100)]
plugins: add iHD driver in whitelist
He Junyan [Thu, 2 Jan 2020 13:02:40 +0000 (21:02 +0800)]
libs: encoder: modify 265 SPS header's profile compatibility flag.
Make the SPS profile compatibility flags more precisely conform to
the HEVC Spec.
Víctor Manuel Jáquez Leal [Mon, 6 Jan 2020 18:39:06 +0000 (19:39 +0100)]
test: vaapioverlay: bail test if not available
vaapioverlay is only registered if the VA driver support the blend
operation.
This patch only executes the test if vaapioverlay is available,
otherwise the test is bail out without raising an error.
Víctor Manuel Jáquez Leal [Mon, 6 Jan 2020 13:53:28 +0000 (14:53 +0100)]
tests: vaapioverlay: force drm backend
Víctor Manuel Jáquez Leal [Sun, 22 Dec 2019 16:32:19 +0000 (17:32 +0100)]
libs: blend: update to new mini-object API
U. Artie Eoff [Tue, 19 Nov 2019 21:48:22 +0000 (13:48 -0800)]
tests: check: add basic vaapioverlay test
Add test_overlay_position test to verify sink_1 input
is overlayed onto sink_0 input at the appropriate
position.
U. Artie Eoff [Thu, 14 Nov 2019 20:03:57 +0000 (12:03 -0800)]
plugins: add vaapioverlay plugin
A plugin similar to the base compositor element but
uses VA-API VPP blend functions to accelerate the
overlay/compositing.
Simple example:
gst-launch-1.0 -vf videotestsrc ! vaapipostproc \
! tee name=testsrc ! queue \
! vaapioverlay sink_1::xpos=300 sink_1::alpha=0.75 \
name=overlay ! vaapisink testsrc. ! queue ! overlay.
U. Artie Eoff [Thu, 14 Nov 2019 20:02:19 +0000 (12:02 -0800)]
libs: add a vaapi blend class
Support for the VA-API VPP blend functions.
U. Artie Eoff [Thu, 14 Nov 2019 19:54:59 +0000 (11:54 -0800)]
plugins: base: add GstVideoAggregator subclass support
He Junyan [Sun, 5 Jan 2020 11:32:16 +0000 (19:32 +0800)]
libs: image: init all image fields correctly.
Stéphane Cerveau [Mon, 6 Jan 2020 16:41:53 +0000 (17:41 +0100)]
doc: fix pipeline typo in vaapipostproc
He Junyan [Thu, 2 Jan 2020 13:11:44 +0000 (21:11 +0800)]
libs: encoder: modify 265 VPS header fields.
vps_base_layer_internal_flag and vps_base_layer_available_flag
have been clearly defined now.
He Junyan [Wed, 1 Jan 2020 11:54:13 +0000 (19:54 +0800)]
libs: display: fix a resource leak in X11 pixmap format.
Víctor Manuel Jáquez Leal [Thu, 2 Jan 2020 17:00:21 +0000 (18:00 +0100)]
libs: utils: delete useless gst_vaapi_profile_caps_append_encoder.
He Junyan [Mon, 30 Dec 2019 06:09:17 +0000 (14:09 +0800)]
libs: encoder: get surfaces resolution the same time with formats.
We can get all the information about the video format at one shot
when we create the test context for getting the supported formats.
The current way to get the width and height ranges are inefficient,
since it calls the function gst_vaapi_profile_caps_append_encoder()
and it creates another temporal context to detect the resolution
information.
Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Víctor Manuel Jáquez Leal [Sat, 28 Dec 2019 16:42:55 +0000 (17:42 +0100)]
libs: encoder: vp9: fix code style
He Junyan [Mon, 16 Dec 2019 15:19:46 +0000 (23:19 +0800)]
libs: encoder: set entrypoint based on tune automatically
Some profile, such as H265_MAIN_444 on new Intel platform, may only
support ENTRYPOINT_SLICE_ENCODE_LP entrypoint. This leads two
problems:
1. We need to specify the tune mode like `vaapih265enc tune=low-power`
every time when we need to use this kind of profile. Or we can not
create the encoder context successfully.
2. More seriously, we set the entrypoint to a fixed value in
init_context_info() and so the create_test_context_config() can not
create the test context for these profile and can not get the
supported video formats, either.
We now change the entrypoint setting based on the tune option of the
encoder. If no tune property provided, we just choose the first
available entrypoint.
He Junyan [Mon, 16 Dec 2019 15:19:46 +0000 (23:19 +0800)]
libs: encoder: set context info profile by encoder
Instead of init_context_info() setting the passed profile, it is
assumed that it has to be set by each encoder.
Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
He Junyan [Fri, 27 Dec 2019 17:49:02 +0000 (18:49 +0100)]
libs: context: add invalid entrypoint symbol
The symbol GST_VAAPI_ENTRYPOINT_INVALID is just a representation of
zero, which was already used as an invalid value tacitly. This patch
only makes it explicit.
Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
He Junyan [Sat, 28 Dec 2019 17:13:29 +0000 (01:13 +0800)]
libs: pixmap: Fix a pixmap creation crash.
We use GST_VAAPI_OBJECT_NATIVE_DISPLAY with wrong parameter for x11
pixmap creation, which causes crash if we run the internal test case
of:
test-decode --pixmap
He Junyan [Sun, 22 Dec 2019 06:35:18 +0000 (14:35 +0800)]
plugin: encode: set allowed_sinkpad_caps to empty.
We now set encode->allowed_sinkpad_caps to NULL if we fail to get
surfaces formats. This causes two problem:
1. gst_video_encoder_proxy_getcaps use NULL as its caps parameter,
which changes its behavior. It will use encode's sinkpad template
rather than empty caps to do the clip job. So even if we fail to set
allowed_sinkpad_caps, gst_video_encoder_proxy_getcaps can still return
valid caps.
2. We should just set the allowed_sinkpad_caps once. The NULL point
make the ensure_allowed_sinkpad_caps function works again and again.
He Junyan [Sun, 22 Dec 2019 07:22:57 +0000 (15:22 +0800)]
libs: encoder: Add NULL pointer check for context when finalize.
Context may be NULL if pipeline fail in early stage, and the
ensure_context will not be called. Need to add a pointer protection
for it.
U. Artie Eoff [Fri, 20 Dec 2019 14:38:42 +0000 (06:38 -0800)]
plugins: base: do not reset can_dmabuf
Don't reset the can_dmabuf field. This restores the
close/reset logic that existed prior to commit
ca2942176b5632e07eebac23336954f9aaf1cb26 in regards to
dmabuf support.
Plugins only call gst_vaapi_plugin_base_set_srcpad_can_dmabuf
once during startup, but may need to reset the other private
fields multiple times during negotiation. Thus, can_dmabuf
should be exempt from the resets.
Fixes #208
He Junyan [Thu, 5 Dec 2019 16:21:12 +0000 (00:21 +0800)]
plugin: encode: Refine encode's sink caps.
The old manner to get the encode's sink caps is not correct.
Such as 264 encode, it gets:
video/x-raw(memory:VASurface),
format=(string){ ENCODED, NV12, I420, YV12, YUY2, UYVY, Y210,
P010_10LE, AYUV, Y410, Y444 }, width=(int)[ 32, 4096 ],
height=(int)[ 32, 4096 ], framerate=(fraction)[ 0/1,
2147483647/1 ];
video/x-raw(memory:DMABuf), format=(string){ I420, YV12, RGBA },
width=(int)[ 32, 4096 ], height=(int)[ 32, 4096 ],
framerate=(fraction)[ 0/1,
2147483647/1 ];
video/x-raw, format=(string){ NV12 }, width=(int)[ 32, 4096 ],
height=(int)[ 32, 4096 ], framerate=(fraction)[ 0/1,
2147483647/1 ]
where the formats for memory:VASurface and memory:DMABuf are superfluous.
All the "I420, YV12, YUY2, UYVY, Y210, RGBA" can not be really used as
input format for encoder.
We should get:
video/x-raw, format=(string){ NV12 }, width=(int)[ 32, 4096 ],
height=(int)[ 32, 4096 ], framerate=(fraction)[ 0/1,
2147483647/1 ];
video/x-raw(memory:VASurface), format=(string){ NV12 },
width=(int)[ 32, 4096 ], height=(int)[ 32, 4096 ],
framerate=(fraction)[ 0/1,
2147483647/1 ]; video/x-raw(memory:DMABuf),
format=(string){ NV12 }, width=(int)[ 32, 4096 ],
height=(int)[ 32, 4096 ], framerate=(fraction)[ 0/1,
2147483647/1 ]
as the correct result.
Víctor Manuel Jáquez Leal [Fri, 20 Dec 2019 07:37:11 +0000 (08:37 +0100)]
libs: display: code clean up
He Junyan [Thu, 12 Dec 2019 13:34:21 +0000 (21:34 +0800)]
libs: display: refine the profile/entrypoint map.
The old way make the one config for each profile/entrypoint pair,
which is not very convenient for description the relationship
between them. One profile may contain more than one entrypoints
to within it, so a set like data structure should be more suitable.
He Junyan [Thu, 19 Dec 2019 13:19:10 +0000 (14:19 +0100)]
libs: surface: port to GstMiniObject
GstVaapiMiniObject and GstVaapiObject are deprecated.
This is the first step to remove them by porting GstVaapiSurface as
a GstMiniBuffer descendant.
Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Víctor Manuel Jáquez Leal [Thu, 19 Dec 2019 17:26:10 +0000 (18:26 +0100)]
libs: surface: rename create function names to init
There are several internal functions with 'create' name, but they
don't create any new structure, but rather it initializes that
structure. Renaming those function to reflect better their purpose.