mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
2c6993b2bd
Summary: API: gst_validate_is_initialized Depends on D207 Reviewers: Mathieu_Du Differential Revision: http://phabricator.freedesktop.org/D208
23 lines
733 B
C
23 lines
733 B
C
/* GStreamer
|
|
* Copyright (C) 2013 Thiago Santos <thiago.sousa.santos@collabora.com>
|
|
*/
|
|
|
|
#ifndef _GST_VALIDATE_H
|
|
#define _GST_VALIDATE_H
|
|
|
|
#include <gst/validate/gst-validate-types.h>
|
|
#include <gst/validate/gst-validate-enums.h>
|
|
|
|
#include <gst/validate/gst-validate-runner.h>
|
|
#include <gst/validate/gst-validate-monitor-factory.h>
|
|
#include <gst/validate/gst-validate-override-registry.h>
|
|
#include <gst/validate/gst-validate-report.h>
|
|
#include <gst/validate/gst-validate-reporter.h>
|
|
#include <gst/validate/gst-validate-media-info.h>
|
|
|
|
void gst_validate_init (void);
|
|
void gst_validate_deinit (void);
|
|
GList * gst_validate_plugin_get_config (GstPlugin * plugin);
|
|
gboolean gst_validate_is_initialized (void);
|
|
|
|
#endif /* _GST_VALIDATE_H */
|