gst-libs: Remove interfaces libs and mixer/tuner interfaces
[platform/upstream/gstreamer.git] / tests / check / libs / libsabi.c
1 /* GStreamer
2  * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
3  *               2011 Stefan Kost <ensonic@users.sf.net>
4  *
5  * libsabi.c: Unit test for ABI compatibility
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 <config.h>
24 #include <gst/check/gstcheck.h>
25
26 #include <gst/app/gstappsrc.h>
27 #include <gst/app/gstappsink.h>
28 #include <gst/audio/audio.h>
29 #include <gst/audio/gstaudiocdsrc.h>
30 #include <gst/audio/gstaudioclock.h>
31 #include <gst/audio/gstaudiofilter.h>
32 #include <gst/audio/gstaudiosrc.h>
33 #include <gst/audio/gstaudiosink.h>
34 #include <gst/audio/gstaudioringbuffer.h>
35 #include <gst/audio/streamvolume.h>
36 #include <gst/fft/gstfft.h>
37 #include <gst/fft/gstffts16.h>
38 #include <gst/fft/gstffts32.h>
39 #include <gst/fft/gstfftf32.h>
40 #include <gst/fft/gstfftf64.h>
41 #include <gst/pbutils/pbutils.h>
42 #include <gst/riff/riff-media.h>
43 #include <gst/riff/riff-read.h>
44 #include <gst/rtp/gstrtpbaseaudiopayload.h>
45 #include <gst/rtp/gstrtpbasedepayload.h>
46 #include <gst/rtp/gstrtpbasepayload.h>
47 #include <gst/rtp/gstrtpbuffer.h>
48 #include <gst/rtp/gstrtcpbuffer.h>
49 #include <gst/rtp/gstrtppayloads.h>
50 #include <gst/rtsp/gstrtsp.h>
51 #include <gst/rtsp/gstrtspconnection.h>
52 #include <gst/rtsp/gstrtspextension.h>
53 #include <gst/rtsp/gstrtspmessage.h>
54 #include <gst/rtsp/gstrtsprange.h>
55 #include <gst/rtsp/gstrtsptransport.h>
56 #include <gst/rtsp/gstrtspurl.h>
57 #include <gst/sdp/gstsdp.h>
58 #include <gst/sdp/gstsdpmessage.h>
59 #include <gst/tag/tag.h>
60 #include <gst/tag/gsttagdemux.h>
61 #include <gst/video/video.h>
62 #include <gst/video/gstvideofilter.h>
63 #include <gst/video/gstvideosink.h>
64 #include <gst/video/colorbalance.h>
65 #include <gst/video/videoorientation.h>
66 #include <gst/video/videooverlay.h>
67 #include <gst/video/navigation.h>
68
69 /* initial version of the file was generated using:
70  * grep -A1 "<STRUCT>" ../../docs/libs/gst-plugins-base-libs-decl.txt | \
71  * grep "<NAME>" | grep -v "Private" | sort | \
72  * sed -e 's/<NAME>\(.*\)<\/NAME>/\  {\"\1\", sizeof (\1), 0\},/'
73  *
74  * it needs a bit of editing to remove opaque structs
75  */
76
77 #ifdef HAVE_CPU_I386
78 # ifdef __APPLE__
79 #   include "struct_i386_osx.h"
80 #   define HAVE_ABI_SIZES TRUE
81 # else
82 #   include "struct_i386.h"
83 #   define HAVE_ABI_SIZES TRUE
84 # endif
85 #else
86 #ifdef HAVE_CPU_X86_64
87 #include "struct_x86_64.h"
88 #define HAVE_ABI_SIZES TRUE
89 #else
90 #ifdef HAVE_CPU_ARM
91 #include "struct_arm.h"
92 #define HAVE_ABI_SIZES TRUE
93 #else
94 /* in case someone wants to generate a new arch */
95 #include "struct_i386.h"
96 #define HAVE_ABI_SIZES FALSE
97 #endif
98 #endif
99 #endif
100
101 GST_START_TEST (test_ABI)
102 {
103   gst_check_abi_list (list, HAVE_ABI_SIZES);
104 }
105
106 GST_END_TEST;
107
108 static Suite *
109 libsabi_suite (void)
110 {
111   Suite *s = suite_create ("LibsABI");
112   TCase *tc_chain = tcase_create ("size check");
113
114   tcase_set_timeout (tc_chain, 0);
115
116   suite_add_tcase (s, tc_chain);
117   tcase_add_test (tc_chain, test_ABI);
118   return s;
119 }
120
121 GST_CHECK_MAIN (libsabi);