Multithreaded playback
Multithreaded playback
Posted Mar 10, 2009 19:33 UTC (Tue) by jengelh (guest, #33263)In reply to: Multithreaded playback by mjr
Parent article: FFmpeg 0.5 released
As to your comment about needing large amount of memory for the cache:
You could stop decoding just before the RLE codes are unpacked, and do that decoding step then just right before the frame is displayed. Unpacking the RLE and applying the delta-frame should be pretty straightforward.
Posted Mar 12, 2009 4:44 UTC (Thu)
by krasic (guest, #4782)
[Link]
After RLE, you have to apply the idct, iquant, and then apply the delta. That's still a lot of work.
No?
Multithreaded playback