diff options
Diffstat (limited to 'ext/sndfile')
-rw-r--r-- | ext/sndfile/gstsf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index f44e58fa..e6313ed5 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -31,12 +31,14 @@ #include "gstsf.h" -static GstElementDetails sfsrc_details = GST_ELEMENT_DETAILS ("Sndfile source", +static const 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", +static const GstElementDetails sfsink_details = +GST_ELEMENT_DETAILS ("Sndfile sink", "Sink/Audio", "Write audio streams to disk using libsndfile", "Andy Wingo <wingo at pobox dot com>"); |