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
36777b8a
Commit
36777b8a
authored
Dec 15, 2014
by
mbenoit
Committed by
Jean-Paul Saman
Dec 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tables/eit: Fix invalid parsing of 'free_ca' field
Signed-off-by:
Jean-Paul Saman
<
jpsaman@videolan.org
>
parent
27eca357
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/tables/eit.c
src/tables/eit.c
+1
-1
No files found.
src/tables/eit.c
View file @
36777b8a
...
...
@@ -535,7 +535,7 @@ void dvbpsi_eit_sections_decode(dvbpsi_eit_t* p_eit,
((
uint32_t
)(
p_byte
[
8
])
<<
8
)
|
p_byte
[
9
];
uint8_t
i_running_status
=
(
uint8_t
)(
p_byte
[
10
])
>>
5
;
bool
b_free_ca
=
((
p_byte
[
10
]
&
0x
8
)
==
0x8
)
?
false
:
tru
e
;
bool
b_free_ca
=
((
p_byte
[
10
]
&
0x
10
)
==
0x10
)
?
true
:
fals
e
;
uint16_t
i_ev_length
=
((
uint16_t
)(
p_byte
[
10
]
&
0xf
)
<<
8
)
|
p_byte
[
11
];
dvbpsi_eit_event_t
*
p_event
=
dvbpsi_eit_event_add
(
p_eit
,
...
...
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