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
162b9716
Commit
162b9716
authored
Feb 10, 2015
by
Mélanie Benoit
Committed by
Jean-Paul Saman
Feb 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nit: fix invalid documentation
Signed-off-by:
Jean-Paul Saman
<
jpsaman@videolan.org
>
parent
b01ab1ee
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/tables/nit.h
src/tables/nit.h
+8
-8
No files found.
src/tables/nit.h
View file @
162b9716
...
@@ -113,8 +113,8 @@ typedef void (* dvbpsi_nit_callback)(void* p_cb_data, dvbpsi_nit_t* p_new_nit);
...
@@ -113,8 +113,8 @@ typedef void (* dvbpsi_nit_callback)(void* p_cb_data, dvbpsi_nit_t* p_new_nit);
dvbpsi_nit_callback pf_callback, void* p_cb_data)
dvbpsi_nit_callback pf_callback, void* p_cb_data)
* \brief Creation and initialization of a NIT decoder. It is attached to p_dvbpsi.
* \brief Creation and initialization of a NIT decoder. It is attached to p_dvbpsi.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param i_table_id Table ID, 0x4
E, 0x4F, or 0x50-0x6F
.
* \param i_table_id Table ID, 0x4
0 (actual) or 0x41 (other)
.
* \param i_extension Table ID extension, here
service
ID.
* \param i_extension Table ID extension, here
network
ID.
* \param pf_callback function to call back on new NIT.
* \param pf_callback function to call back on new NIT.
* \param p_cb_data private data given in argument to the callback.
* \param p_cb_data private data given in argument to the callback.
* \return true on success, false on failure
* \return true on success, false on failure
...
@@ -130,8 +130,8 @@ bool dvbpsi_nit_attach(dvbpsi_t* p_dvbpsi, uint8_t i_table_id, uint16_t i_extens
...
@@ -130,8 +130,8 @@ bool dvbpsi_nit_attach(dvbpsi_t* p_dvbpsi, uint8_t i_table_id, uint16_t i_extens
uint16_t i_extension)
uint16_t i_extension)
* \brief Destroy a NIT decoder.
* \brief Destroy a NIT decoder.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param i_table_id Table ID, 0x4
E, 0x4F, or 0x50-0x6F
.
* \param i_table_id Table ID, 0x4
0 (actual) or 0x41 (other)
.
* \param i_extension Table ID extension, here
service
ID.
* \param i_extension Table ID extension, here
network
ID.
* \return nothing.
* \return nothing.
*/
*/
void
dvbpsi_nit_detach
(
dvbpsi_t
*
p_dvbpsi
,
uint8_t
i_table_id
,
void
dvbpsi_nit_detach
(
dvbpsi_t
*
p_dvbpsi
,
uint8_t
i_table_id
,
...
@@ -144,8 +144,8 @@ void dvbpsi_nit_detach(dvbpsi_t* p_dvbpsi, uint8_t i_table_id,
...
@@ -144,8 +144,8 @@ void dvbpsi_nit_detach(dvbpsi_t* p_dvbpsi, uint8_t i_table_id,
* \fn void dvbpsi_nit_init(dvbpsi_nit_t* p_nit, uint8_t i_table_id, uint16_t i_extension,
* \fn void dvbpsi_nit_init(dvbpsi_nit_t* p_nit, uint8_t i_table_id, uint16_t i_extension,
uint16_t i_network_id, uint8_t i_version, bool b_current_next)
uint16_t i_network_id, uint8_t i_version, bool b_current_next)
* \brief Initialize a user-allocated dvbpsi_nit_t structure.
* \brief Initialize a user-allocated dvbpsi_nit_t structure.
* \param i_table_id Table ID, 0x4
E, 0x4F, or 0x50-0x6F
.
* \param i_table_id Table ID, 0x4
0 (actual) or 0x41 (other)
.
* \param i_extension Table ID extension, here
service
ID.
* \param i_extension Table ID extension, here
network
ID.
* \param p_nit pointer to the NIT structure
* \param p_nit pointer to the NIT structure
* \param i_network_id network id
* \param i_network_id network id
* \param i_version NIT version
* \param i_version NIT version
...
@@ -160,8 +160,8 @@ void dvbpsi_nit_init(dvbpsi_nit_t* p_nit, uint8_t i_table_id, uint16_t i_extensi
...
@@ -160,8 +160,8 @@ void dvbpsi_nit_init(dvbpsi_nit_t* p_nit, uint8_t i_table_id, uint16_t i_extensi
* uint16_t i_network_id, uint8_t i_version,
* uint16_t i_network_id, uint8_t i_version,
* bool b_current_next);
* bool b_current_next);
* \brief Allocate and initialize a new dvbpsi_nit_t structure.
* \brief Allocate and initialize a new dvbpsi_nit_t structure.
* \param i_table_id Table ID, 0x4
E, 0x4F, or 0x50-0x6F.
* \param i_table_id Table ID, 0x4
0 (actual) or 0x41 (other)
* \param i_extension Table ID extension, here
service
ID.
* \param i_extension Table ID extension, here
network
ID.
* \param i_network_id network id
* \param i_network_id network id
* \param i_version NIT version
* \param i_version NIT version
* \param b_current_next current next indicator
* \param b_current_next current next indicator
...
...
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