Home
last modified time | relevance | path

Searched refs:_curFrame (Results 1 – 25 of 148) sorted by relevance

123456

/dports/games/libretro-scummvm/scummvm-7b1e929/image/codecs/
H A Dcinepak.cpp354 _curFrame.surface = 0; in CinepakDecoder()
355 _curFrame.strips = 0; in CinepakDecoder()
388 if (_curFrame.surface) { in ~CinepakDecoder()
408 if (!_curFrame.strips) { in decodeFrame()
409 _curFrame.strips = new CinepakStrip[_curFrame.stripCount]; in decodeFrame()
416 …ak Frame: Width = %d, Height = %d, Strip Count = %d", _curFrame.width, _curFrame.height, _curFrame in decodeFrame()
427 if (!_curFrame.surface) { in decodeFrame()
429 _curFrame.surface->create(_curFrame.width, _curFrame.height, _pixelFormat); in decodeFrame()
438 _curFrame.strips[i].v1_codebook[j] = _curFrame.strips[i - 1].v1_codebook[j]; in decodeFrame()
439 _curFrame.strips[i].v4_codebook[j] = _curFrame.strips[i - 1].v4_codebook[j]; in decodeFrame()
[all …]
/dports/games/scummvm/scummvm-2.5.1/image/codecs/
H A Dcinepak.cpp354 _curFrame.surface = 0; in CinepakDecoder()
355 _curFrame.strips = 0; in CinepakDecoder()
388 if (_curFrame.surface) { in ~CinepakDecoder()
408 if (!_curFrame.strips) { in decodeFrame()
409 _curFrame.strips = new CinepakStrip[_curFrame.stripCount]; in decodeFrame()
416 …ak Frame: Width = %d, Height = %d, Strip Count = %d", _curFrame.width, _curFrame.height, _curFrame in decodeFrame()
427 if (!_curFrame.surface) { in decodeFrame()
429 _curFrame.surface->create(_curFrame.width, _curFrame.height, _pixelFormat); in decodeFrame()
438 _curFrame.strips[i].v1_codebook[j] = _curFrame.strips[i - 1].v1_codebook[j]; in decodeFrame()
439 _curFrame.strips[i].v4_codebook[j] = _curFrame.strips[i - 1].v4_codebook[j]; in decodeFrame()
[all …]
/dports/games/residualvm/residualvm-0.3.1/image/codecs/
H A Dcinepak.cpp354 _curFrame.surface = 0; in CinepakDecoder()
355 _curFrame.strips = 0; in CinepakDecoder()
388 if (_curFrame.surface) { in ~CinepakDecoder()
408 if (!_curFrame.strips) in decodeFrame()
409 _curFrame.strips = new CinepakStrip[_curFrame.stripCount]; in decodeFrame()
411 …ak Frame: Width = %d, Height = %d, Strip Count = %d", _curFrame.width, _curFrame.height, _curFrame in decodeFrame()
422 if (!_curFrame.surface) { in decodeFrame()
424 _curFrame.surface->create(_curFrame.width, _curFrame.height, _pixelFormat); in decodeFrame()
434 _curFrame.strips[i].v1_codebook[j] = _curFrame.strips[i - 1].v1_codebook[j]; in decodeFrame()
435 _curFrame.strips[i].v4_codebook[j] = _curFrame.strips[i - 1].v4_codebook[j]; in decodeFrame()
[all …]
/dports/games/residualvm/residualvm-0.3.1/video/
H A Dqt_decoder.cpp291 _curFrame = -1; in VideoTrackHandler()
353 _curFrame++; in seek()
364 _curFrame--; in seek()
436 _curFrame--; in decodeNextFrame()
440 if (_curFrame < 0) in decodeNextFrame()
526 _curFrame += 2; in setReverse()
531 _curFrame++; in setReverse()
545 _curFrame--; in setReverse()
560 _curFrame--; in setReverse()
604 for (int32 i = _curFrame - sampleInChunk; i < _curFrame; i++) { in getNextFramePacket()
[all …]
H A Dsmk_decoder.h86 bool rewind() { _curFrame = -1; return true; } in rewind()
91 int getCurFrame() const { return _curFrame; } in getCurFrame()
98 void increaseCurFrame() { _curFrame++; } in increaseCurFrame()
115 int _curFrame; variable
H A Dcoktel_decoder.cpp73 frame += _curFrame; in evaluateSeekFrame()
203 if (_curFrame > -1) in enableSound()
261 return _curFrame; in getCurFrame()
276 _curFrame = -1; in close()
718 _curFrame = -1; in seek()
725 _curFrame++; in seek()
785 _curFrame++; in processFrame()
947 _curFrame = 0; in seek()
1265 _curFrame++; in processFrame()
1723 _curFrame = -1; in seek()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/zvision/scripting/effects/
H A Ddistort_effect.cpp49 _curFrame = 1.0; in DistortNode()
71 _curFrame += updTime; in process()
73 _curFrame -= updTime; in process()
75 if (_curFrame < 1.0) { in process()
76 _curFrame = 1.0; in process()
78 } else if (_curFrame > _frames) { in process()
79 _curFrame = _frames; in process()
83 float diff = (1.0 / (5.0 - (_curFrame * _frmSpeed))) / (5.0 - _frmSpeed); in process()
H A Danimation_effect.cpp91 if (nod->_curFrame == -1) { in process()
93 nod->_curFrame = nod->start; in process()
117 nod->_curFrame = nod->start; in process()
195 nod._curFrame = -1; in addPlayNode()
/dports/games/scummvm/scummvm-2.5.1/engines/zvision/scripting/effects/
H A Ddistort_effect.cpp49 _curFrame = 1.0; in DistortNode()
71 _curFrame += updTime; in process()
73 _curFrame -= updTime; in process()
75 if (_curFrame < 1.0) { in process()
76 _curFrame = 1.0; in process()
78 } else if (_curFrame > _frames) { in process()
79 _curFrame = _frames; in process()
83 float diff = (1.0 / (5.0 - (_curFrame * _frmSpeed))) / (5.0 - _frmSpeed); in process()
H A Danimation_effect.cpp91 if (nod->_curFrame == -1) { in process()
93 nod->_curFrame = nod->start; in process()
117 nod->_curFrame = nod->start; in process()
195 nod._curFrame = -1; in addPlayNode()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/ultima8/gumps/
H A Dshape_viewer_gump.cpp97 if (shape && _curFrame < shape->frameCount()) in PaintThis()
98 surf->Paint(shape, _curFrame, posx, posy); in PaintThis()
194 _curFrame = 0; in OnKeyDown()
203 _curFrame = 0; in OnKeyDown()
211 if (_curFrame < delta) in OnKeyDown()
212 _curFrame = shape->frameCount() + _curFrame - delta; in OnKeyDown()
214 _curFrame -= delta; in OnKeyDown()
224 _curFrame = _curFrame + delta - shape->frameCount(); in OnKeyDown()
226 _curFrame += delta; in OnKeyDown()
240 _curFrame = 0; in OnKeyDown()
[all …]
/dports/games/scummvm/scummvm-2.5.1/video/
H A Dqt_decoder.cpp303 _curFrame = -1; in VideoTrackHandler()
412 _curFrame++; in seek()
423 _curFrame--; in seek()
495 _curFrame--; in decodeNextFrame()
588 _curFrame += 2; in setReverse()
593 _curFrame++; in setReverse()
607 _curFrame--; in setReverse()
622 _curFrame--; in setReverse()
666 for (int32 i = _curFrame - sampleInChunk; i < _curFrame; i++) { in getNextFramePacket()
717 _curFrame = -1; in enterNewEditListEntry()
[all …]
H A Dsmk_decoder.h90 bool rewind() { _curFrame = -1; return true; } in rewind()
95 int getCurFrame() const { return _curFrame; } in getCurFrame()
102 void increaseCurFrame() { _curFrame++; } in increaseCurFrame()
120 int _curFrame; variable
H A Dcoktel_decoder.cpp73 frame += _curFrame; in evaluateSeekFrame()
203 if (_curFrame > -1) in enableSound()
261 return _curFrame; in getCurFrame()
276 _curFrame = -1; in close()
718 _curFrame = -1; in seek()
725 _curFrame++; in seek()
785 _curFrame++; in processFrame()
947 _curFrame = 0; in seek()
1265 _curFrame++; in processFrame()
1723 _curFrame = -1; in seek()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/video/
H A Dqt_decoder.cpp293 _curFrame = -1; in VideoTrackHandler()
394 _curFrame++; in seek()
405 _curFrame--; in seek()
477 _curFrame--; in decodeNextFrame()
481 if (_curFrame < 0) in decodeNextFrame()
567 _curFrame += 2; in setReverse()
572 _curFrame++; in setReverse()
586 _curFrame--; in setReverse()
601 _curFrame--; in setReverse()
645 for (int32 i = _curFrame - sampleInChunk; i < _curFrame; i++) { in getNextFramePacket()
[all …]
H A Dsmk_decoder.h83 bool rewind() { _curFrame = -1; return true; } in rewind()
88 int getCurFrame() const { return _curFrame; } in getCurFrame()
95 void increaseCurFrame() { _curFrame++; } in increaseCurFrame()
111 int _curFrame; variable
H A Dcoktel_decoder.cpp73 frame += _curFrame; in evaluateSeekFrame()
203 if (_curFrame > -1) in enableSound()
261 return _curFrame; in getCurFrame()
276 _curFrame = -1; in close()
718 _curFrame = -1; in seek()
725 _curFrame++; in seek()
785 _curFrame++; in processFrame()
947 _curFrame = 0; in seek()
1265 _curFrame++; in processFrame()
1723 _curFrame = -1; in seek()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/pink/objects/actions/
H A Dwalk_action.cpp58 _curFrame = 0; in onStart()
64 if (_curFrame < _frameCount) in update()
65 _curFrame++; in update()
66 const double k = _curFrame / (double) _frameCount; in update()
80 if (_curFrame >= _frameCount - 1) { in update()
/dports/games/scummvm/scummvm-2.5.1/engines/pink/objects/actions/
H A Dwalk_action.cpp58 _curFrame = 0; in onStart()
64 if (_curFrame < _frameCount) in update()
65 _curFrame++; in update()
66 const double k = _curFrame / (double) _frameCount; in update()
80 if (_curFrame >= _frameCount - 1) { in update()
/dports/games/scummvm/scummvm-2.5.1/engines/trecision/
H A Danim.cpp38 _animType[i]._curFrame = 1; in AnimTypeManager()
309 handle->_curFrame = 0; in init()
317 ++_animType[i]._curFrame; in next()
324 h->_curFrame = 0; in end()
327 if (h->_curFrame == h->_lastFrame) in end()
330 h->_lastFrame = h->_curFrame; in end()
354 if (h->_curFrame == 0) in handler()
355 ++h->_curFrame; in handler()
357 if (h->_curFrame <= h->_lastFrame) in handler()
363 anim->_atFrame[i]._numFrame <= h->_curFrame && in handler()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/pink/
H A Dcel_decoder.cpp166 _curFrame++; in skipFrame()
175 if (_curFrame == 0) in skipFrame()
194 _curFrame++; in decodeNextFrame()
206 if (_curFrame == 0) in decodeNextFrame()
220 if (_curFrame >= (int)_frameCount - 1 && _fileStream->pos() < _fileStream->size()) in rewind()
225 _curFrame = -1; in rewind()
/dports/games/scummvm/scummvm-2.5.1/engines/pink/
H A Dcel_decoder.cpp166 _curFrame++; in skipFrame()
175 if (_curFrame == 0) in skipFrame()
194 _curFrame++; in decodeNextFrame()
206 if (_curFrame == 0) in decodeNextFrame()
220 if (_curFrame >= (int)_frameCount - 1 && _fileStream->pos() < _fileStream->size()) in rewind()
225 _curFrame = -1; in rewind()
/dports/games/scummvm/scummvm-2.5.1/engines/nancy/
H A Dvideo.cpp83 _curFrame = -1; in AVFVideoTrack()
149 _curFrame = getFrameAtTime(time); in seek()
160 return _curFrame < 0; in endOfTrack()
162 return _curFrame >= (getFrameCount() - 1); in endOfTrack()
267 return decodeFrame(_reversed ? _curFrame-- : ++_curFrame); in decodeNextFrame()
/dports/games/scummvm/scummvm-2.5.1/engines/nancy/ui/
H A Dinventorybox.cpp241 setAnimationFrame(_curFrame); in init()
251 if (_curFrame < g_nancy->getConstants().numCurtainAnimationFrames && time > _nextFrameTime) { in updateGraphics()
252 setAnimationFrame(++_curFrame); in updateGraphics()
261 if (_curFrame > 0 && time > _nextFrameTime) { in updateGraphics()
262 setAnimationFrame(--_curFrame); in updateGraphics()
272 if (_curFrame == 0 || _curFrame == g_nancy->getConstants().numCurtainAnimationFrames) { in updateGraphics()
/dports/print/py-reportlab/reportlab-3.5.68/tools/pythonpoint/
H A Dstdparser.py206 self._curFrame = None
398 self._curFrame = pythonpoint.PPFrame(
405 self._curFrame.showBoundary = 1
408 self._curSlide.frames.append(self._curFrame)
409 self._curFrame = None
434 if self._curFrame:
463 if self._curFrame:
477 self._curFrame.content.append(self._curPrefmt)
503 self._curFrame.content.append(self._curImage)
523 self._curFrame.content.append(self._curTable)
[all …]

123456