diff options
-rw-r--r-- | ext/flac/gstflacenc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/flac/gstflacenc.h b/ext/flac/gstflacenc.h index 84c16dbf..9c724b9c 100644 --- a/ext/flac/gstflacenc.h +++ b/ext/flac/gstflacenc.h @@ -45,6 +45,8 @@ struct _FlacEnc { GstPad *sinkpad,*srcpad; + GstCaps *metadata; + gboolean first; GstBuffer *first_buf; gboolean eos; @@ -56,7 +58,8 @@ struct _FlacEnc { gboolean stopped; FLAC__int32 *data; - FLAC__StreamEncoder *encoder; + FLAC__SeekableStreamEncoder *encoder; + FLAC__StreamMetadata **meta; }; struct _FlacEncClass { |