MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / subtitles_none

Function subtitles_none

test/test.c:3683–3698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3681}
3682
3683static int subtitles_none(char **subtracks)
3684{
3685 if (subtracks != NULL)
3686 {
3687 int count = hb_str_vlen(subtracks);
3688 int ii;
3689 for (ii = 0; ii < count; ii++)
3690 {
3691 if (!strcasecmp(subtracks[0], "none"))
3692 {
3693 return 1;
3694 }
3695 }
3696 }
3697 return 0;
3698}
3699
3700static int count_subtitles(char **subtracks)
3701{

Callers 1

PreparePresetFunction · 0.85

Calls 1

hb_str_vlenFunction · 0.85

Tested by

no test coverage detected