Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
51f5d3db
Commit
51f5d3db
authored
Mar 16, 2015
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SIS table: fix CID #17234
parent
55b23175
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/tables/sis.c
src/tables/sis.c
+1
-1
No files found.
src/tables/sis.c
View file @
51f5d3db
...
@@ -430,7 +430,7 @@ void dvbpsi_sis_sections_decode(dvbpsi_t* p_dvbpsi, dvbpsi_sis_t* p_sis,
...
@@ -430,7 +430,7 @@ void dvbpsi_sis_sections_decode(dvbpsi_t* p_dvbpsi, dvbpsi_sis_t* p_sis,
p_byte
<
p_section
->
p_payload_end
;
)
p_byte
<
p_section
->
p_payload_end
;
)
{
{
p_sis
->
i_protocol_version
=
p_byte
[
3
];
p_sis
->
i_protocol_version
=
p_byte
[
3
];
p_sis
->
b_encrypted_packet
=
((
p_byte
[
4
]
&
0x80
)
>>
8
);
p_sis
->
b_encrypted_packet
=
((
p_byte
[
4
]
&
0x80
)
==
0x80
);
/* NOTE: cannot handle encrypted packet */
/* NOTE: cannot handle encrypted packet */
assert
(
p_sis
->
b_encrypted_packet
);
assert
(
p_sis
->
b_encrypted_packet
);
p_sis
->
i_encryption_algorithm
=
((
p_byte
[
4
]
&
0x7E
)
>>
1
);
p_sis
->
i_encryption_algorithm
=
((
p_byte
[
4
]
&
0x7E
)
>>
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment