diff options
Diffstat (limited to 'Demo/sgi/video/VFile.py')
-rwxr-xr-x | Demo/sgi/video/VFile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/sgi/video/VFile.py b/Demo/sgi/video/VFile.py index 9e1eb36..c61ac04 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py @@ -978,8 +978,8 @@ class RandomVinFile(BasicVinFile): def getrandomframe(self, i): t, ds, cs = self.getrandomframeheader(i) - data, cdata = self.getnextframedata() - return t, ds, cs + data, cdata = self.getnextframedata(ds, cs) + return t, data, cdata def getrandomframeheader(self, i): if i < 0: raise ValueError, 'negative frame index' |