[bTSstream-devel] [Git][videolan/bitstream][master] 2 commits: biss: missing bissca prefix
Christophe Massiot
gitlab at videolan.org
Tue Jan 15 14:45:31 CET 2019
Christophe Massiot pushed to branch master at VideoLAN / bitstream
Commits:
b6d9ffeb by Rafaël Carré at 2019-01-15T08:59:36Z
biss: missing bissca prefix
- - - - -
b3b6b53e by Christophe Massiot at 2019-01-15T13:44:45Z
Merge branch 'funman-biss'
- - - - -
1 changed file:
- ebu/biss.h
Changes:
=====================================
ebu/biss.h
=====================================
@@ -89,7 +89,7 @@ static inline uint8_t bissca_emm_get_last_table_id(const uint8_t *p_emm)
static inline void bissca_emm_set_emm_cipher_type(uint8_t *p_emm, uint8_t bissca_emm_cipher_type)
{
p_emm[BISSCA_EMM_HEADER_SIZE+3] &= 0x0f;
- p_emm[BISSCA_EMM_HEADER_SIZE+3] |= (emm_cipher_type << 5);
+ p_emm[BISSCA_EMM_HEADER_SIZE+3] |= (bissca_emm_cipher_type << 5);
}
static inline uint8_t bissca_emm_get_emm_cipher_type(const uint8_t *p_emm)
@@ -195,7 +195,7 @@ static inline bool bissca_emm_validate(const uint8_t *p_emm)
|| i_section_size < BISSCA_EMM_HEADER_SIZE + 6 + bissca_emm_get_desclength(p_emm))
return false;
- if (!descl_validate(emm_get_descl_const(p_emm), bissca_emm_get_desclength(p_emm)))
+ if (!descl_validate(bissca_emm_get_descl_const(p_emm), bissca_emm_get_desclength(p_emm)))
return false;
// TODO: validate RSA loop ?
View it on GitLab: https://code.videolan.org/videolan/bitstream/compare/d7682517d136e4c19a4b4dc7d2d3fad1e668e2b6...b3b6b53ea337537344e85ed6f3967f0e4134d14d
--
View it on GitLab: https://code.videolan.org/videolan/bitstream/compare/d7682517d136e4c19a4b4dc7d2d3fad1e668e2b6...b3b6b53ea337537344e85ed6f3967f0e4134d14d
You're receiving this email because of your account on code.videolan.org.
More information about the biTStream-devel
mailing list