diff options
author | Maciej Katafiasz <mathrick@mathrick.org> | 2004-12-28 16:50:28 +0000 |
---|---|---|
committer | Maciej Katafiasz <mathrick@mathrick.org> | 2004-12-28 16:50:28 +0000 |
commit | 6a25ab5bd4ae028481f5f119fb96c72b0892bcd9 (patch) | |
tree | 4477168d126bda380892da4455a38438f6a5d8f0 /gst | |
parent | e857c88844bc8be2ac6344feca4969054b3f013a (diff) |
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...
Diffstat (limited to 'gst')
-rw-r--r-- | gst/matroska/matroska-ids.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/matroska/matroska-ids.h b/gst/matroska/matroska-ids.h index 6c423385..1c425c17 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 { |