From f4532d9135ac17256d74b4e86fdb1a06994967fb Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 10 Sep 2012 17:18:30 +0200 Subject: remove postproc element libpostproc is gone from upstream libav. --- tests/check/.gitignore | 1 - tests/check/Makefile.am | 7 +------ tests/check/elements/postproc.c | 46 ----------------------------------------- 3 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 tests/check/elements/postproc.c (limited to 'tests') 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 -#include - -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) -- cgit v1.2.1