- Jan 17, 2019
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
- Jan 14, 2019
-
-
Víctor Manuel Jáquez Leal authored
gst_vaapi_encoder_put_frame() and gst_vaapi_encoder_flush() duplicates the same code segment where the coded buffer is created, the picture encoded on it and pushed to the async queue. The function gst_vaapi_encoder_encode_and_queue() refactor this.
-
Víctor Manuel Jáquez Leal authored
In order to flush the pending pictures, a new internal encoder vmethod is used: get_pending_reordered() This method follows an iterator pattern which will return the next picture to encode and push. The base encoder will call this function in a loop when flush() is called. For now, only H.264 and H.265 encoders implement this flushing mechanism.
-
Instead of dropping all remain frames in reorder_frame_list during flush, keep encoding. gstreamer/gstreamer-vaapi#97
-
- Jan 15, 2019
-
-
wangfei authored
Fix the deinterlace black frame when playing with glimagesink: gst-launch-1.0 filesrc location=test.264 ! h264parse ! vaapih264dec \ ! vaapipostproc deinterlace-mode=1 deinterlace-method=1 ! glimagesink
-
- Jan 11, 2019
-
-
wangfei authored
configure file.
-
- Jan 07, 2019
-
-
-
-
And reduce unnecessary API version and structures check as well. gstreamer/gstreamer-vaapi#108
-
- Dec 24, 2018
-
-
Víctor Manuel Jáquez Leal authored
Use gst_object_ref() and gst_object_unref() instead.
-
Víctor Manuel Jáquez Leal authored
-
Víctor Manuel Jáquez Leal authored
This is another step in the gobjectification of the internal library of gstreamer-vaapi. Now it is the turn of GstVaapiWindow and its derivates. The idea is to minimize the changeset keeping the same design as much as possible. GstVaapiWindow is defined as an abstract class with two properties: the GstVaapiDisplay and the native ID. Thus, many of the GstVaapiObject macros were copied as GstVaapiWindow macros. The function gst_vaapi_window_new_internal() is kept as a decorator of for calling gst_vaapi_window_create() and the possibility of failure. The descendant classes, such as glx, still use the private structures, but through the gobject mechanism.
-
Víctor Manuel Jáquez Leal authored
-
The gst_vaapi_plugin_base_get_allowed_raw_caps is used for both sink pad and src pad, which cause some bugs. For sink pad, we need to verify vaPutImage() while for the src pad we need to verify vaGetImage(). For vaapidecoderXXX kind of plugins, the case is more complex. We need to verify whether the decoded result(in some surface, NV12 format most of the time) can be vaGetImage to some raw image format. Add more check to fix all these problems. gstreamer/gstreamer-vaapi#123 Signed-off-by: He Junyan <junyan.he@hotmail.com>
-
- Dec 18, 2018
-
-
wangfei authored
-
- Dec 15, 2018
-
-
Wonchul Lee authored
-
wangfei authored
Use the highest rank of available profile as the max profile to set max idc value. gstreamer/gstreamer-vaapi#124
-
- Dec 10, 2018
-
-
Niels De Graef authored
This gets rid of the strange `do_init` macro and makes the intent a bit more clear.
-
- Dec 05, 2018
-
-
Thibault Saunier authored
From ed78bee to 59cb678
-
- Dec 04, 2018
-
-
wangfei authored
Add 444 10bit yuv format Y410, which can be used to decode main-444 10bit streams. Currently, this feature is only supported by media-driver in Icelake.
-
- Nov 28, 2018
-
-
Jordan Petridіs authored
This is required before we enabled an indent test in the CI. gstreamer/gstreamer-project#33
-
- Nov 27, 2018
-
-
The extract_allowed_surface_formats function just check whether we can support some kind of surface/image format pair. We just need to create a surface, create an image with the same video-format and putImage from image to surface. All these operations success, that kind of video-format is supported. The old manner do not work for some kind of video-format. For example, the RGBA kind of format will create a NV12 surface and RGBA image, and the putImage will fail because the format is not same. And so the RGBA format is not supported but actually it is supported.
-
Michael Olbrich authored
gst_vaapi_plugin_base_close() removed the raw caps that are used indirectly in gst_vaapipostproc_transform_caps(). The usage is already protected by the mutex. This is needed when the pipeline is stopped during startup.
-
- Nov 20, 2018
-
-
Haihao Xiang authored
Otherwise it will result in resource leak when failed to create dmabuf memory
-
- Nov 14, 2018
-
-
Michael Olbrich authored
Otherwise the task may be restarted during shutdown. Start the task in gst_vaapiencode_handle_frame() instead.
-
Add 444 8bit yuv format AYUV, which can be used to decode main-444 8bit streams. Currently, this feature is only supported by media-driver in Icelake. gstreamer/gstreamer-vaapi#119
-
- Nov 12, 2018
-
-
Víctor Manuel Jáquez Leal authored
This commit adds a .gitlab-ci.yml file, which uses a feature to fetch the config from a centralized repository. The intent is to have all the gstreamer modules use the same configuration. The configuration is currently hosted at the gst-ci repository under the gitlab/ci_template.yml path. Part of gstreamer/gstreamer-project#29
-
- Nov 10, 2018
-
-
Add more kinds of chrometype which will be used to describe new video formats. Sync it with 1.4.0 version header file. Alse delete useless GST_VAAPI_CHROMA_TYPE_YUV410 chrome type. Signed-off-by: He Junyan <junyan.he@hotmail.com>
-
- Nov 09, 2018
-
-
Tim-Philipp Müller authored
Fixes #117 hopefully.
-
Tim-Philipp Müller authored
-
- Nov 07, 2018
-
-
We lack some video format because endianness declare. The video format should not directly relate to endianness. For example, ARGB on big endian should not be simplely seen as BGRA on little endian machine. We should provide endianess convert or format convert help functions if endianness does not match. gstreamer/gstreamer-vaapi#112 Signed-off-by: Junyan He <junyan.he@intel.com>
-
- Nov 05, 2018
-
-
gl_platform_type in gst_vaapi_get_display_type_from_gl_env generate unused-variable warning and may block build when Werror enabled. Several functions like gst_vaapi_display_egl_new_with_native_display have no prototype warning and link error when GL is enabled but EGL is disabled. Fix all these warning and link error. https://bugzilla.gnome.org/show_bug.cgi?id=797358 Signed-off-by: Junyan He <junyan.he@intel.com>
-
The variable are set twice, remove previous one. https://bugzilla.gnome.org/show_bug.cgi?id=797365
-
Víctor Manuel Jáquez Leal authored
-
Víctor Manuel Jáquez Leal authored
Thus handling its recompilation if needed.
-
Matthew Waters authored
Remove the git directory
-
Haihao Xiang authored
This fixes gstreamer/gstreamer-vaapi#116
-
- Nov 01, 2018
-
-
Add 422 10bit yuv format Y210, which can be used to decode main-10-422 10bit streams. Currently, this feature is only supported by media-driver in Icelake. https://bugzilla.gnome.org/show_bug.cgi?id=797264
-