From 6a25ab5bd4ae028481f5f119fb96c72b0892bcd9 Mon Sep 17 00:00:00 2001 From: Maciej Katafiasz Date: Tue, 28 Dec 2004 16:50:28 +0000 Subject: [PATCH] Ooops, fix previous commit. Never trust file names I guess... Original commit message from CVS: Ooops, fix previous commit. Never trust file names I guess... --- gst/matroska/matroska-ids.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gst/matroska/matroska-ids.h b/gst/matroska/matroska-ids.h index 6c4233850d..1c425c179a 100644 --- a/gst/matroska/matroska-ids.h +++ b/gst/matroska/matroska-ids.h @@ -239,6 +239,11 @@ typedef struct _GstMatroskaTrackAudioContext { GstMatroskaTrackContext parent; guint samplerate, channels, bitdepth; + + /* Special flag for Vorbis, we need to send codec_priv first before + * sending any data, and just testing for time == 0 is not enough + * to detect that */ + gboolean first_frame; } GstMatroskaTrackAudioContext; typedef struct _GstMatroskaTrackComplexContext {