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
c94293c4
Commit
c94293c4
authored
Nov 06, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libasf: remove unused variable.
parent
11f64a07
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+3
-6
No files found.
modules/demux/asf/libasf.c
View file @
c94293c4
...
...
@@ -213,10 +213,9 @@ static int ASF_ReadObject_Header( stream_t *s, asf_object_t *p_obj )
{
asf_object_header_t
*
p_hdr
=
&
p_obj
->
header
;
asf_object_t
*
p_subobj
;
int
i_peek
;
const
uint8_t
*
p_peek
;
if
(
(
i_peek
=
stream_Peek
(
s
,
&
p_peek
,
30
)
)
<
30
)
if
(
stream_Peek
(
s
,
&
p_peek
,
30
)
<
30
)
return
VLC_EGENERIC
;
p_hdr
->
i_sub_object_count
=
GetDWLE
(
p_peek
+
24
);
...
...
@@ -255,10 +254,9 @@ static int ASF_ReadObject_Header( stream_t *s, asf_object_t *p_obj )
static
int
ASF_ReadObject_Data
(
stream_t
*
s
,
asf_object_t
*
p_obj
)
{
asf_object_data_t
*
p_data
=
&
p_obj
->
data
;
int
i_peek
;
const
uint8_t
*
p_peek
;
if
(
(
i_peek
=
stream_Peek
(
s
,
&
p_peek
,
50
)
)
<
50
)
if
(
stream_Peek
(
s
,
&
p_peek
,
50
)
<
50
)
return
VLC_EGENERIC
;
ASF_GetGUID
(
&
p_data
->
i_file_id
,
p_peek
+
24
);
...
...
@@ -333,10 +331,9 @@ static void ASF_FreeObject_Index( asf_object_t *p_obj )
static
int
ASF_ReadObject_file_properties
(
stream_t
*
s
,
asf_object_t
*
p_obj
)
{
asf_object_file_properties_t
*
p_fp
=
&
p_obj
->
file_properties
;
int
i_peek
;
const
uint8_t
*
p_peek
;
if
(
(
i_peek
=
stream_Peek
(
s
,
&
p_peek
,
104
)
)
<
104
)
if
(
stream_Peek
(
s
,
&
p_peek
,
104
)
<
104
)
return
VLC_EGENERIC
;
ASF_GetGUID
(
&
p_fp
->
i_file_id
,
p_peek
+
24
);
...
...
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