diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-11-11 17:43:30 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-11-11 17:43:30 +0000 |
commit | 984afa245368e568a15272e8d7f17ba241ab0b46 (patch) | |
tree | 6c96d3594826e2a97678c552937fe6e0a2f68315 /ext/musepack/gstmusepackreader.cpp | |
parent | 8ea1ed65fd723b1f2ca4d14ecc0604e79b3c0ed4 (diff) | |
download | gst-plugins-bad-984afa245368e568a15272e8d7f17ba241ab0b46.tar.gz gst-plugins-bad-984afa245368e568a15272e8d7f17ba241ab0b46.tar.bz2 gst-plugins-bad-984afa245368e568a15272e8d7f17ba241ab0b46.zip |
ext/musepack/gstmusepackreader.cpp: Workaround for older core.
Original commit message from CVS:
* ext/musepack/gstmusepackreader.cpp:
Workaround for older core.
Diffstat (limited to 'ext/musepack/gstmusepackreader.cpp')
-rw-r--r-- | ext/musepack/gstmusepackreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/musepack/gstmusepackreader.cpp b/ext/musepack/gstmusepackreader.cpp index e26baabc..2bef1cf2 100644 --- a/ext/musepack/gstmusepackreader.cpp +++ b/ext/musepack/gstmusepackreader.cpp @@ -87,7 +87,7 @@ GstMusepackReader::seek (mpc_int32_t offset) /* hacky hack - if we're after typefind, we'll fail because * typefind is still typefinding (heh :) ). So read first. */ - if (this->tell () == 0) { + if (this->tell () != this->get_size ()) { guint8 dummy2[1]; this->read (dummy2, 1); } |