View Single Post
Old 25th May 2017, 16:09   #16  |  Link
videoh
Useful n00b
 
Join Date: Jul 2014
Posts: 1,667
For 3:2 pulldown you expect as you traverse the stream to see a certain rate of RFF flags. If the rate falls below, then you mark the current field to be repeated. If the rate gets too high, then you mark a field to be discarded. As I mentioned earlier, it is reminiscent of Bresenham's line drawing algorithm. MPEG2Source() creates a table this way and then uses it to decide what to return based on the requested frame number. Most of the magic is in the table and how you actually implement pulling down or deleting fields to generate the output frames.

https://www.cs.helsinki.fi/group/goa...s/bresenh.html

Typically, the RFF rate gets too low, e.g., where you have a video section, or where you have hard pulldown instead of soft. But it is possible to have a too-high RFF rate, and that is why the algorithm allows for it.

Last edited by videoh; 25th May 2017 at 16:18.
videoh is offline   Reply With Quote