ext/vorbis/vorbisdec.c: Remove unused variable.

Original commit message from CVS:
* ext/vorbis/vorbisdec.c: (vorbis_do_clip):
Remove unused variable.
This commit is contained in:
Edward Hervey 2006-07-03 10:43:31 +00:00
parent da2fd7f3a6
commit 2760f8c58e
3 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2006-07-03 Edward Hervey <edward@fluendo.com>
* ext/vorbis/vorbisdec.c: (vorbis_do_clip):
Remove unused variable.
2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
* Makefile.am:

2
common

@ -1 +1 @@
Subproject commit f411695f3e009b4d348a8fa2dd32c0171f1ff683
Subproject commit a98b370bd49bc3f3225bbd9013cda5a53789f53d

View file

@ -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;