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
0b0d556a
Commit
0b0d556a
authored
Jan 11, 2016
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvbinfo: libdvbpsi.c: split if condition in GetDescriptorName()
parent
25587a2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
examples/dvbinfo/libdvbpsi.c
examples/dvbinfo/libdvbpsi.c
+5
-5
No files found.
examples/dvbinfo/libdvbpsi.c
View file @
0b0d556a
...
...
@@ -946,11 +946,11 @@ static char const* GetDescriptorName(uint8_t tag)
/*19-26*/
return
"Defined in ISO/IEC 13818-6"
;
}
else
if
(
tag
>=
0x2d
&&
tag
<=
0x3f
)
{
/*45-63*/
return
"ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved"
;
}
else
if
(
(
tag
>=
0x40
&&
tag
<=
0x51
)
||
(
tag
>=
0x53
&&
tag
<=
0x55
))
{
/*64-81 and 83-84*/
return
"User Private"
;
}
else
}
else
if
(
tag
>=
0x40
&&
tag
<=
0x51
)
{
/*64-81*/
return
"User Private"
;
}
else
if
(
tag
>=
0x53
&&
tag
<=
0x55
)
{
/*83-84*/
return
"User Private"
;
}
else
/*87-255*/
return
"User Private"
;
break
;
};
...
...
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