mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
f3adc999f1
This way we can easily extend the structure and avoid needing using a union and such
46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
/* GStreamer
|
|
* Copyright (C) 2013 Thiago Santos <thiago.sousa.santos@collabora.com>
|
|
*
|
|
* validate.c - Validate generic functions
|
|
*
|
|
* 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.1 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., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __GST_VALIDATE_INTERNAL_H__
|
|
#define __GST_VALIDATE_INTERNAL_H__
|
|
|
|
#include <gst/gst.h>
|
|
#include "gst-validate-scenario.h"
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gstvalidate_debug);
|
|
#define GST_CAT_DEFAULT gstvalidate_debug
|
|
|
|
extern GRegex *newline_regex;
|
|
|
|
|
|
/* If an action type is 1 (TRUE) we also concider it is a config to keep backward compatibility */
|
|
#define IS_CONFIG_ACTION_TYPE(type) (((type) & GST_VALIDATE_ACTION_TYPE_CONFIG) || ((type) == TRUE))
|
|
|
|
GST_EXPORT GType _gst_validate_action_type_type;
|
|
|
|
void init_scenarios (void);
|
|
|
|
/* FIXME 2.0 Remove that as this is only for backward compatibility
|
|
* as we used to have to print actions in the action execution function
|
|
* and this is done by the scenario itself now */
|
|
gboolean _action_check_and_set_printed (GstValidateAction *action);
|
|
|
|
#endif
|