| 352 | } |
| 353 | |
| 354 | static void bsf_list_flush(AVBSFContext *bsf) |
| 355 | { |
| 356 | BSFListContext *lst = bsf->priv_data; |
| 357 | |
| 358 | for (int i = 0; i < lst->nb_bsfs; i++) |
| 359 | av_bsf_flush(lst->bsfs[i]); |
| 360 | lst->idx = 0; |
| 361 | } |
| 362 | |
| 363 | static void bsf_list_close(AVBSFContext *bsf) |
| 364 | { |
nothing calls this directly
no test coverage detected