summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/flac/gstflactag.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/flac/gstflactag.c b/ext/flac/gstflactag.c
index 229cacf9..cbf2964b 100644
--- a/ext/flac/gstflactag.c
+++ b/ext/flac/gstflactag.c
@@ -518,6 +518,18 @@ gst_flac_tag_chain (GstPad * pad, GstData * data)
("Vorbis comment of size %d too long", size));
return;
}
+
+ /* Get rid of the framing bit at the end of the vorbiscomment buffer
+ * if it exists since libFLAC seems to lose sync because of this
+ * bit in gstflacdec
+ */
+ if (GST_BUFFER_DATA (buffer)[GST_BUFFER_SIZE (buffer) - 1] == 1) {
+ GstBuffer *sub;
+
+ sub = gst_buffer_create_sub (buffer, 0, GST_BUFFER_SIZE (buffer) - 1);
+ gst_buffer_unref (buffer);
+ buffer = sub;
+ }
}
/* The 4 byte metadata block header isn't accounted for in the total