mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
a6ebda3907
This is a video specific sink used to test video CODEC conformance. This is similar to a combination of filesink and testsink, but will skip over any type of padding that GStreamer Video library introduces. This is needed in order to obtain the correct checksum or raw yuv data. This element currently support writing back non-padded raw I420 through the location property and will calculate an MD5 and post it as an element message of type conformance/checksum. More output format or checksum type could be added in the future as needed. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2287>
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/* GStreamer
|
|
* Copyright (C) <2020> Julian Bouzas <julian.bouzas@collabora.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
|
|
#ifndef __GST_DEBUGUTILSBAD_ELEMENT_H__
|
|
#define __GST_DEBUGUTILSBAD_ELEMENT_H__
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (checksumsink);
|
|
GST_ELEMENT_REGISTER_DECLARE (chopmydata);
|
|
GST_ELEMENT_REGISTER_DECLARE (clockselect);
|
|
GST_ELEMENT_REGISTER_DECLARE (compare);
|
|
GST_ELEMENT_REGISTER_DECLARE (debugspy);
|
|
GST_ELEMENT_REGISTER_DECLARE (errorignore);
|
|
GST_ELEMENT_REGISTER_DECLARE (fakeaudiosink);
|
|
GST_ELEMENT_REGISTER_DECLARE (fakevideosink);
|
|
GST_ELEMENT_REGISTER_DECLARE (fpsdisplaysink);
|
|
GST_ELEMENT_REGISTER_DECLARE (testsrcbin);
|
|
GST_ELEMENT_REGISTER_DECLARE (videocodectestsink);
|
|
GST_ELEMENT_REGISTER_DECLARE (watchdog);
|
|
|
|
|
|
#endif /* __GST_DEBUGUTILSBAD_PLUGIN_H__ */
|