diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2014-01-05 23:41:26 +0100 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2014-01-05 23:45:34 +0100 |
commit | ef2eef0365e836521edec6b0f9c74f946bd23644 (patch) | |
tree | ec1013330b627666ba5173ee8cbf9726f2168eca /ext/sndfile | |
parent | 207a18493163af212738e4cc93f1035b1cf8a709 (diff) |
sndfile: enable rf64 format
Diffstat (limited to 'ext/sndfile')
-rw-r--r-- | ext/sndfile/gstsf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index a8f1c61bc..137034239 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -88,6 +88,8 @@ gst_sf_create_audio_template_caps (void) fmt = "audio/x-xi"; break; case SF_FORMAT_RF64: /* RF64 WAV file */ + fmt = "audio/x-rf64"; + break; case SF_FORMAT_MAT4: /* Matlab (tm) V4.2 / GNU Octave 2.0 */ case SF_FORMAT_MAT5: /* Matlab (tm) V5.0 / GNU Octave 2.1 */ case SF_FORMAT_PVF: /* Portable Voice Format */ |