Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
7d320e18
Commit
7d320e18
authored
Jan 30, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* spudec: a %d -> IF64d
parent
d8e0caa1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+2
-2
No files found.
modules/codec/spudec/spudec.c
View file @
7d320e18
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* spudec.c : SPU decoder thread
* spudec.c : SPU decoder thread
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* Copyright (C) 2000-2001 VideoLAN
* $Id: spudec.c,v 1.3
2 2004/01/30 16:46:33
fenrir Exp $
* $Id: spudec.c,v 1.3
3 2004/01/30 16:50:26
fenrir Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
* Laurent Aimar <fenrir@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr>
...
@@ -222,7 +222,7 @@ static block_t *Reassemble( decoder_t *p_dec, block_t **pp_block )
...
@@ -222,7 +222,7 @@ static block_t *Reassemble( decoder_t *p_dec, block_t **pp_block )
if
(
p_sys
->
i_spu_size
<=
0
&&
(
p_block
->
i_pts
<=
0
||
p_block
->
i_buffer
<
4
)
)
if
(
p_sys
->
i_spu_size
<=
0
&&
(
p_block
->
i_pts
<=
0
||
p_block
->
i_buffer
<
4
)
)
{
{
msg_Dbg
(
p_dec
,
"invalid starting packet (size < 4 or pts <=0)"
);
msg_Dbg
(
p_dec
,
"invalid starting packet (size < 4 or pts <=0)"
);
msg_Dbg
(
p_dec
,
"spu size: %d, i_pts:
%d
i_buffer: %d"
,
p_sys
->
i_spu_size
,
p_block
->
i_pts
,
p_block
->
i_buffer
);
msg_Dbg
(
p_dec
,
"spu size: %d, i_pts:
"
I64Fd
"
i_buffer: %d"
,
p_sys
->
i_spu_size
,
p_block
->
i_pts
,
p_block
->
i_buffer
);
block_Release
(
p_block
);
block_Release
(
p_block
);
return
NULL
;
return
NULL
;
}
}
...
...
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