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
b47bc1af
Commit
b47bc1af
authored
Jan 13, 2016
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvbinfo: Fixes CID #17246
Remove duplicated check for descriptor tags in GetDescriptorName()
parent
31c0ac5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
examples/dvbinfo/libdvbpsi.c
examples/dvbinfo/libdvbpsi.c
+0
-4
No files found.
examples/dvbinfo/libdvbpsi.c
View file @
b47bc1af
...
...
@@ -946,10 +946,6 @@ 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
)
{
/*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