diff options
Diffstat (limited to 'ext/flac/gstflacenc.h')
-rw-r--r-- | ext/flac/gstflacenc.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ext/flac/gstflacenc.h b/ext/flac/gstflacenc.h index 1fe5e900..bca59c87 100644 --- a/ext/flac/gstflacenc.h +++ b/ext/flac/gstflacenc.h @@ -41,14 +41,16 @@ typedef struct _FlacEnc FlacEnc; typedef struct _FlacEncClass FlacEncClass; struct _FlacEnc { - GstElement element; + GstElement element; GstPad *sinkpad,*srcpad; - gboolean eos; - gint channels; - gint depth; - gint sample_rate; + gboolean first; + GstBuffer *first_buf; + gboolean eos; + gint channels; + gint depth; + gint sample_rate; FLAC__StreamEncoder *encoder; }; |