Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
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
libdvbpsi
Commits
b2b5e869
Commit
b2b5e869
authored
Feb 16, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/table/bat*: Cleanup
- Use bool for structure members that are used as bools - Indentation
parent
2e95f74f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
126 deletions
+121
-126
src/tables/bat.c
src/tables/bat.c
+117
-122
src/tables/bat.h
src/tables/bat.h
+3
-3
src/tables/bat_private.h
src/tables/bat_private.h
+1
-1
No files found.
src/tables/bat.c
View file @
b2b5e869
...
@@ -99,7 +99,7 @@ bool dvbpsi_AttachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
...
@@ -99,7 +99,7 @@ bool dvbpsi_AttachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
p_bat_decoder
->
pf_bat_callback
=
pf_callback
;
p_bat_decoder
->
pf_bat_callback
=
pf_callback
;
p_bat_decoder
->
p_cb_data
=
p_cb_data
;
p_bat_decoder
->
p_cb_data
=
p_cb_data
;
/* BAT decoder initial state */
/* BAT decoder initial state */
p_bat_decoder
->
b_current_valid
=
0
;
p_bat_decoder
->
b_current_valid
=
false
;
p_bat_decoder
->
p_building_bat
=
NULL
;
p_bat_decoder
->
p_building_bat
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<
256
;
i
++
)
for
(
unsigned
int
i
=
0
;
i
<
256
;
i
++
)
...
@@ -158,7 +158,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extensi
...
@@ -158,7 +158,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extensi
* Initialize a pre-allocated dvbpsi_bat_t structure.
* Initialize a pre-allocated dvbpsi_bat_t structure.
*****************************************************************************/
*****************************************************************************/
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
int
b_current_next
)
bool
b_current_next
)
{
{
p_bat
->
i_bouquet_id
=
i_bouquet_id
;
p_bat
->
i_bouquet_id
=
i_bouquet_id
;
p_bat
->
i_version
=
i_version
;
p_bat
->
i_version
=
i_version
;
...
@@ -287,8 +287,20 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
...
@@ -287,8 +287,20 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
dvbpsi_demux_t
*
p_demux
=
(
dvbpsi_demux_t
*
)
p_dvbpsi
->
p_private
;
dvbpsi_demux_t
*
p_demux
=
(
dvbpsi_demux_t
*
)
p_dvbpsi
->
p_private
;
dvbpsi_bat_decoder_t
*
p_bat_decoder
dvbpsi_bat_decoder_t
*
p_bat_decoder
=
(
dvbpsi_bat_decoder_t
*
)
p_private_decoder
;
=
(
dvbpsi_bat_decoder_t
*
)
p_private_decoder
;
int
b_append
=
1
;
int
b_reinit
=
0
;
bool
b_reinit
=
false
;
assert
(
p_dvbpsi
);
assert
(
p_dvbpsi
->
p_private
);
if
(
!
p_section
->
b_syntax_indicator
)
{
/* Invalid section_syntax_indicator */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"invalid section (section_syntax_indicator == 0)"
);
dvbpsi_DeletePSISections
(
p_section
);
return
;
}
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"Table version %2d, "
"i_table_id %2d, "
"i_extension %5d, "
"Table version %2d, "
"i_table_id %2d, "
"i_extension %5d, "
...
@@ -298,74 +310,64 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
...
@@ -298,74 +310,64 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
p_section
->
i_number
,
p_section
->
i_last_number
,
p_section
->
i_number
,
p_section
->
i_last_number
,
p_section
->
b_current_next
);
p_section
->
b_current_next
);
if
(
!
p_section
->
b_syntax_indicator
)
/* We have a valid BAT section */
/* TS discontinuity check */
if
(
p_demux
->
b_discontinuity
)
{
{
/* Invalid section_syntax_indicator */
b_reinit
=
true
;
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
p_demux
->
b_discontinuity
=
false
;
"invalid section (section_syntax_indicator == 0)"
);
b_append
=
0
;
}
}
else
/* Now if b_append is true then we have a valid BAT section */
if
(
b_append
)
{
{
/* TS discontinuity check */
/* Perform a few sanity checks */
if
(
p_demux
->
b_discontinuity
)
if
(
p_bat_decoder
->
p_building_bat
)
{
b_reinit
=
1
;
p_demux
->
b_discontinuity
=
0
;
}
else
{
{
/* Perform a few sanity checks */
if
(
p_bat_decoder
->
p_building_bat
->
i_bouquet_id
!=
p_section
->
i_extension
)
if
(
p_bat_decoder
->
p_building_bat
)
{
{
if
(
p_bat_decoder
->
p_building_bat
->
i_bouquet_id
!=
p_section
->
i_extension
)
/* bouquet_id */
{
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'bouquet_id' differs"
/* bouquet_id */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'bouquet_id' differs"
" whereas no TS discontinuity has occured"
);
" whereas no TS discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
}
else
if
(
p_bat_decoder
->
p_building_bat
->
i_version
else
if
(
p_bat_decoder
->
p_building_bat
->
i_version
!=
p_section
->
i_version
)
!=
p_section
->
i_version
)
{
{
/* version_number */
/* version_number */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'version_number' differs"
"'version_number' differs"
" whereas no discontinuity has occured"
);
" whereas no discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
}
else
if
(
p_bat_decoder
->
i_last_section_number
!=
else
if
(
p_bat_decoder
->
i_last_section_number
!=
p_section
->
i_last_number
)
p_section
->
i_last_number
)
{
{
/* last_section_number */
/* last_section_number */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'last_section_number' differs"
"'last_section_number' differs"
" whereas no discontinuity has occured"
);
" whereas no discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
}
}
else
}
else
{
if
(
(
p_bat_decoder
->
b_current_valid
)
&&
(
p_bat_decoder
->
current_bat
.
i_version
==
p_section
->
i_version
)
&&
(
p_bat_decoder
->
current_bat
.
b_current_next
==
p_section
->
b_current_next
))
{
{
if
(
(
p_bat_decoder
->
b_current_valid
)
/* Don't decode since this version is already decoded */
&&
(
p_bat_decoder
->
current_bat
.
i_version
==
p_section
->
i_version
))
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
{
"ignoring already decoded section %d"
,
/* Signal a new BAT if the previous one wasn't active */
p_section
->
i_number
);
if
(
(
!
p_bat_decoder
->
current_bat
.
b_current_next
)
}
&&
(
p_section
->
b_current_next
))
else
if
(
(
!
p_bat_decoder
->
current_bat
.
b_current_next
)
{
&&
(
p_section
->
b_current_next
))
dvbpsi_bat_t
*
p_bat
=
NULL
;
{
/* Signal a new BAT if the previous one wasn't active */
p_bat_decoder
->
current_bat
.
b_current_next
=
1
;
dvbpsi_bat_t
*
p_bat
=
NULL
;
*
p_bat
=
p_bat_decoder
->
current_bat
;
p_bat_decoder
->
current_bat
.
b_current_next
=
true
;
p_bat_decoder
->
pf_bat_callback
(
p_bat_decoder
->
p_cb_data
,
p_bat
);
*
p_bat
=
p_bat_decoder
->
current_bat
;
}
p_bat_decoder
->
pf_bat_callback
(
p_bat_decoder
->
p_cb_data
,
p_bat
);
/* Don't decode since this version is already decoded */
b_append
=
0
;
}
}
}
dvbpsi_DeletePSISections
(
p_section
);
return
;
}
}
}
}
...
@@ -373,7 +375,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
...
@@ -373,7 +375,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
if
(
b_reinit
)
if
(
b_reinit
)
{
{
/* Force redecoding */
/* Force redecoding */
p_bat_decoder
->
b_current_valid
=
0
;
p_bat_decoder
->
b_current_valid
=
false
;
/* Free structures */
/* Free structures */
if
(
p_bat_decoder
->
p_building_bat
)
if
(
p_bat_decoder
->
p_building_bat
)
{
{
...
@@ -392,73 +394,66 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
...
@@ -392,73 +394,66 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
}
}
/* Append the section to the list if wanted */
/* Append the section to the list if wanted */
if
(
b_append
)
bool
b_complete
=
false
;
{
int
b_complete
=
0
;
/* Initialize the structures if it's the first section received */
/* Initialize the structures if it's the first section received */
if
(
!
p_bat_decoder
->
p_building_bat
)
if
(
!
p_bat_decoder
->
p_building_bat
)
{
{
p_bat_decoder
->
p_building_bat
=
p_bat_decoder
->
p_building_bat
=
(
dvbpsi_bat_t
*
)
malloc
(
sizeof
(
dvbpsi_bat_t
));
(
dvbpsi_bat_t
*
)
malloc
(
sizeof
(
dvbpsi_bat_t
));
if
(
p_bat_decoder
->
p_building_bat
)
if
(
p_bat_decoder
->
p_building_bat
)
dvbpsi_InitBAT
(
p_bat_decoder
->
p_building_bat
,
dvbpsi_InitBAT
(
p_bat_decoder
->
p_building_bat
,
p_section
->
i_extension
,
p_section
->
i_extension
,
p_section
->
i_version
,
p_section
->
i_version
,
p_section
->
b_current_next
);
p_section
->
b_current_next
);
else
else
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"failed decoding BAT section"
);
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"failed decoding BAT section"
);
p_bat_decoder
->
i_last_section_number
=
p_section
->
i_last_number
;
p_bat_decoder
->
i_last_section_number
=
p_section
->
i_last_number
;
}
}
/* Fill the section array */
/* Fill the section array */
if
(
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]
!=
NULL
)
if
(
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]
!=
NULL
)
{
{
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"overwrite section number %d"
,
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"overwrite section number %d"
,
p_section
->
i_number
);
p_section
->
i_number
);
dvbpsi_DeletePSISections
(
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]);
dvbpsi_DeletePSISections
(
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]);
}
}
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]
=
p_section
;
p_bat_decoder
->
ap_sections
[
p_section
->
i_number
]
=
p_section
;
/* Check if we have all the sections */
/* Check if we have all the sections */
for
(
unsigned
int
i
=
0
;
i
<=
p_bat_decoder
->
i_last_section_number
;
i
++
)
for
(
unsigned
int
i
=
0
;
i
<=
p_bat_decoder
->
i_last_section_number
;
i
++
)
{
{
if
(
!
p_bat_decoder
->
ap_sections
[
i
])
if
(
!
p_bat_decoder
->
ap_sections
[
i
])
break
;
break
;
if
(
i
==
p_bat_decoder
->
i_last_section_number
)
if
(
i
==
p_bat_decoder
->
i_last_section_number
)
b_complete
=
1
;
b_complete
=
true
;
}
}
if
(
b_complete
)
if
(
b_complete
)
{
/* Save the current information */
p_bat_decoder
->
current_bat
=
*
p_bat_decoder
->
p_building_bat
;
p_bat_decoder
->
b_current_valid
=
true
;
/* Chain the sections */
if
(
p_bat_decoder
->
i_last_section_number
)
{
{
/* Save the current information */
for
(
int
j
=
0
;
j
<=
p_bat_decoder
->
i_last_section_number
-
1
;
j
++
)
p_bat_decoder
->
current_bat
=
*
p_bat_decoder
->
p_building_bat
;
p_bat_decoder
->
b_current_valid
=
1
;
/* Chain the sections */
if
(
p_bat_decoder
->
i_last_section_number
)
{
for
(
int
j
=
0
;
j
<=
p_bat_decoder
->
i_last_section_number
-
1
;
j
++
)
p_bat_decoder
->
ap_sections
[
j
]
->
p_next
=
p_bat_decoder
->
ap_sections
[
j
]
->
p_next
=
p_bat_decoder
->
ap_sections
[
j
+
1
];
p_bat_decoder
->
ap_sections
[
j
+
1
];
}
/* Decode the sections */
dvbpsi_DecodeBATSections
(
p_dvbpsi
,
p_bat_decoder
->
p_building_bat
,
p_bat_decoder
->
ap_sections
[
0
]);
/* Delete the sections */
dvbpsi_DeletePSISections
(
p_bat_decoder
->
ap_sections
[
0
]);
/* signal the new BAT */
p_bat_decoder
->
pf_bat_callback
(
p_bat_decoder
->
p_cb_data
,
p_bat_decoder
->
p_building_bat
);
/* Reinitialize the structures */
p_bat_decoder
->
p_building_bat
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<=
p_bat_decoder
->
i_last_section_number
;
i
++
)
p_bat_decoder
->
ap_sections
[
i
]
=
NULL
;
}
}
}
/* Decode the sections */
else
dvbpsi_DecodeBATSections
(
p_dvbpsi
,
p_bat_decoder
->
p_building_bat
,
{
p_bat_decoder
->
ap_sections
[
0
]);
dvbpsi_DeletePSISections
(
p_section
);
/* Delete the sections */
dvbpsi_DeletePSISections
(
p_bat_decoder
->
ap_sections
[
0
]);
/* signal the new BAT */
p_bat_decoder
->
pf_bat_callback
(
p_bat_decoder
->
p_cb_data
,
p_bat_decoder
->
p_building_bat
);
/* Reinitialize the structures */
p_bat_decoder
->
p_building_bat
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<=
p_bat_decoder
->
i_last_section_number
;
i
++
)
p_bat_decoder
->
ap_sections
[
i
]
=
NULL
;
}
}
}
}
...
@@ -544,8 +539,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
...
@@ -544,8 +539,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
uint8_t
*
p_transport_stream_loop_length
;
uint8_t
*
p_transport_stream_loop_length
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
@@ -577,8 +572,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
...
@@ -577,8 +572,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
p_prev
->
p_next
=
p_current
;
p_prev
->
p_next
=
p_current
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
@@ -648,8 +643,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
...
@@ -648,8 +643,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
p_prev
->
p_next
=
p_current
;
p_prev
->
p_next
=
p_current
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
...
src/tables/bat.h
View file @
b2b5e869
...
@@ -91,7 +91,7 @@ typedef struct dvbpsi_bat_s
...
@@ -91,7 +91,7 @@ typedef struct dvbpsi_bat_s
{
{
uint16_t
i_bouquet_id
;
/*!< bouquet_id */
uint16_t
i_bouquet_id
;
/*!< bouquet_id */
uint8_t
i_version
;
/*!< version_number */
uint8_t
i_version
;
/*!< version_number */
int
b_current_next
;
/*!< current_next_indicator */
bool
b_current_next
;
/*!< current_next_indicator */
dvbpsi_descriptor_t
*
p_first_descriptor
;
/*!< descriptor list */
dvbpsi_descriptor_t
*
p_first_descriptor
;
/*!< descriptor list */
...
@@ -150,7 +150,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
...
@@ -150,7 +150,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
*****************************************************************************/
*****************************************************************************/
/*!
/*!
* \fn void dvbpsi_InitBAT(dvbpsi_bat_t *p_bat, uint16_t i_bouquet_id, uint8_t i_version,
* \fn void dvbpsi_InitBAT(dvbpsi_bat_t *p_bat, uint16_t i_bouquet_id, uint8_t i_version,
int
b_current_next)
bool
b_current_next)
* \brief Initialize a user-allocated dvbpsi_bat_t structure.
* \brief Initialize a user-allocated dvbpsi_bat_t structure.
* \param p_bat pointer to the BAT structure
* \param p_bat pointer to the BAT structure
* \param i_bouquet_id bouquet ID
* \param i_bouquet_id bouquet ID
...
@@ -159,7 +159,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
...
@@ -159,7 +159,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
* \return nothing.
* \return nothing.
*/
*/
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
int
b_current_next
);
bool
b_current_next
);
/*!
/*!
* \def dvbpsi_NewBAT(p_bat, i_bouquet_id, i_version, b_current_next)
* \def dvbpsi_NewBAT(p_bat, i_bouquet_id, i_version, b_current_next)
...
...
src/tables/bat_private.h
View file @
b2b5e869
...
@@ -44,7 +44,7 @@ typedef struct dvbpsi_bat_decoder_s
...
@@ -44,7 +44,7 @@ typedef struct dvbpsi_bat_decoder_s
dvbpsi_bat_t
current_bat
;
dvbpsi_bat_t
current_bat
;
dvbpsi_bat_t
*
p_building_bat
;
dvbpsi_bat_t
*
p_building_bat
;
int
b_current_valid
;
bool
b_current_valid
;
uint8_t
i_last_section_number
;
uint8_t
i_last_section_number
;
dvbpsi_psi_section_t
*
ap_sections
[
256
];
dvbpsi_psi_section_t
*
ap_sections
[
256
];
...
...
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