void cam_sw_client_update_pmt (CamSwClient * client, GstStructure * pmt) { g_return_if_fail (client != NULL); g_return_if_fail (pmt != NULL); return send_ca_pmt (client, pmt, 0x05 /* update */ , 0x01 /* ok_descrambling */ ); }
void cam_sw_client_set_pmt (CamSwClient * client, GstMpegTsPMT * pmt) { g_return_if_fail (client != NULL); g_return_if_fail (pmt != NULL); return send_ca_pmt (client, pmt, 0x03 /* only */ , 0x01 /* ok_descrambling */ ); }