diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-12-31 23:53:28 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-12-31 23:53:28 +0000 |
commit | bf3bdf1468c5264a57b6aac343f8c7d1a50de848 (patch) | |
tree | 661c955b7e81b2f207d0f5ee01f1e389738ff4fe /flow/gsl/gsldatahandle-mad.c | |
parent | 3aaef8e61de684af6ced2951ab2391cd104e0d4c (diff) | |
download | arts-bf3bdf1468c5264a57b6aac343f8c7d1a50de848.tar.gz arts-bf3bdf1468c5264a57b6aac343f8c7d1a50de848.zip |
Automated conversion
aRts now compiles with TQt for Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1210526 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'flow/gsl/gsldatahandle-mad.c')
-rw-r--r-- | flow/gsl/gsldatahandle-mad.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/flow/gsl/gsldatahandle-mad.c b/flow/gsl/gsldatahandle-mad.c index 201d352..522efa5 100644 --- a/flow/gsl/gsldatahandle-mad.c +++ b/flow/gsl/gsldatahandle-mad.c @@ -318,14 +318,14 @@ dh_mad_open (GslDataHandle *dhandle, MadHandle *handle = (MadHandle*) dhandle; GslHFile *hfile; GslLong n; - gboolean seek_invalidated = FALSE; + gboolean seek_tqinvalidated = FALSE; hfile = gsl_hfile_open (handle->dhandle.name); if (!hfile) return gsl_error_from_errno (errno, GSL_ERROR_OPEN_FAILED); handle->hfile = hfile; - seek_invalidated |= handle->seek_mtime != hfile->mtime; + seek_tqinvalidated |= handle->seek_mtime != hfile->mtime; handle->bfill = 0; handle->eof = FALSE; handle->pcm_pos = 0; @@ -345,7 +345,7 @@ dh_mad_open (GslDataHandle *dhandle, setup->bit_depth = 24; setup->n_channels = MAD_NCHANNELS (&handle->frame.header); n = MAD_NSBSAMPLES (&handle->frame.header) * 32; - seek_invalidated |= n != handle->frame_size; + seek_tqinvalidated |= n != handle->frame_size; handle->frame_size = n; handle->sample_rate = handle->frame.header.samplerate; if (setup->n_channels < 1 || @@ -355,7 +355,7 @@ dh_mad_open (GslDataHandle *dhandle, goto OPEN_FAILED; /* seek through the stream to collect frame positions */ - if (seek_invalidated || !handle->n_seeks) + if (seek_tqinvalidated || !handle->n_seeks) { handle->seek_mtime = hfile->mtime; handle->n_seeks = 0; |