| 718 | } |
| 719 | |
| 720 | static void decsubClose( hb_work_object_t * w ) |
| 721 | { |
| 722 | hb_work_private_t * pv = w->private_data; |
| 723 | if (pv == NULL) |
| 724 | { |
| 725 | return; |
| 726 | } |
| 727 | decavsubClose(pv->ctx); |
| 728 | free(pv); |
| 729 | w->private_data = NULL; |
| 730 | } |
| 731 | |
| 732 | hb_work_object_t hb_decavsub = |
| 733 | { |
nothing calls this directly
no test coverage detected