Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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
vlc-1.1
Commits
8b1965a7
Commit
8b1965a7
authored
Oct 15, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/dvbsub.c: oops, small fix.
parent
1321d843
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+3
-1
No files found.
modules/codec/dvbsub.c
View file @
8b1965a7
...
...
@@ -472,7 +472,7 @@ static void decode_clut( decoder_t *p_dec, bs_t *s )
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint16_t
i_segment_length
;
uint16_t
i_processed_length
;
dvbsub_clut_t
*
p_clut
;
dvbsub_clut_t
*
p_clut
,
*
p_next
;
int
i_id
,
i_version
;
i_segment_length
=
bs_read
(
s
,
16
);
...
...
@@ -504,7 +504,9 @@ static void decode_clut( decoder_t *p_dec, bs_t *s )
}
/* Initialize to default clut */
p_next
=
p_clut
->
p_next
;
*
p_clut
=
p_sys
->
default_clut
;
p_clut
->
p_next
=
p_next
;
/* We don't have this version of the CLUT: Parse it */
p_clut
->
i_version
=
i_version
;
...
...
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