New validate plugin: validateflow
[platform/upstream/gstreamer.git] / validate / plugins / flow / formatting.h
1 /* GStreamer
2  *
3  * Copyright (C) 2018-2019 Igalia S.L.
4  * Copyright (C) 2018 Metrological Group B.V.
5  *  Author: Alicia Boya GarcĂ­a <aboya@igalia.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_VALIDATE_FLOW_FORMATTING_H__
24 #define __GST_VALIDATE_FLOW_FORMATTING_H__
25
26 #include <gst/gst.h>
27
28 void format_time(gchar* dest_str, guint64 time);
29
30 gchar* validate_flow_format_segment (const GstSegment *segment);
31
32 gchar* validate_flow_format_caps (const GstCaps* caps, const gchar * const *keys_to_print);
33
34 gchar* validate_flow_format_buffer (GstBuffer *buffer);
35
36 gchar* validate_flow_format_event (GstEvent *event, gboolean allow_stream_id, const gchar * const *caps_properties);
37
38 #endif // __GST_VALIDATE_FLOW_FORMATTING_H__