[0.11] gst-plugins-base: audio: Indent and doc fixes
Edward Hervey
bilboed at kemper.freedesktop.org
Mon Oct 17 03:03:22 PDT 2011
Module: gst-plugins-base
Branch: 0.11
Commit: 45c4a19472e93741b60eb40d9c8cc98599f2dfcb
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=45c4a19472e93741b60eb40d9c8cc98599f2dfcb
Author: Edward Hervey <edward.hervey at collabora.co.uk>
Date: Mon Oct 17 11:45:39 2011 +0200
audio: Indent and doc fixes
---
gst-libs/gst/audio/audio.c | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/gst-libs/gst/audio/audio.c b/gst-libs/gst/audio/audio.c
index d24023f..17a67de 100644
--- a/gst-libs/gst/audio/audio.c
+++ b/gst-libs/gst/audio/audio.c
@@ -42,18 +42,18 @@
#define SILENT_0 { 0, 0, 0, 0, 0, 0, 0, 0 }
#define SILENT_U8 { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 }
-#define SILENT_U16LE { 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80 }
-#define SILENT_U16BE { 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00 }
-#define SILENT_U24_32LE { 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00 }
-#define SILENT_U24_32BE { 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00 }
-#define SILENT_U32LE { 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80 }
-#define SILENT_U32BE { 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00 }
-#define SILENT_U24LE { 0x00, 0x00, 0x80, 0x00, 0x00, 0x80 }
-#define SILENT_U24BE { 0x80, 0x00, 0x00, 0x80, 0x00, 0x00 }
-#define SILENT_U20LE { 0x00, 0x00, 0x08, 0x00, 0x00, 0x08 }
-#define SILENT_U20BE { 0x08, 0x00, 0x00, 0x08, 0x00, 0x00 }
-#define SILENT_U18LE { 0x00, 0x00, 0x02, 0x00, 0x00, 0x02 }
-#define SILENT_U18BE { 0x02, 0x00, 0x00, 0x02, 0x00, 0x00 }
+#define SILENT_U16LE { 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80 }
+#define SILENT_U16BE { 0x80, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80, 0x00 }
+#define SILENT_U24_32LE { 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00 }
+#define SILENT_U24_32BE { 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00 }
+#define SILENT_U32LE { 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80 }
+#define SILENT_U32BE { 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00 }
+#define SILENT_U24LE { 0x00, 0x00, 0x80, 0x00, 0x00, 0x80 }
+#define SILENT_U24BE { 0x80, 0x00, 0x00, 0x80, 0x00, 0x00 }
+#define SILENT_U20LE { 0x00, 0x00, 0x08, 0x00, 0x00, 0x08 }
+#define SILENT_U20BE { 0x08, 0x00, 0x00, 0x08, 0x00, 0x00 }
+#define SILENT_U18LE { 0x00, 0x00, 0x02, 0x00, 0x00, 0x02 }
+#define SILENT_U18BE { 0x02, 0x00, 0x00, 0x02, 0x00, 0x00 }
static GstAudioFormatInfo formats[] = {
{GST_AUDIO_FORMAT_UNKNOWN, "UNKNOWN", 0, 0, 0, 0},
@@ -130,7 +130,7 @@ static GstAudioFormatInfo formats[] = {
};
/**
- * gst_audio_format_build_int:
+ * gst_audio_format_build_integer:
* @sign: signed or unsigned format
* @endianness: G_LITTLE_ENDIAN or G_BIG_ENDIAN
* @width: amount of bits used per sample
More information about the gstreamer-commits
mailing list