~ubuntu-branches/ubuntu/natty/gst-entrans/natty

« back to all changes in this revision

Viewing changes to tests/check/elements/unsharp.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-09-13 19:49:29 UTC
  • Revision ID: james.westby@ubuntu.com-20100913194929-qz90a14xyxln9yfz
Tags: upstream-0.10.2
ImportĀ upstreamĀ versionĀ 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 *
 
3
 * unit test for videofilter elements
 
4
 *
 
5
 * Copyright (C) <2006> Mark Nauwelaerts <mnauw@users.sourceforge.net>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#include <unistd.h>
 
24
 
 
25
#include <gst/check/gstcheck.h>
 
26
 
 
27
#include "videofilter.h"
 
28
 
 
29
static RunInfo ri;
 
30
 
 
31
 
 
32
GST_START_TEST (test_unsharp)
 
33
{
 
34
  INIT_RUNINFO_YUV (&ri, 2);
 
35
  check_filter ("unsharp", &ri, NULL);
 
36
  check_filter ("unsharp", &ri, "amount", -1.0, NULL);
 
37
}
 
38
GST_END_TEST;
 
39
 
 
40
Suite *
 
41
unsharp_suite ()
 
42
{
 
43
  Suite *s = suite_create ("unsharp");
 
44
  TCase *tc_chain = tcase_create ("general");
 
45
 
 
46
  suite_add_tcase (s, tc_chain);
 
47
  tcase_add_test (tc_chain, test_unsharp);
 
48
 
 
49
  return s;
 
50
}
 
51
 
 
52
int
 
53
main (int argc, char **argv)
 
54
{
 
55
  int nf;
 
56
 
 
57
  Suite *s = unsharp_suite ();
 
58
  SRunner *sr = srunner_create (s);
 
59
 
 
60
  gst_check_init (&argc, &argv);
 
61
 
 
62
  srunner_run_all (sr, CK_NORMAL);
 
63
  nf = srunner_ntests_failed (sr);
 
64
  srunner_free (sr);
 
65
 
 
66
  return nf;
 
67
}