Ejemplo n.º 1
0
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 */ );
}
Ejemplo n.º 2
0
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 */ );
}