Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libdvdnav
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Code
Merge requests
10
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
libdvdnav
Commits
bd0e88f0
Commit
bd0e88f0
authored
3 years ago
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
vmget: Fix undefined shift
parent
2dbafd1b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!23
vmget: Fix undefined shift
Pipeline
#228870
passed with stage
in 1 minute and 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/vm/vmget.c
+1
-1
1 addition, 1 deletion
src/vm/vmget.c
with
1 addition
and
1 deletion
src/vm/vmget.c
+
1
−
1
View file @
bd0e88f0
...
...
@@ -144,7 +144,7 @@ int vm_get_subp_stream(vm_t *vm, int subpN, int mode) {
if
(
subpN
<
32
)
{
/* a valid logical stream */
/* Is this logical stream present */
if
((
vm
->
state
).
pgc
->
subp_control
[
subpN
]
&
(
1
<<
31
))
{
if
((
vm
->
state
).
pgc
->
subp_control
[
subpN
]
&
(
1
u
<<
31
))
{
if
(
source_aspect
==
0
)
/* 4:3 */
streamN
=
((
vm
->
state
).
pgc
->
subp_control
[
subpN
]
>>
24
)
&
0x1f
;
if
(
source_aspect
==
3
)
/* 16:9 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment