diff --git a/ChangeLog b/ChangeLog index 6d66a84497..24c880c178 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-07-03 Edward Hervey + + * ext/vorbis/vorbisdec.c: (vorbis_do_clip): + Remove unused variable. + 2006-07-02 Thomas Vander Stichele * Makefile.am: diff --git a/common b/common index f411695f3e..a98b370bd4 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit f411695f3e009b4d348a8fa2dd32c0171f1ff683 +Subproject commit a98b370bd49bc3f3225bbd9013cda5a53789f53d diff --git a/ext/vorbis/vorbisdec.c b/ext/vorbis/vorbisdec.c index c8305d8e26..cee390a927 100644 --- a/ext/vorbis/vorbisdec.c +++ b/ext/vorbis/vorbisdec.c @@ -770,13 +770,10 @@ static gboolean vorbis_do_clip (GstVorbisDec * dec, GstBuffer * buf) { gint64 start, stop, cstart, cstop, diff; - guint size; start = GST_BUFFER_TIMESTAMP (buf); stop = start + GST_BUFFER_DURATION (buf); - size = GST_BUFFER_SIZE (buf); - if (!gst_segment_clip (&dec->segment, GST_FORMAT_TIME, start, stop, &cstart, &cstop)) goto clipped;