Merge remote-tracking branch 'origin/master' into 0.11
[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/multichannel.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/interfaces/colorbalance.h>
42 #include <gst/interfaces/mixer.h>
43 #include <gst/interfaces/navigation.h>
44 #include <gst/interfaces/propertyprobe.h>
45 #include <gst/interfaces/streamvolume.h>
46 #include <gst/interfaces/tuner.h>
47 #include <gst/interfaces/videoorientation.h>
48 #include <gst/interfaces/videooverlay.h>
49 #include <gst/pbutils/pbutils.h>
50 #include <gst/riff/riff-media.h>
51 #include <gst/riff/riff-read.h>
52 #include <gst/rtp/gstrtpbaseaudiopayload.h>
53 #include <gst/rtp/gstrtpbasedepayload.h>
54 #include <gst/rtp/gstrtpbasepayload.h>
55 #include <gst/rtp/gstrtpbuffer.h>
56 #include <gst/rtp/gstrtcpbuffer.h>
57 #include <gst/rtp/gstrtppayloads.h>
58 #include <gst/rtsp/gstrtsp.h>
59 #include <gst/rtsp/gstrtspconnection.h>
60 #include <gst/rtsp/gstrtspextension.h>
61 #include <gst/rtsp/gstrtspmessage.h>
62 #include <gst/rtsp/gstrtsprange.h>
63 #include <gst/rtsp/gstrtsptransport.h>
64 #include <gst/rtsp/gstrtspurl.h>
65 #include <gst/sdp/gstsdp.h>
66 #include <gst/sdp/gstsdpmessage.h>
67 #include <gst/tag/tag.h>
68 #include <gst/tag/gsttagdemux.h>
69 #include <gst/video/video.h>
70 #include <gst/video/gstvideofilter.h>
71 #include <gst/video/gstvideosink.h>
72
73 /* initial version of the file was generated using:
74  * grep -A1 "<STRUCT>" ../../docs/libs/gst-plugins-base-libs-decl.txt | \
75  * grep "<NAME>" | grep -v "Private" | sort | \
76  * sed -e 's/<NAME>\(.*\)<\/NAME>/\  {\"\1\", sizeof (\1), 0\},/'
77  *
78  * it needs a bit of editing to remove opaque structs
79  */
80
81 #ifdef HAVE_CPU_I386
82 # ifdef __APPLE__
83 #   include "struct_i386_osx.h"
84 #   define HAVE_ABI_SIZES TRUE
85 # else
86 #   include "struct_i386.h"
87 #   define HAVE_ABI_SIZES TRUE
88 # endif
89 #else
90 #ifdef HAVE_CPU_X86_64
91 #include "struct_x86_64.h"
92 #define HAVE_ABI_SIZES TRUE
93 #else
94 #ifdef HAVE_CPU_ARM
95 #include "struct_arm.h"
96 #define HAVE_ABI_SIZES TRUE
97 #else
98 /* in case someone wants to generate a new arch */
99 #include "struct_i386.h"
100 #define HAVE_ABI_SIZES FALSE
101 #endif
102 #endif
103 #endif
104
105 /* disabled for 0.11 */
106 #undef HAVE_ABI_SIZES
107 #define HAVE_ABI_SIZES FALSE
108
109 GST_START_TEST (test_ABI)
110 {
111   gst_check_abi_list (list, HAVE_ABI_SIZES);
112 }
113
114 GST_END_TEST;
115
116 static Suite *
117 libsabi_suite (void)
118 {
119   Suite *s = suite_create ("LibsABI");
120   TCase *tc_chain = tcase_create ("size check");
121
122   tcase_set_timeout (tc_chain, 0);
123
124   suite_add_tcase (s, tc_chain);
125   tcase_add_test (tc_chain, test_ABI);
126   return s;
127 }
128
129 GST_CHECK_MAIN (libsabi);