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
8b50d8e5
Commit
8b50d8e5
authored
Dec 07, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: libasf: fix tons of signedness
parent
28b94745
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
56 deletions
+58
-56
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+38
-36
modules/demux/asf/libasf.h
modules/demux/asf/libasf.h
+20
-20
No files found.
modules/demux/asf/libasf.c
View file @
8b50d8e5
This diff is collapsed.
Click to expand it.
modules/demux/asf/libasf.h
View file @
8b50d8e5
...
@@ -154,8 +154,8 @@ typedef struct
...
@@ -154,8 +154,8 @@ typedef struct
uint16_t
i_type
;
uint16_t
i_type
;
char
*
psz_name
;
char
*
psz_name
;
int64_t
i_val
;
u
int64_t
i_val
;
in
t
i_data
;
uint16_
t
i_data
;
uint8_t
*
p_data
;
uint8_t
*
p_data
;
}
asf_metadata_record_t
;
}
asf_metadata_record_t
;
...
@@ -239,10 +239,10 @@ typedef struct
...
@@ -239,10 +239,10 @@ typedef struct
{
{
ASF_OBJECT_COMMON
ASF_OBJECT_COMMON
in
t
i_bitrate
;
uint16_
t
i_bitrate
;
struct
struct
{
{
int
i_stream_number
;
uint8_t
i_stream_number
;
uint32_t
i_avg_bitrate
;
uint32_t
i_avg_bitrate
;
}
bitrate
[
128
];
}
bitrate
[
128
];
}
asf_object_stream_bitrate_properties_t
;
}
asf_object_stream_bitrate_properties_t
;
...
@@ -263,27 +263,27 @@ typedef struct
...
@@ -263,27 +263,27 @@ typedef struct
{
{
ASF_OBJECT_COMMON
ASF_OBJECT_COMMON
int64_t
i_start_time
;
u
int64_t
i_start_time
;
int64_t
i_end_time
;
u
int64_t
i_end_time
;
int32_t
i_data_bitrate
;
u
int32_t
i_data_bitrate
;
int32_t
i_buffer_size
;
u
int32_t
i_buffer_size
;
int32_t
i_initial_buffer_fullness
;
u
int32_t
i_initial_buffer_fullness
;
int32_t
i_alternate_data_bitrate
;
u
int32_t
i_alternate_data_bitrate
;
int32_t
i_alternate_buffer_size
;
u
int32_t
i_alternate_buffer_size
;
int32_t
i_alternate_initial_buffer_fullness
;
u
int32_t
i_alternate_initial_buffer_fullness
;
int32_t
i_maximum_object_size
;
u
int32_t
i_maximum_object_size
;
int32_t
i_flags
;
u
int32_t
i_flags
;
int16_t
i_stream_number
;
u
int16_t
i_stream_number
;
uint16_t
i_language_index
;
uint16_t
i_language_index
;
int64_t
i_average_time_per_frame
;
u
int64_t
i_average_time_per_frame
;
int
i_stream_name_count
;
uint16_t
i_stream_name_count
;
int
i_payload_extension_system_count
;
uint16_t
i_payload_extension_system_count
;
asf_payload_extension_system_t
*
p_ext
;
asf_payload_extension_system_t
*
p_ext
;
int
*
pi_stream_name_language
;
uint16_t
*
pi_stream_name_language
;
char
**
ppsz_stream_name
;
char
**
ppsz_stream_name
;
asf_object_stream_properties_t
*
p_sp
;
asf_object_stream_properties_t
*
p_sp
;
...
...
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