| 936 | } |
| 937 | |
| 938 | const hb_rate_t* hb_video_framerate_get_next(const hb_rate_t *last) |
| 939 | { |
| 940 | if (last == NULL) |
| 941 | { |
| 942 | return hb_video_rates_first_item; |
| 943 | } |
| 944 | return ((hb_rate_internal_t*)last)->next; |
| 945 | } |
| 946 | |
| 947 | int hb_video_framerate_get_close(hb_rational_t *framerate, double thresh) |
| 948 | { |
no outgoing calls