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
63bc9a04
Commit
63bc9a04
authored
Mar 18, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: ts: fix IOD signedness/warning
parent
0c78fd64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
modules/demux/ts.c
modules/demux/ts.c
+14
-14
No files found.
modules/demux/ts.c
View file @
63bc9a04
...
@@ -209,7 +209,7 @@ typedef struct
...
@@ -209,7 +209,7 @@ typedef struct
uint8_t
i_objectTypeIndication
;
uint8_t
i_objectTypeIndication
;
uint8_t
i_streamType
;
uint8_t
i_streamType
;
int
i_extra
;
unsigned
i_extra
;
uint8_t
*
p_extra
;
uint8_t
*
p_extra
;
}
decoder_config_descriptor_t
;
}
decoder_config_descriptor_t
;
...
@@ -3341,7 +3341,7 @@ static void PIDFillFormat( es_format_t *fmt, int i_stream_type )
...
@@ -3341,7 +3341,7 @@ static void PIDFillFormat( es_format_t *fmt, int i_stream_type )
/*****************************************************************************
/*****************************************************************************
* MP4 specific functions (IOD parser)
* MP4 specific functions (IOD parser)
*****************************************************************************/
*****************************************************************************/
static
int
IODDescriptorLength
(
int
*
pi_data
,
uint8_t
**
pp_data
)
static
unsigned
IODDescriptorLength
(
unsigned
*
pi_data
,
uint8_t
**
pp_data
)
{
{
unsigned
int
i_b
;
unsigned
int
i_b
;
unsigned
int
i_len
=
0
;
unsigned
int
i_len
=
0
;
...
@@ -3360,9 +3360,9 @@ static int IODDescriptorLength( int *pi_data, uint8_t **pp_data )
...
@@ -3360,9 +3360,9 @@ static int IODDescriptorLength( int *pi_data, uint8_t **pp_data )
return
i_len
;
return
i_len
;
}
}
static
int
IODGetBytes
(
int
*
pi_data
,
uint8_t
**
pp_data
,
size_t
bytes
)
static
unsigned
IODGetBytes
(
unsigned
*
pi_data
,
uint8_t
**
pp_data
,
size_t
bytes
)
{
{
u
int32_t
res
=
0
;
u
nsigned
res
=
0
;
while
(
*
pi_data
>
0
&&
bytes
--
)
while
(
*
pi_data
>
0
&&
bytes
--
)
{
{
res
<<=
8
;
res
<<=
8
;
...
@@ -3374,9 +3374,9 @@ static int IODGetBytes( int *pi_data, uint8_t **pp_data, size_t bytes )
...
@@ -3374,9 +3374,9 @@ static int IODGetBytes( int *pi_data, uint8_t **pp_data, size_t bytes )
return
res
;
return
res
;
}
}
static
char
*
IODGetURL
(
int
*
pi_data
,
uint8_t
**
pp_data
)
static
char
*
IODGetURL
(
unsigned
*
pi_data
,
uint8_t
**
pp_data
)
{
{
int
len
=
IODGetBytes
(
pi_data
,
pp_data
,
1
);
unsigned
len
=
IODGetBytes
(
pi_data
,
pp_data
,
1
);
if
(
len
>
*
pi_data
)
if
(
len
>
*
pi_data
)
len
=
*
pi_data
;
len
=
*
pi_data
;
char
*
url
=
strndup
(
(
char
*
)
*
pp_data
,
len
);
char
*
url
=
strndup
(
(
char
*
)
*
pp_data
,
len
);
...
@@ -3385,7 +3385,7 @@ static char* IODGetURL( int *pi_data, uint8_t **pp_data )
...
@@ -3385,7 +3385,7 @@ static char* IODGetURL( int *pi_data, uint8_t **pp_data )
return
url
;
return
url
;
}
}
static
iod_descriptor_t
*
IODNew
(
int
i_data
,
uint8_t
*
p_data
)
static
iod_descriptor_t
*
IODNew
(
unsigned
i_data
,
uint8_t
*
p_data
)
{
{
uint8_t
i_iod_tag
,
i_iod_label
,
byte1
,
byte2
,
byte3
;
uint8_t
i_iod_tag
,
i_iod_label
,
byte1
,
byte2
,
byte3
;
...
@@ -3446,17 +3446,17 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
...
@@ -3446,17 +3446,17 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
/* visual */
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
/* visual */
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
/* graphics */
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
/* graphics */
int
i_length
=
0
;
unsigned
i_length
=
0
;
int
i_data_sav
=
i_data
;
unsigned
i_data_sav
=
i_data
;
uint8_t
*
p_data_sav
=
p_data
;
uint8_t
*
p_data_sav
=
p_data
;
for
(
int
i
=
0
;
i_data
>
0
&&
i
<
ES_DESCRIPTOR_COUNT
;
i
++
)
for
(
unsigned
i
=
0
;
i_data
>
0
&&
i
<
ES_DESCRIPTOR_COUNT
;
i
++
)
{
{
es_mpeg4_descriptor_t
*
es_descr
=
&
p_iod
->
es_descr
[
i
];
es_mpeg4_descriptor_t
*
es_descr
=
&
p_iod
->
es_descr
[
i
];
p_data
=
p_data_sav
+
i_length
;
p_data
=
p_data_sav
+
i_length
;
i_data
=
i_data_sav
-
i_length
;
i_data
=
i_data_sav
-
i_length
;
in
t
i_tag
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
uint8_
t
i_tag
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
i_length
=
IODDescriptorLength
(
&
i_data
,
&
p_data
);
i_length
=
IODDescriptorLength
(
&
i_data
,
&
p_data
);
i_data_sav
=
i_data
;
i_data_sav
=
i_data
;
...
@@ -3471,7 +3471,7 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
...
@@ -3471,7 +3471,7 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
}
}
es_descr
->
i_es_id
=
IODGetBytes
(
&
i_data
,
&
p_data
,
2
);
es_descr
->
i_es_id
=
IODGetBytes
(
&
i_data
,
&
p_data
,
2
);
in
t
i_flags
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
uint8_
t
i_flags
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
bool
b_streamDependenceFlag
=
(
i_flags
>>
7
)
&
0x01
;
bool
b_streamDependenceFlag
=
(
i_flags
>>
7
)
&
0x01
;
if
(
b_streamDependenceFlag
)
if
(
b_streamDependenceFlag
)
IODGetBytes
(
&
i_data
,
&
p_data
,
2
);
/* dependOn_es_id */
IODGetBytes
(
&
i_data
,
&
p_data
,
2
);
/* dependOn_es_id */
...
@@ -3488,7 +3488,7 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
...
@@ -3488,7 +3488,7 @@ static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
ts_debug
(
"
\n
* ERR missing DecoderConfigDescr"
);
ts_debug
(
"
\n
* ERR missing DecoderConfigDescr"
);
continue
;
continue
;
}
}
int
i_config_desc_length
=
IODDescriptorLength
(
&
i_data
,
&
p_data
);
/* DecoderConfigDescr_length */
unsigned
i_config_desc_length
=
IODDescriptorLength
(
&
i_data
,
&
p_data
);
/* DecoderConfigDescr_length */
decoder_config_descriptor_t
*
dec_descr
=
&
es_descr
->
dec_descr
;
decoder_config_descriptor_t
*
dec_descr
=
&
es_descr
->
dec_descr
;
dec_descr
->
i_objectTypeIndication
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
dec_descr
->
i_objectTypeIndication
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
i_flags
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
i_flags
=
IODGetBytes
(
&
i_data
,
&
p_data
,
1
);
...
@@ -4267,7 +4267,7 @@ static void PMTSetupEsISO14496( demux_t *p_demux, ts_pes_es_t *p_es,
...
@@ -4267,7 +4267,7 @@ static void PMTSetupEsISO14496( demux_t *p_demux, ts_pes_es_t *p_es,
if
(
p_fmt
->
i_cat
!=
UNKNOWN_ES
)
if
(
p_fmt
->
i_cat
!=
UNKNOWN_ES
)
{
{
p_fmt
->
i_extra
=
dcd
->
i_extra
;
p_fmt
->
i_extra
=
__MIN
(
dcd
->
i_extra
,
INT32_MAX
)
;
if
(
p_fmt
->
i_extra
>
0
)
if
(
p_fmt
->
i_extra
>
0
)
{
{
p_fmt
->
p_extra
=
malloc
(
p_fmt
->
i_extra
);
p_fmt
->
p_extra
=
malloc
(
p_fmt
->
i_extra
);
...
...
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