From 719515126c454338a4735b4b2bb7dfdf728a7b22 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Thu, 8 Apr 2010 10:45:33 +0100 Subject: oss4: 8-bit PCM audio caps don't need an endianness field --- sys/oss4/oss4-audio.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sys') diff --git a/sys/oss4/oss4-audio.c b/sys/oss4/oss4-audio.c index d501d266c..09f849596 100644 --- a/sys/oss4/oss4-audio.c +++ b/sys/oss4/oss4-audio.c @@ -94,9 +94,11 @@ gst_oss4_append_format_to_caps (const GstOss4AudioFormat * fmt, GstCaps * caps) s = gst_structure_empty_new (fmt->name); if (fmt->width != 0 && fmt->depth != 0) { - gst_structure_set (s, "width", G_TYPE_INT, fmt->width, - "depth", G_TYPE_INT, fmt->depth, "endianness", G_TYPE_INT, - fmt->endianness, "signed", G_TYPE_BOOLEAN, fmt->signedness, NULL); + gst_structure_set (s, "width", G_TYPE_INT, fmt->width, "depth", G_TYPE_INT, + fmt->depth, "signed", G_TYPE_BOOLEAN, fmt->signedness, NULL); + } + if (fmt->endianness != 0) { + gst_structure_set (s, "endianness", G_TYPE_INT, fmt->endianness, NULL); } gst_caps_append_structure (caps, s); } -- cgit v1.2.3