Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / tests / check / libs / gstlibscpp.cc
1 /* GStreamer
2  * Copyright (C) 2011 Tim-Philipp Müller <tim centricular net>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <gst/gst.h>
25 #include <gst/check/gstcheck.h>
26
27 #include <gst/app/gstappbuffer.h>
28 #include <gst/app/gstapp-marshal.h>
29 #include <gst/app/gstappsink.h>
30 #include <gst/app/gstappsrc.h>
31
32 #include <gst/audio/audio-enumtypes.h>
33 #include <gst/audio/audio.h>
34 #include <gst/audio/gstaudioclock.h>
35 #include <gst/audio/gstaudiofilter.h>
36 #include <gst/audio/gstaudiosink.h>
37 #include <gst/audio/gstaudiosrc.h>
38 #include <gst/audio/gstbaseaudiosink.h>
39 #include <gst/audio/gstbaseaudiosrc.h>
40 #include <gst/audio/gstringbuffer.h>
41 #include <gst/audio/mixerutils.h>
42 #include <gst/audio/multichannel.h>
43
44 #include <gst/cdda/gstcddabasesrc.h>
45
46 #include <gst/fft/gstfftf32.h>
47 #include <gst/fft/gstfftf64.h>
48 #include <gst/fft/gstfft.h>
49 #include <gst/fft/gstffts16.h>
50 #include <gst/fft/gstffts32.h>
51
52 #include <gst/floatcast/floatcast.h>
53
54 #include <gst/interfaces/colorbalancechannel.h>
55 #include <gst/interfaces/colorbalance.h>
56 #include <gst/interfaces/interfaces-enumtypes.h>
57 #include <gst/interfaces/interfaces-marshal.h>
58 #include <gst/interfaces/mixer.h>
59 #include <gst/interfaces/mixeroptions.h>
60 #include <gst/interfaces/mixertrack.h>
61 #include <gst/interfaces/navigation.h>
62 #include <gst/interfaces/propertyprobe.h>
63 #include <gst/interfaces/streamvolume.h>
64 #include <gst/interfaces/tunerchannel.h>
65 #include <gst/interfaces/tuner.h>
66 #include <gst/interfaces/tunernorm.h>
67 #include <gst/interfaces/videoorientation.h>
68 #include <gst/interfaces/xoverlay.h>
69
70 #include <gst/netbuffer/gstnetbuffer.h>
71
72 #include <gst/pbutils/codec-utils.h>
73 #include <gst/pbutils/descriptions.h>
74 #include <gst/pbutils/encoding-profile.h>
75 #include <gst/pbutils/encoding-target.h>
76 #include <gst/pbutils/gstdiscoverer.h>
77 #include <gst/pbutils/gstpluginsbaseversion.h>
78 #include <gst/pbutils/install-plugins.h>
79 #include <gst/pbutils/missing-plugins.h>
80 #include <gst/pbutils/pbutils-enumtypes.h>
81 #include <gst/pbutils/pbutils.h>
82 #include <gst/pbutils/pbutils-marshal.h>
83
84 #include <gst/riff/riff-ids.h>
85 #include <gst/riff/riff-media.h>
86 #include <gst/riff/riff-read.h>
87
88 #include <gst/rtp/gstbasertpaudiopayload.h>
89 #include <gst/rtp/gstbasertpdepayload.h>
90 #include <gst/rtp/gstbasertppayload.h>
91 #include <gst/rtp/gstrtcpbuffer.h>
92 #include <gst/rtp/gstrtpbuffer.h>
93 #include <gst/rtp/gstrtppayloads.h>
94
95 #include <gst/rtsp/gstrtspbase64.h>
96 #include <gst/rtsp/gstrtspconnection.h>
97 #include <gst/rtsp/gstrtspdefs.h>
98 #include <gst/rtsp/gstrtsp-enumtypes.h>
99 #include <gst/rtsp/gstrtspextension.h>
100 #include <gst/rtsp/gstrtsp.h>
101 #include <gst/rtsp/gstrtsp-marshal.h>
102 #include <gst/rtsp/gstrtspmessage.h>
103 #include <gst/rtsp/gstrtsprange.h>
104 #include <gst/rtsp/gstrtsptransport.h>
105 #include <gst/rtsp/gstrtspurl.h>
106
107 #include <gst/sdp/gstsdp.h>
108 #include <gst/sdp/gstsdpmessage.h>
109 #include <gst/tag/gsttagdemux.h>
110
111 #include <gst/tag/tag.h>
112
113 #include <gst/video/gstvideofilter.h>
114 #include <gst/video/gstvideosink.h>
115 #include <gst/video/video-enumtypes.h>
116 #include <gst/video/video.h>
117
118 /* we mostly just want to make sure that our library headers don't
119  * contain anything a C++ compiler might not like */
120 GST_START_TEST (test_nothing)
121 {
122   gst_init (NULL, NULL);
123 }
124
125 GST_END_TEST;
126
127 static Suite *
128 libscpp_suite (void)
129 {
130   Suite *s = suite_create ("GstLibsCpp");
131   TCase *tc_chain = tcase_create ("C++ libs header tests");
132
133   suite_add_tcase (s, tc_chain);
134   tcase_add_test (tc_chain, test_nothing);
135
136   return s;
137 }
138
139 GST_CHECK_MAIN (libscpp);