summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-10-24 13:09:42 +0100
committerTim-Philipp Müller <tim@centricular.com>2014-10-24 13:09:42 +0100
commita82e99b093dce0262e5931d6d1c5b2eec7f760cf (patch)
tree1fa71103c5b13a59182f63d2b8e12f540219e27e
parent1b19290183445eec3a90df537d397ff2d6c1f323 (diff)
tests: fix playbin-complex test on big endian
-rw-r--r--tests/check/elements/playbin-complex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check/elements/playbin-complex.c b/tests/check/elements/playbin-complex.c
index a4304b120..377bd8312 100644
--- a/tests/check/elements/playbin-complex.c
+++ b/tests/check/elements/playbin-complex.c
@@ -26,7 +26,7 @@
#include <gst/check/gstcheck.h>
#include <gst/base/gstpushsrc.h>
#include <gst/base/gstbasesink.h>
-#include <gst/audio/streamvolume.h>
+#include <gst/audio/audio.h>
#include <gst/video/gstvideodecoder.h>
#ifndef GST_DISABLE_REGISTRY
@@ -521,7 +521,7 @@ gst_codec_demuxer_setup_pad (GstCodecDemuxer * demux, GstPad ** pad,
caps = gst_caps_new_empty_simple ("video/x-compressed");
} else if (g_str_equal (streaminfo, "raw-audio")) {
caps = gst_caps_new_simple ("audio/x-raw",
- "format", G_TYPE_STRING, "S16LE",
+ "format", G_TYPE_STRING, GST_AUDIO_NE (S16),
"layout", G_TYPE_STRING, "interleaved",
"rate", G_TYPE_INT, 48000, "channels", G_TYPE_INT, 2, NULL);
} else {
@@ -1222,7 +1222,7 @@ GST_START_TEST (test_raw_single_audio_stream_manual_sink)
playbin =
create_playbin
("caps:audio/x-raw,"
- " format=(string)S16LE, " "layout=(string)interleaved, "
+ " format=(string)" GST_AUDIO_NE (S16) ", " "layout=(string)interleaved, "
" rate=(int)48000, " " channels=(int)2", TRUE);
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),