summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2012-09-10 17:18:30 +0200
committerEdward Hervey <edward.hervey@collabora.co.uk>2012-09-10 17:18:30 +0200
commitf4532d9135ac17256d74b4e86fdb1a06994967fb (patch)
tree509a226d43d11d7d50bca2862f92a1b1e7003c61 /tests
parent0e40eb11bc5b41a583c269f39f8aaef9b4bf24ab (diff)
downloadgst-libav-f4532d9135ac17256d74b4e86fdb1a06994967fb.tar.gz
remove postproc element
libpostproc is gone from upstream libav.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/.gitignore1
-rw-r--r--tests/check/Makefile.am7
-rw-r--r--tests/check/elements/postproc.c46
3 files changed, 1 insertions, 53 deletions
diff --git a/tests/check/.gitignore b/tests/check/.gitignore
index d32c4dc..63a4b14 100644
--- a/tests/check/.gitignore
+++ b/tests/check/.gitignore
@@ -1,5 +1,4 @@
test-registry.*
elements/avdec_adpcm
elements/avdemux_ape
-elements/postproc
.dirstamp
diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am
index e6ca0e3..4af5db3 100644
--- a/tests/check/Makefile.am
+++ b/tests/check/Makefile.am
@@ -16,16 +16,11 @@ CLEANFILES = core.* test-registry.xml
clean-local: clean-local-check
-if !GST_LIBAV_ENABLE_LGPL
-postproc_tests = elements/postproc
-endif
-
check_PROGRAMS = \
generic/plugin-test \
generic/libavcodec-locking \
elements/avdec_adpcm \
- elements/avdemux_ape \
- $(postproc_tests)
+ elements/avdemux_ape
VALGRIND_TO_FIX = \
generic/plugin-test \
diff --git a/tests/check/elements/postproc.c b/tests/check/elements/postproc.c
deleted file mode 100644
index 1dd20c2..0000000
--- a/tests/check/elements/postproc.c
+++ /dev/null
@@ -1,46 +0,0 @@
-/* GStreamer unit tests for postproc
- * Copyright (C) 2011 Collabora Ltd.
- *
- * 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 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.
- */
-
-#include <gst/check/gstcheck.h>
-#include <gst/gst.h>
-
-GST_START_TEST (test_postproc_default)
-{
- GstElement *pp;
-
- pp = gst_element_factory_make ("postproc_default", NULL);
- fail_unless (pp != NULL, "Failed to create postproc_default!");
- gst_object_unref (pp);
-}
-
-GST_END_TEST;
-
-static Suite *
-postproc_suite (void)
-{
- Suite *s = suite_create ("postproc");
- TCase *tc_chain = tcase_create ("general");
-
- suite_add_tcase (s, tc_chain);
- tcase_add_test (tc_chain, test_postproc_default);
-
- return s;
-}
-
-GST_CHECK_MAIN (postproc)