tests: fix adder check on big-endian

This commit is contained in:
Tim-Philipp Müller 2014-10-24 12:26:40 +01:00
parent db89f0dca4
commit 7834d733bc

View file

@ -33,6 +33,7 @@
#include <gst/check/gstcheck.h>
#include <gst/check/gstconsistencychecker.h>
#include <gst/base/gstbasesrc.h>
#include <gst/audio/audio.h>
static GMainLoop *main_loop;
@ -85,7 +86,7 @@ GST_START_TEST (test_filter_caps)
GstPad *pad;
filter_caps = gst_caps_new_simple ("audio/x-raw",
"format", G_TYPE_STRING, "F32LE",
"format", G_TYPE_STRING, GST_AUDIO_NE (F32),
"layout", G_TYPE_STRING, "interleaved",
"rate", G_TYPE_INT, 44100, "channels", G_TYPE_INT, 1, NULL);