| 281 | } |
| 282 | |
| 283 | static void decssaClose( hb_work_object_t * w ) |
| 284 | { |
| 285 | hb_work_private_t * pv = w->private_data; |
| 286 | if (pv != NULL) |
| 287 | { |
| 288 | decavsubClose(pv->ctx); |
| 289 | av_packet_free(&pv->pkt); |
| 290 | avformat_close_input(&pv->ic); |
| 291 | free(pv); |
| 292 | } |
| 293 | w->private_data = NULL; |
| 294 | } |
| 295 | |
| 296 | hb_work_object_t hb_decssasub = |
| 297 | { |
nothing calls this directly
no test coverage detected