| 3045 | } |
| 3046 | |
| 3047 | const hb_mixdown_t* hb_mixdown_get_next(const hb_mixdown_t *last) |
| 3048 | { |
| 3049 | if (last == NULL) |
| 3050 | { |
| 3051 | return hb_audio_mixdowns_first_item; |
| 3052 | } |
| 3053 | return ((hb_mixdown_internal_t*)last)->next; |
| 3054 | } |
| 3055 | |
| 3056 | int hb_layout_get_name(const hb_channel_layout_t *ch_layout, char *name, int size) |
| 3057 | { |
no outgoing calls