mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
tests: fix audiorate unit test on big-endian systems
This commit is contained in:
parent
a6f2f26ace
commit
b3771378c9
1 changed files with 4 additions and 2 deletions
|
@ -391,13 +391,15 @@ GST_END_TEST;
|
|||
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw,format=F32LE,channels=1,rate=44100")
|
||||
GST_STATIC_CAPS ("audio/x-raw,format=" GST_AUDIO_NE (F32)
|
||||
",channels=1,rate=44100")
|
||||
);
|
||||
|
||||
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw,format=F32LE,channels=1,rate=44100")
|
||||
GST_STATIC_CAPS ("audio/x-raw,format=" GST_AUDIO_NE (F32)
|
||||
",channels=1,rate=44100")
|
||||
);
|
||||
|
||||
GST_START_TEST (test_large_discont)
|
||||
|
|
Loading…
Reference in a new issue