Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

copyright pes header flag - desc 06a reserved flags fix - desc 38 and 3f support - AU_Information #25

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
desc 06a reserved flags fix
  • Loading branch information
nriviera committed May 13, 2020
commit 8b6488d1931fc961e2e63ac6ae79fd13cbe54380
4 changes: 2 additions & 2 deletions dvb/si/desc_6a.h
Original file line number Diff line number Diff line change
@@ -51,12 +51,12 @@ static inline void desc6a_init(uint8_t *p_desc)
{
desc_set_tag(p_desc, 0x6a);
desc_set_length(p_desc, (DESC6A_HEADER_SIZE - DESC_HEADER_SIZE));
p_desc[2] = 0x0f;
p_desc[2] = 0x00;
nriviera marked this conversation as resolved.
Show resolved Hide resolved
}

static inline void desc6a_clear_flags(uint8_t *p_desc)
{
p_desc[2] = 0x0f;
p_desc[2] = 0x00;
}

#define DEFINE_AC3_FLAG(FLAGNAME, bit) \