aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/test_previewopus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/test_previewopus.c')
-rw-r--r--src/plugins/test_previewopus.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/plugins/test_previewopus.c b/src/plugins/test_previewopus.c
deleted file mode 100644
index 6b0b1b8..0000000
--- a/src/plugins/test_previewopus.c
+++ /dev/null
@@ -1,52 +0,0 @@
1/*
2 This file is part of libextractor.
3 Copyright (C) 2013 Vidyut Samanta and Christian Grothoff
4
5 libextractor is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 libextractor is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with libextractor; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20/**
21 * @file plugins/test_previewopus.c
22 * @brief stub testcase for previewopus plugin
23 * @author Bruno Cabral
24 */
25#include "platform.h"
26#include "test_lib.h"
27
28
29/**
30 * Main function for the previewopus testcase.
31 *
32 * @param argc number of arguments (ignored)
33 * @param argv arguments (ignored)
34 * @return 0 on success
35 */
36int
37main (int argc, char *argv[])
38{
39 struct SolutionData previewopus_audio_sol[] = {
40 // TODO. Can't test as it depends on the encoder.
41 { 0, 0, NULL, NULL, 0, -1 }
42 };
43 struct ProblemSet ps[] = {
44 { "testdata/mpeg_alien.mpg",
45 previewopus_audio_sol },
46 { NULL, NULL }
47 };
48 return ET_main ("previewopus", ps);
49}
50
51
52/* end of test_thumbnailffmpeg.c */