2 * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
3 * 2011 Stefan Kost <ensonic@users.sf.net>
5 * libsabi.c: Unit test for ABI compatibility
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.
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.
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.
24 #include <gst/check/gstcheck.h>
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/mixer.h>
42 #include <gst/interfaces/navigation.h>
43 #include <gst/interfaces/propertyprobe.h>
44 #include <gst/interfaces/streamvolume.h>
45 #include <gst/interfaces/tuner.h>
46 #include <gst/pbutils/pbutils.h>
47 #include <gst/riff/riff-media.h>
48 #include <gst/riff/riff-read.h>
49 #include <gst/rtp/gstrtpbaseaudiopayload.h>
50 #include <gst/rtp/gstrtpbasedepayload.h>
51 #include <gst/rtp/gstrtpbasepayload.h>
52 #include <gst/rtp/gstrtpbuffer.h>
53 #include <gst/rtp/gstrtcpbuffer.h>
54 #include <gst/rtp/gstrtppayloads.h>
55 #include <gst/rtsp/gstrtsp.h>
56 #include <gst/rtsp/gstrtspconnection.h>
57 #include <gst/rtsp/gstrtspextension.h>
58 #include <gst/rtsp/gstrtspmessage.h>
59 #include <gst/rtsp/gstrtsprange.h>
60 #include <gst/rtsp/gstrtsptransport.h>
61 #include <gst/rtsp/gstrtspurl.h>
62 #include <gst/sdp/gstsdp.h>
63 #include <gst/sdp/gstsdpmessage.h>
64 #include <gst/tag/tag.h>
65 #include <gst/tag/gsttagdemux.h>
66 #include <gst/video/video.h>
67 #include <gst/video/gstvideofilter.h>
68 #include <gst/video/gstvideosink.h>
69 #include <gst/video/colorbalance.h>
70 #include <gst/video/videoorientation.h>
71 #include <gst/video/videooverlay.h>
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\},/'
78 * it needs a bit of editing to remove opaque structs
83 # include "struct_i386_osx.h"
84 # define HAVE_ABI_SIZES TRUE
86 # include "struct_i386.h"
87 # define HAVE_ABI_SIZES TRUE
90 #ifdef HAVE_CPU_X86_64
91 #include "struct_x86_64.h"
92 #define HAVE_ABI_SIZES TRUE
95 #include "struct_arm.h"
96 #define HAVE_ABI_SIZES TRUE
98 /* in case someone wants to generate a new arch */
99 #include "struct_i386.h"
100 #define HAVE_ABI_SIZES FALSE
105 /* disabled for 0.11 */
106 #undef HAVE_ABI_SIZES
107 #define HAVE_ABI_SIZES FALSE
109 GST_START_TEST (test_ABI)
111 gst_check_abi_list (list, HAVE_ABI_SIZES);
119 Suite *s = suite_create ("LibsABI");
120 TCase *tc_chain = tcase_create ("size check");
122 tcase_set_timeout (tc_chain, 0);
124 suite_add_tcase (s, tc_chain);
125 tcase_add_test (tc_chain, test_ABI);
129 GST_CHECK_MAIN (libsabi);