Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
54676e53
Commit
54676e53
authored
Sep 10, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed [
02184fcd
]
Sorry, I forgot 2 files. (cherry picked from commit
3ddc0024
)
parent
0ce69a7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+1
-0
modules/codec/spudec/spudec.h
modules/codec/spudec/spudec.h
+1
-0
No files found.
modules/codec/spudec/spudec.c
View file @
54676e53
...
@@ -151,6 +151,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
...
@@ -151,6 +151,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
/* FIXME: what the, we shouldn’t need to allocate 64k of buffer --sam. */
/* FIXME: what the, we shouldn’t need to allocate 64k of buffer --sam. */
p_sys
->
i_spu
=
block_ChainExtract
(
p_spu_block
,
p_sys
->
buffer
,
65536
);
p_sys
->
i_spu
=
block_ChainExtract
(
p_spu_block
,
p_sys
->
buffer
,
65536
);
p_sys
->
i_pts
=
p_spu_block
->
i_pts
;
p_sys
->
i_pts
=
p_spu_block
->
i_pts
;
p_sys
->
i_rate
=
p_spu_block
->
i_rate
;
block_ChainRelease
(
p_spu_block
);
block_ChainRelease
(
p_spu_block
);
/* Parse and decode */
/* Parse and decode */
...
...
modules/codec/spudec/spudec.h
View file @
54676e53
...
@@ -28,6 +28,7 @@ struct decoder_sys_t
...
@@ -28,6 +28,7 @@ struct decoder_sys_t
int
b_packetizer
;
int
b_packetizer
;
mtime_t
i_pts
;
mtime_t
i_pts
;
int
i_rate
;
unsigned
int
i_spu_size
;
unsigned
int
i_spu_size
;
unsigned
int
i_rle_size
;
unsigned
int
i_rle_size
;
unsigned
int
i_spu
;
unsigned
int
i_spu
;
...
...
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