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
ee840aba
Commit
ee840aba
authored
Sep 14, 2012
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/descriptor.h: Add more detail in doxygen comments.
parent
a1926451
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
src/descriptor.h
src/descriptor.h
+15
-1
No files found.
src/descriptor.h
View file @
ee840aba
...
...
@@ -53,6 +53,19 @@ extern "C" {
/*!
* \typedef struct dvbpsi_descriptor_s dvbpsi_descriptor_t
* \brief dvbpsi_descriptor_t type definition.
*
* The common descriptor header and its payload is contained in this
* structure. The payload is the raw descriptor data and its interpretation
* depends on the the p_descriptor::i_tag value.
*
* After passing the descriptor to a dvbpsi_DecodeXXXXDr function the raw
* descriptor data is interpreted and decoded into a descriptor specific
* structure. This structure is stored in the p_descriptor::p_decoded member
* by the dvbpsi_DecodeXXXXDr function.
*
* NOTE: It is mandatory to add a decoded descriptor to the 'p_decoded' member
* of this struct. Failing to do so will result in memory leakage when
* deleting descriptor with @see dvbpsi_DeleteDescriptor.
*/
typedef
struct
dvbpsi_descriptor_s
{
...
...
@@ -90,7 +103,8 @@ dvbpsi_descriptor_t* dvbpsi_NewDescriptor(uint8_t i_tag, uint8_t i_length,
*****************************************************************************/
/*!
* \fn void dvbpsi_DeleteDescriptors(dvbpsi_descriptor_t* p_descriptor)
* \brief Destruction of a dvbpsi_descriptor_t structure.
* \brief Destruction of a dvbpsi_descriptor_t structure together with the decoded
* descriptor, if present.
* \param p_descriptor pointer to the first descriptor structure
* \return nothing.
*/
...
...
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