Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5fff7614
Commit
5fff7614
authored
Aug 20, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kill a warning and put i_datalength as an uint32_t
parent
d487b81d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/tta.c
modules/demux/tta.c
+2
-2
No files found.
modules/demux/tta.c
View file @
5fff7614
...
...
@@ -68,7 +68,7 @@ struct demux_sys_t
uint32_t
i_totalframes
;
uint32_t
i_currentframe
;
uint32_t
*
pi_seektable
;
int
i_datalength
;
uint32_t
i_datalength
;
int
i_framelength
;
/* */
...
...
@@ -240,7 +240,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
if
(
i64
>
0
)
{
int64_t
tmp
=
0
;
int
i
;
uint32_t
i
;
for
(
i
=
0
;
i
<
p_sys
->
i_totalframes
&&
tmp
+
p_sys
->
pi_seektable
[
i
]
<
i64
;
i
++
)
{
tmp
+=
p_sys
->
pi_seektable
[
i
];
...
...
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