| 3171 | } |
| 3172 | |
| 3173 | const hb_encoder_t* hb_video_encoder_get_next(const hb_encoder_t *last) |
| 3174 | { |
| 3175 | if (last == NULL) |
| 3176 | { |
| 3177 | return hb_video_encoders_first_item; |
| 3178 | } |
| 3179 | return ((hb_encoder_internal_t*)last)->next; |
| 3180 | } |
| 3181 | |
| 3182 | // for a valid passthru, return the matching encoder for that codec (if any), |
| 3183 | // else return -1 (i.e. drop the track) |
no outgoing calls