Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't define linuxdvb_ca_t twice, fixes #3587
  • Loading branch information
perexg committed Feb 23, 2016
1 parent f4d2362 commit 5e1dc45
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/descrambler/dvbcam.h
Expand Up @@ -24,12 +24,13 @@ struct elementary_stream;

#if ENABLE_LINUXDVB_CA

typedef struct linuxdvb_ca linuxdvb_ca_t;
struct linuxdvb_ca;

void dvbcam_init(void);
void dvbcam_service_start(struct service *t);
void dvbcam_service_stop(struct service *t);
void dvbcam_register_cam(linuxdvb_ca_t * lca, uint8_t slot, uint16_t * caids, int num_caids);
void dvbcam_unregister_cam(linuxdvb_ca_t * lca, uint8_t slot);
void dvbcam_register_cam(struct linuxdvb_ca *lca, uint8_t slot, uint16_t * caids, int num_caids);
void dvbcam_unregister_cam(struct linuxdvb_ca *lca, uint8_t slot);
void dvbcam_pmt_data(mpegts_service_t *s, const uint8_t *ptr, int len);

#endif
Expand Down

0 comments on commit 5e1dc45

Please sign in to comment.