tests/check/pipelines/oggmux.c: Properly ifdef tests to fix compilation.

Original commit message from CVS:
* tests/check/pipelines/oggmux.c:
Properly ifdef tests to fix compilation.
This commit is contained in:
Thomas Vander Stichele 2008-06-21 18:56:08 +00:00
parent 0b78e4c4f9
commit f43a3f6acc
2 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2008-06-21 Thomas Vander Stichele <thomas at apestaart dot org>
* tests/check/pipelines/oggmux.c:
Properly ifdef tests to fix compilation.
2008-06-20 Michael Smith <msmith@songbirdnest.com> 2008-06-20 Michael Smith <msmith@songbirdnest.com>
* gst/playback/gstplay-marshal.list: * gst/playback/gstplay-marshal.list:
@ -138,10 +143,10 @@
2008-06-04 Michael Smith <msmith@songbirdnest.com> 2008-06-04 Michael Smith <msmith@songbirdnest.com>
* gst/playback/gstplaybasebin.c: * gst/playback/gstplaybasebin.c:
Disconnect signals from decodebins we created before we remove it from Disconnect signals from decodebins we created before we remove it
playbin, to avoid crashes if the decodebin is eventually disposed after from playbin, to avoid crashes if the decodebin is eventually
the playbin itself (possible if the app takes a reference on the disposed after the playbin itself (possible if the app takes a
decodebin). reference on the decodebin).
Fixes #536521. Fixes #536521.
2008-06-04 Tim-Philipp Müller <tim.muller at collabora co uk> 2008-06-04 Tim-Philipp Müller <tim.muller at collabora co uk>

View file

@ -294,6 +294,7 @@ test_pipeline (const char *pipeline)
gst_object_unref (bin); gst_object_unref (bin);
} }
#ifdef HAVE_VORBIS
GST_START_TEST (test_vorbis) GST_START_TEST (test_vorbis)
{ {
test_pipeline test_pipeline
@ -301,7 +302,9 @@ GST_START_TEST (test_vorbis)
} }
GST_END_TEST; GST_END_TEST;
#endif
#ifdef HAVE_THEORA
GST_START_TEST (test_theora) GST_START_TEST (test_theora)
{ {
test_pipeline test_pipeline
@ -309,7 +312,9 @@ GST_START_TEST (test_theora)
} }
GST_END_TEST; GST_END_TEST;
#endif
#if (defined (HAVE_THEORA) && defined (HAVE_VORBIS))
GST_START_TEST (test_theora_vorbis) GST_START_TEST (test_theora_vorbis)
{ {
test_pipeline test_pipeline
@ -327,6 +332,7 @@ GST_START_TEST (test_vorbis_theora)
} }
GST_END_TEST; GST_END_TEST;
#endif
GST_START_TEST (test_simple_cleanup) GST_START_TEST (test_simple_cleanup)
{ {