* Check whether an input file is a potential subtitle file. */
| 263 | * Check whether an input file is a potential subtitle file. |
| 264 | */ |
| 265 | G_MODULE_EXPORT gboolean |
| 266 | ghb_file_is_subtitle (const char *filename) |
| 267 | { |
| 268 | return ghb_file_is_ssa_subtitle(filename) || |
| 269 | ghb_file_is_srt_subtitle(filename); |
| 270 | } |
| 271 | |
| 272 | char * |
| 273 | ghb_format_pretty_size (int64_t bytes) |
no test coverage detected