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
622ac6fc
Commit
622ac6fc
authored
Jul 22, 2013
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing va_end (cid #1049745)
parent
3a5100e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
modules/demux/mpeg/es.c
modules/demux/mpeg/es.c
+7
-0
No files found.
modules/demux/mpeg/es.c
View file @
622ac6fc
...
...
@@ -339,11 +339,13 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case
DEMUX_HAS_UNSUPPORTED_META
:
pb_bool
=
(
bool
*
)
va_arg
(
args
,
bool
*
);
*
pb_bool
=
true
;
va_end
(
args_save
);
return
VLC_SUCCESS
;
case
DEMUX_GET_TIME
:
pi64
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
*
pi64
=
p_sys
->
i_pts
+
p_sys
->
i_time_offset
;
va_end
(
args_save
);
return
VLC_SUCCESS
;
case
DEMUX_GET_LENGTH
:
...
...
@@ -360,10 +362,14 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
* don't bother trying ... Too bad */
if
(
f_pos
<
0
.
01
||
(
p_sys
->
i_pts
+
p_sys
->
i_time_offset
)
<
8000000
)
{
va_end
(
args_save
);
return
VLC_EGENERIC
;
}
pi64
=
(
int64_t
*
)
va_arg
(
args_save
,
int64_t
*
);
*
pi64
=
(
p_sys
->
i_pts
+
p_sys
->
i_time_offset
)
/
f_pos
;
va_end
(
args_save
);
return
VLC_SUCCESS
;
}
va_end
(
args_save
);
...
...
@@ -376,6 +382,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
i_ret
=
demux_vaControlHelper
(
p_demux
->
s
,
p_sys
->
i_stream_offset
,
-
1
,
p_sys
->
i_bitrate_avg
,
1
,
i_query
,
args
);
va_end
(
args_save
);
if
(
!
i_ret
&&
p_sys
->
i_bitrate_avg
>
0
&&
(
i_query
==
DEMUX_SET_POSITION
||
i_query
==
DEMUX_SET_TIME
)
)
{
...
...
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