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