diff options
Diffstat (limited to 'rotord/src/rotor.h')
| -rwxr-xr-x | rotord/src/rotor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rotord/src/rotor.h b/rotord/src/rotor.h index f52c212..299510a 100755 --- a/rotord/src/rotor.h +++ b/rotord/src/rotor.h @@ -1199,6 +1199,7 @@ namespace Rotor { uid=_uid; description=_desc; duration=20.0f; + framerate=25.0f; }; string uid; //every version of a graph has a UUID, no particular need to actually read its data(?) //?? is it faster than using strings?? @@ -1213,9 +1214,10 @@ namespace Rotor { bool parseXml(string media_path); bool parseJson(string &data,string &media_path); bool set_resolution(int w,int h); - bool preview(xmlIO &XML,string node,int w,int h); + bool preview(xmlIO &XML,string node,int frame,int w,int h); bool loaded; float duration; + float framerate; const string toString(); xmlIO xml; private: |
