mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
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:
parent
da2fd7f3a6
commit
2760f8c58e
3 changed files with 6 additions and 4 deletions
|
@ -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
2
common
|
@ -1 +1 @@
|
|||
Subproject commit f411695f3e009b4d348a8fa2dd32c0171f1ff683
|
||||
Subproject commit a98b370bd49bc3f3225bbd9013cda5a53789f53d
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue