| 273 | } |
| 274 | |
| 275 | static void make_empty_sub( int source, hb_buffer_list_t * list_pass ) |
| 276 | { |
| 277 | switch (source) |
| 278 | { |
| 279 | case PGSSUB: |
| 280 | make_empty_pgs(hb_buffer_list_head(list_pass)); |
| 281 | break; |
| 282 | case DVBSUB: |
| 283 | break; |
| 284 | default: |
| 285 | hb_buffer_list_close(list_pass); |
| 286 | break; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | // Returns a pointer to the first character after the ASS preamble |
| 291 | static const char * ssa_text(const char * ssa) |
no test coverage detected