return the number of undisplayed frames in the queue */
| 802 | |
| 803 | /* return the number of undisplayed frames in the queue */ |
| 804 | static int frame_queue_nb_remaining(FrameQueue *f) |
| 805 | { |
| 806 | return f->size - f->rindex_shown; |
| 807 | } |
| 808 | |
| 809 | /* return last shown position */ |
| 810 | static int64_t frame_queue_last_pos(FrameQueue *f) |
no outgoing calls
no test coverage detected