mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
validate: Move the fault_injection plugin to gst/plugins/
https://bugzilla.gnome.org/show_bug.cgi?id=743994
This commit is contained in:
parent
5c90a06645
commit
cdc6565605
7 changed files with 6 additions and 35 deletions
|
@ -3,7 +3,6 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
|||
SUBDIRS = \
|
||||
common \
|
||||
data \
|
||||
fault_injection \
|
||||
gst \
|
||||
launcher \
|
||||
tools \
|
||||
|
|
|
@ -282,11 +282,12 @@ Makefile
|
|||
common/Makefile
|
||||
common/m4/Makefile
|
||||
data/Makefile
|
||||
fault_injection/Makefile
|
||||
gst/Makefile
|
||||
gst/validate/Makefile
|
||||
gst/preload/Makefile
|
||||
gst/overrides/Makefile
|
||||
gst/plugins/Makefile
|
||||
gst/plugins/fault_injection/Makefile
|
||||
tests/Makefile
|
||||
tests/check/Makefile
|
||||
pkgconfig/Makefile
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
/* GStreamer
|
||||
*
|
||||
* Copyright (C) 2014 YouView TV Ltd
|
||||
* Author: Mariusz Buras <mariusz.buras@youview.com>
|
||||
*
|
||||
* socket_interposer.h : overrides for standard socket functions
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser 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 _SOCKET_INTERPOSER_H_
|
||||
#define _SOCKET_INTERPOSER_H_
|
||||
|
||||
#endif /* _SOCKET_INTERPOSER_H_ */
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS = validate overrides
|
||||
SUBDIRS = validate overrides plugins
|
||||
|
||||
if HAVE_LD_PRELOAD
|
||||
SUBDIRS += preload
|
||||
|
|
2
validate/gst/plugins/Makefile.am
Normal file
2
validate/gst/plugins/Makefile.am
Normal file
|
@ -0,0 +1,2 @@
|
|||
SUBDIRS = fault_injection
|
||||
|
|
@ -3,9 +3,6 @@ plugin_LTLIBRARIES = libfaultinjection.la
|
|||
libfaultinjection_la_SOURCES = \
|
||||
socket_interposer.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
socket_interposer.h
|
||||
|
||||
libfaultinjection_la_CFLAGS = $(GST_ALL_CFLAGS)
|
||||
libfaultinjection_la_LIBADD = $(GST_ALL_LIBS) $(top_builddir)/gst/validate/libgstvalidate-@GST_API_VERSION@.la
|
||||
libfaultinjection_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_ALL_LDFLAGS)
|
|
@ -28,9 +28,8 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "socket_interposer.h"
|
||||
#include <gst/gst.h>
|
||||
#include "../gst/validate/gst-validate-scenario.h"
|
||||
#include "../../validate/gst-validate-scenario.h"
|
||||
|
||||
#if defined(__gnu_linux__) && !defined(__ANDROID__) && !defined (ANDROID)
|
||||
|
Loading…
Reference in a new issue