-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Developer' into Python3.11
- Loading branch information
Showing
26 changed files
with
587 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#ifndef __DESCR_H_ | ||
#define __DESCR_H_ | ||
|
||
int descrambler_init(uint8_t ca_demux_id); | ||
#include <lib/dvb_ci/dvbci.h> | ||
|
||
int descrambler_init(int slot, uint8_t ca_demux_id); | ||
void descrambler_deinit(int desc_fd); | ||
int descrambler_set_key(int desc_fd, int index, int parity, unsigned char *data); | ||
int descrambler_set_key(int& desc_fd, eDVBCISlot *slot, int parity, unsigned char *data); | ||
int descrambler_set_pid(int desc_fd, int index, int enable, int pid); | ||
|
||
#endif |
Oops, something went wrong.