diff options
Diffstat (limited to 'ext/sndfile')
-rw-r--r-- | ext/sndfile/gstsf.c | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index 19e99e6a..de7a28c4 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -31,19 +31,15 @@ #include "gstsf.h" -static GstElementDetails sfsrc_details = { - "Sndfile Source", - "Source/Audio", - "Read audio streams from disk using libsndfile", - "Andy Wingo <wingo at pobox dot com>", -}; - -static GstElementDetails sfsink_details = { - "Sndfile Sink", - "Sink/Audio", - "Write audio streams to disk using libsndfile", - "Andy Wingo <wingo at pobox dot com>", -}; +static GstElementDetails sfsrc_details = GST_ELEMENT_DETAILS ("Sndfile source", + "Source/Audio", + "Read audio streams from disk using libsndfile", + "Andy Wingo <wingo at pobox dot com>"); + +static GstElementDetails sfsink_details = GST_ELEMENT_DETAILS ("Sndfile sink", + "Sink/Audio", + "Write audio streams to disk using libsndfile", + "Andy Wingo <wingo at pobox dot com>"); enum { |