mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
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:
parent
0b78e4c4f9
commit
f43a3f6acc
2 changed files with 15 additions and 4 deletions
13
ChangeLog
13
ChangeLog
|
@ -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>
|
||||
|
||||
* gst/playback/gstplay-marshal.list:
|
||||
|
@ -138,10 +143,10 @@
|
|||
2008-06-04 Michael Smith <msmith@songbirdnest.com>
|
||||
|
||||
* gst/playback/gstplaybasebin.c:
|
||||
Disconnect signals from decodebins we created before we remove it from
|
||||
playbin, to avoid crashes if the decodebin is eventually disposed after
|
||||
the playbin itself (possible if the app takes a reference on the
|
||||
decodebin).
|
||||
Disconnect signals from decodebins we created before we remove it
|
||||
from playbin, to avoid crashes if the decodebin is eventually
|
||||
disposed after the playbin itself (possible if the app takes a
|
||||
reference on the decodebin).
|
||||
Fixes #536521.
|
||||
|
||||
2008-06-04 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
|
|
@ -294,6 +294,7 @@ test_pipeline (const char *pipeline)
|
|||
gst_object_unref (bin);
|
||||
}
|
||||
|
||||
#ifdef HAVE_VORBIS
|
||||
GST_START_TEST (test_vorbis)
|
||||
{
|
||||
test_pipeline
|
||||
|
@ -301,7 +302,9 @@ GST_START_TEST (test_vorbis)
|
|||
}
|
||||
|
||||
GST_END_TEST;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_THEORA
|
||||
GST_START_TEST (test_theora)
|
||||
{
|
||||
test_pipeline
|
||||
|
@ -309,7 +312,9 @@ GST_START_TEST (test_theora)
|
|||
}
|
||||
|
||||
GST_END_TEST;
|
||||
#endif
|
||||
|
||||
#if (defined (HAVE_THEORA) && defined (HAVE_VORBIS))
|
||||
GST_START_TEST (test_theora_vorbis)
|
||||
{
|
||||
test_pipeline
|
||||
|
@ -327,6 +332,7 @@ GST_START_TEST (test_vorbis_theora)
|
|||
}
|
||||
|
||||
GST_END_TEST;
|
||||
#endif
|
||||
|
||||
GST_START_TEST (test_simple_cleanup)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue