Search found 5 matches

by bram
Mon Jul 07, 2003 9:42 am
Forum: Users' Help Exchange - closed
Topic: developer -> VstTimeInfo worries...
Replies: 10
Views: 9809

wow! that's greatnews!!! I'm still running 1.0 or something, so I'll have to update.... Lot's of people will love being able to use my plugin in Ableton Live now!


greetings,

- bram
by bram
Thu Jun 12, 2003 2:41 pm
Forum: Users' Help Exchange - closed
Topic: developer -> VstTimeInfo worries...
Replies: 10
Views: 9809

You have to understand that a all informations TimeInfo provides are only valid for the current buffer in calculation. You can't look ahead or back the buffer boundaries, because tempo is not a fixed value. To look back, you can track the values you need from previous buffer calculations. There is ...
by bram
Wed Jun 11, 2003 9:57 pm
Forum: Users' Help Exchange - closed
Topic: developer -> VstTimeInfo worries...
Replies: 10
Views: 9809

Hiya, thx for the reply... But, can someone @ ableton then tell me how I should do this in Live? I need the curent position INSIDE the measure... I.e. ppqpos - barstartpos = position in the current bar where I am in ppq (this is easily transformed in samples) With this info I can easily sync to meas...
by bram
Mon Jun 02, 2003 8:06 pm
Forum: Users' Help Exchange - closed
Topic: developer -> VstTimeInfo worries...
Replies: 10
Views: 9809

oh, it's not necessary, but here's the structure of FFXTimeInfo class FFXTimeInfo { public: FFXTimeInfo() {}; ~FFXTimeInfo() {}; // false if the VstTimeInfo pointer returned is null // i.e. the host doesn't support VstTimeInfo bool isValid; // always valid double samplePos; // current location in sa...
by bram
Mon Jun 02, 2003 8:03 pm
Forum: Users' Help Exchange - closed
Topic: developer -> VstTimeInfo worries...
Replies: 10
Views: 9809

developer -> VstTimeInfo worries...

Hi, in a new plugin I'm working on I've got some trouble with VstTimeInfo... I need the number of samples per measure and the current "sample-in-measure". For this I'm using this piece of code I stole from DestroyFX, our dear fellows @ smartelectronix :) void CRetriggaHappyNigga::convertVs...