summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2020-05-12 17:30:00 +0200
committerEdward Hervey <bilboed@bilboed.com>2020-05-12 17:30:00 +0200
commit8d54941cd00e797a1f4b94308fd73f95fdd571fd (patch)
tree4637d90e0bd768aa47188ca90f328ec8610a55fc
parent77b3c173bf3aa60aec0a9353291f2cabc11533e8 (diff)
gst-app: Remove unused files
The README was even old by pre-meson standard and referencing 0.8-era code... The NEWS file was never used and is not needed with MESON
-rw-r--r--gst-app/NEWS1
-rw-r--r--gst-app/README18
2 files changed, 0 insertions, 19 deletions
diff --git a/gst-app/NEWS b/gst-app/NEWS
deleted file mode 100644
index 3474a99..0000000
--- a/gst-app/NEWS
+++ /dev/null
@@ -1 +0,0 @@
-Nothing much yet.
diff --git a/gst-app/README b/gst-app/README
deleted file mode 100644
index 77751cd..0000000
--- a/gst-app/README
+++ /dev/null
@@ -1,18 +0,0 @@
-gst-app is a template for writing your own GStreamer-based app.
-
-The code is deliberately kept simple so that you quickly understand the basics
-of how to set up autotools and your source tree.
-
-This template demonstrates :
-- what to do in autogen.sh
-- how to setup configure.ac (your package name and version, GStreamer flags)
-- how to setup your source dir
- - main () and main header
- - supporting source code
- - Makefile.am
-
-The template performs one simple function : loading a pipeline from xml and
-start to iterate it. Try saving a pipeline from gst-editor, it will play
-with this sample program.
-
-More features might get added to this template later on.