Commit dc475fd5 authored by Jean-Paul Saman's avatar Jean-Paul Saman

src/table/pat*: Cleanup

- Use bool for structure members that are used as bools
- Indentation
parent 4fc878e7
This diff is collapsed.
...@@ -81,7 +81,7 @@ typedef struct dvbpsi_pat_s ...@@ -81,7 +81,7 @@ typedef struct dvbpsi_pat_s
{ {
uint16_t i_ts_id; /*!< transport_stream_id */ uint16_t i_ts_id; /*!< transport_stream_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_pat_program_t * p_first_program; /*!< program list */ dvbpsi_pat_program_t * p_first_program; /*!< program list */
......
...@@ -43,7 +43,7 @@ typedef struct dvbpsi_pat_decoder_s ...@@ -43,7 +43,7 @@ typedef struct dvbpsi_pat_decoder_s
dvbpsi_pat_t current_pat; dvbpsi_pat_t current_pat;
dvbpsi_pat_t * p_building_pat; dvbpsi_pat_t * p_building_pat;
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];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment