Lines Matching refs:ccs
1380 ClosedCaptionsStream *ccs;
1412 ccs = &(hls->cc_streams[i]);
1414 avio_printf(hls->m3u8_out, ",GROUP-ID=\"%s\"", ccs->ccgroup);
1415 avio_printf(hls->m3u8_out, ",NAME=\"%s\"", ccs->instreamid);
1416 if (ccs->language)
1417 avio_printf(hls->m3u8_out, ",LANGUAGE=\"%s\"", ccs->language);
1418 avio_printf(hls->m3u8_out, ",INSTREAM-ID=\"%s\"\n", ccs->instreamid);
1491 ccs = &(hls->cc_streams[j]);
1492 if (!av_strcasecmp(ccs->ccgroup, vs->ccgroup)) {
2144 ClosedCaptionsStream *ccs;
2168 ccs = &(hls->cc_streams[nb_ccstreams++]);
2176 ccs->ccgroup = val;
2178 ccs->instreamid = val;
2180 ccs->language = val;
2187 if (!ccs->ccgroup || !ccs->instreamid) {
2192 if (av_strstart(ccs->instreamid, "CC", &val)) {
2195 atoi(val), ccs->instreamid);
2198 } else if (av_strstart(ccs->instreamid, "SERVICE", &val)) {
2201 atoi(val), ccs->instreamid);
2206 ccs->instreamid);