| 1089 | } |
| 1090 | |
| 1091 | const hb_rate_t* hb_audio_samplerate_get_next(const hb_rate_t *last) |
| 1092 | { |
| 1093 | if (last == NULL) |
| 1094 | { |
| 1095 | return hb_audio_rates_first_item; |
| 1096 | } |
| 1097 | return ((hb_rate_internal_t*)last)->next; |
| 1098 | } |
| 1099 | |
| 1100 | const hb_rate_t* hb_audio_samplerate_get_next_for_codec(const hb_rate_t *last, |
| 1101 | uint32_t codec) |
no outgoing calls