- 05 Nov, 2018 1 commit
-
-
Víctor Manuel Jáquez Leal authored
-
- 26 Sep, 2018 2 commits
-
-
U. Artie Eoff authored
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=797204Signed-off-by:
U. Artie Eoff <ullysses.a.eoff@intel.com>
-
-
- 25 Sep, 2018 2 commits
-
-
Víctor Manuel Jáquez Leal authored
-
Víctor Manuel Jáquez Leal authored
Since sysdeps.h includes string.h there's no need to include it again.
-
- 03 Sep, 2018 2 commits
-
-
Víctor Manuel Jáquez Leal authored
Replacing them by gst_object_ref() and gst_object_unref() https://bugzilla.gnome.org/show_bug.cgi?id=796308
-
Víctor Manuel Jáquez Leal authored
Replaced by gst_object_unref() in tests https://bugzilla.gnome.org/show_bug.cgi?id=796308
-
- 14 Jun, 2018 2 commits
-
-
Víctor Manuel Jáquez Leal authored
Replace it with gst_object_ref() https://bugzilla.gnome.org/show_bug.cgi?id=796470
-
Víctor Manuel Jáquez Leal authored
Use gst_object_unref() instead. https://bugzilla.gnome.org/show_bug.cgi?id=796470
-
- 27 Feb, 2018 2 commits
-
-
Víctor Manuel Jáquez Leal authored
Rewrote the ROI test to use GstVideoRegionOfInterest meta rather than injecting GstEvents. These meta are added as a pad probe in the queue src pad. Also * Use of navigation messages to control de test * Use signal watch for processing messages * Change to H265 rather than H264 since current intel-vaapi-driver only supports ROI on kabylake. TODO: add a parameter to change the encoder/decoder to test. https://bugzilla.gnome.org/show_bug.cgi?id=768248
-
Víctor Manuel Jáquez Leal authored
This reverts commit c21345c4. https://bugzilla.gnome.org/show_bug.cgi?id=768248
-
- 10 Jan, 2018 4 commits
-
-
Víctor Manuel Jáquez Leal authored
Null-checking op_info suggests that it may be null, but it has already been dereferenced on all paths leading to the check. There may be a null pointer dereference, or else the comparison against null is unnecessary.
-
Víctor Manuel Jáquez Leal authored
str cannot be null in that moment, but it may be the end of string.
-
Víctor Manuel Jáquez Leal authored
Assigning the return value of fgetc to char truncates its value. It will not be possible to distinguish between EOF and a valid character.
-
Víctor Manuel Jáquez Leal authored
Passed pointer in parse_int() are unsigned int (32 bits, unsigned) but they are dereferenced as a wider long (64 bits, signed). This may lead to memory corruption.
-
- 06 Dec, 2017 2 commits
-
-
Víctor Manuel Jáquez Leal authored
-
Víctor Manuel Jáquez Leal authored
-
- 22 Sep, 2017 2 commits
-
-
Víctor Manuel Jáquez Leal authored
Instead of using the gst_vaapi_display_get_property(), this patch replaces it with g_object_get_property() to dump the available VA display properties. https://bugzilla.gnome.org/show_bug.cgi?id=788058
-
Víctor Manuel Jáquez Leal authored
Since commit ec3e10f6, display cache was removed. This patch removes this leftovers in the display test.
-
- 01 Sep, 2017 1 commit
-
-
Sreerenj Balachandran authored
test-fei-enc-out: A simple fei encoding application to output mv, mbcode and distortion eg: ./test-fei-enc-out -i sample_320x240.nv12 -w 320 -h 240 -o out.264 -v mv.out -d out.dist -m out.mbcode -e 1 test-fei-enc-in: A simple fei encoding application for testing input fei buffers eg: ./test-fei-enc-in -c h264 -o out.264 -e 4 -q 1 sample_i420.y4m Fixme: Running test-fei-enc-in in PAK mode with mv and mbcode input buffers from saved files is still not working People contributed: Wang, Yi <yi.a.wang@intel.com> Leilei <leilei.shang@intel.com> Zhong, Xiaoxia <xiaoxia.zhong@intel.com> xiaominc <xiaomin.chen@intel.com> Li, Jing B <jing.b.li@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=785712 https://bugzilla.gnome.org/show_bug.cgi?id=784667
-
- 26 Jul, 2017 1 commit
-
-
Hyunjun Ko authored
Signed-off-by:
Víctor Manuel Jáquez Leal <vjaquez@igalia.com> https://bugzilla.gnome.org/show_bug.cgi?id=766704
-
- 18 Jul, 2017 1 commit
-
-
- 12 May, 2017 4 commits
-
-
Víctor Manuel Jáquez Leal authored
The test app can now handle navigation events to rotate the display.
-
Víctor Manuel Jáquez Leal authored
- Use gst_element_send_event() instead of gst_pad_push_event() - don't zero App structure - check for pipeline parsing error - only get vaapisink for property set
-
Hyunjun Ko authored
This implements a pipleint to recognize difference between ROI and non-ROI. See comments in this code in detail. https://bugzilla.gnome.org/show_bug.cgi?id=768248Signed-off-by:
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
-
Hyunjun Ko authored
$ simple-encoder -r inputfile.y4m And you'll got an output file in H264 with two regions of interest. https://bugzilla.gnome.org/show_bug.cgi?id=768248Signed-off-by:
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
-
- 25 Apr, 2017 1 commit
-
-
Víctor Manuel Jáquez Leal authored
This issue was spotten on bug #766704 Original-patch-by:
Hyunjun Ko <zzoon@igalia.com>
-
- 14 Mar, 2017 1 commit
-
-
Thomas Petazzoni authored
From man open(2): The O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW flags are not specified in POSIX.1-2001, but are specified in POSIX.1-2008. Since glibc 2.12, one can obtain their definitions by defining either _POSIX_C_SOURCE with a value greater than or equal to 200809L or _XOPEN_SOURCE with a value greater than or equal to 700. In glibc 2.11 and earlier, one obtains the definitions by defining _GNU_SOURCE. And indeed, with the uClibc C library, O_CLOEXEC is not exposed if _GNU_SOURCE is not defined. Therefore, this commit fixes the build of gstreamer-vaapi with the uClibc C library. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> https://bugzilla.gnome.org/show_bug.cgi?id=779953
-
- 06 Jul, 2016 1 commit
-
-
Víctor Manuel Jáquez Leal authored
Element tests only need to link against gstreamer libraries.
-
- 05 Jul, 2016 2 commits
-
-
Víctor Manuel Jáquez Leal authored
-
-
- 20 May, 2016 1 commit
-
-
Víctor Manuel Jáquez Leal authored
gst_video_info_set_format() and gst_video_info_from_caps() call, internally, gst_video_info_init(), hence it is not required to call it before them. This patch removes these spurious calls.
-
- 29 Apr, 2016 2 commits
-
-
-
Víctor Manuel Jáquez Leal authored
-
- 15 Feb, 2016 1 commit
-
-
Vineeth TM authored
argument mismatch of gsize with 'long unsigned int' https://bugzilla.gnome.org/show_bug.cgi?id=762055
-
- 02 Feb, 2016 1 commit
-
-
Tim-Philipp Müller authored
Declare variables at the beginning of a code block, which is how it's done in GStreamer. https://bugzilla.gnome.org/show_bug.cgi?id=759192
-
- 20 Jan, 2016 1 commit
-
-
Víctor Manuel Jáquez Leal authored
Since we don't install libraries anymore, it makes no sense to keep versioning them according to the gstreamer's version. Signed-off-by:
Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
-
- 19 Jan, 2016 1 commit
-
-
Víctor Manuel Jáquez Leal authored
Signed-off-by:
Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
-
- 09 Nov, 2015 1 commit
-
-
Víctor Manuel Jáquez Leal authored
The caps creation for codec state configuration is not used. Let's remove it. Signed-off-by:
Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
-
- 02 Jul, 2015 1 commit
-
-
Sreerenj Balachandran authored
Include missing header files gstvaapidisplay_egl.h and gstvaapiwindow_egl.h.
-