Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bitstream
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
bitstream
Commits
f3edf7b5
Commit
f3edf7b5
authored
Oct 07, 2011
by
Georgi Chorbadzhiyski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvb/si: Add support for descriptor 0x42 (Stuffing descriptor).
parent
02444a31
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
83 additions
and
1 deletion
+83
-1
README
README
+1
-0
TODO
TODO
+0
-1
dvb/si/desc_42.h
dvb/si/desc_42.h
+75
-0
dvb/si/descs_list.h
dvb/si/descs_list.h
+1
-0
examples/dvb_gen_si.c
examples/dvb_gen_si.c
+5
-0
mpeg/psi/descs_print.h
mpeg/psi/descs_print.h
+1
-0
No files found.
README
View file @
f3edf7b5
...
...
@@ -98,6 +98,7 @@ Supported DVB descriptors
=========================
* Descriptor 0x40: Network name descriptor
* Descriptor 0x42: Stuffing descriptor
* Descriptor 0x41: Service list descriptor
* Descriptor 0x43: Satellite delivery system descriptor
* Descriptor 0x44: Cable delivery system descriptor
...
...
TODO
View file @
f3edf7b5
...
...
@@ -14,7 +14,6 @@ so if you like something just do it and send a patch.
- Descriptor 0x6a: AC-3 descriptor
- Add support (parser, generator, example) for these DVB descriptors:
- Descriptor 0x42: Stuffing descriptor
- Descriptor 0x45: VBI data descriptor
- Descriptor 0x49: Country availability descriptor
- Descriptor 0x4b: NVOD_reference_descriptor
...
...
dvb/si/desc_42.h
0 → 100644
View file @
f3edf7b5
/*****************************************************************************
* desc_42.h: ETSI EN 300 468 Descriptor 0x42: Stuffing descriptor
*****************************************************************************
* Copyright (C) 2011 Unix Solutions Ltd.
*
* Authors: Georgi Chorbadzhiyski <georgi@unixsol.org>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*****************************************************************************/
/*
* Normative references:
* - ETSI EN 300 468 V1.11.1 (2010-04) (SI in DVB systems)
*/
#ifndef __BITSTREAM_DVB_DESC_42_H__
#define __BITSTREAM_DVB_DESC_42_H__
#include <bitstream/common.h>
#include <bitstream/mpeg/psi/descriptors.h>
#ifdef __cplusplus
extern
"C"
{
#endif
/*****************************************************************************
* Descriptor 0x42: Service list descriptor
*****************************************************************************/
#define DESC42_HEADER_SIZE DESC_HEADER_SIZE
static
inline
void
desc42_init
(
uint8_t
*
p_desc
)
{
desc_set_tag
(
p_desc
,
0x42
);
}
static
inline
bool
desc42_validate
(
const
uint8_t
*
p_desc
)
{
return
true
;
}
static
inline
void
desc42_print
(
uint8_t
*
p_desc
,
f_print
pf_print
,
void
*
opaque
,
print_type_t
i_print_type
)
{
switch
(
i_print_type
)
{
case
PRINT_XML
:
pf_print
(
opaque
,
"<STUFFING_DESC length=
\"
%u
\"
/>"
,
desc_get_length
(
p_desc
));
break
;
default:
pf_print
(
opaque
,
" - desc 42 stuffing length=%u"
,
desc_get_length
(
p_desc
));
}
}
#ifdef __cplusplus
}
#endif
#endif
dvb/si/descs_list.h
View file @
f3edf7b5
...
...
@@ -36,6 +36,7 @@
#include <bitstream/dvb/si/desc_40.h>
#include <bitstream/dvb/si/desc_41.h>
#include <bitstream/dvb/si/desc_42.h>
#include <bitstream/dvb/si/desc_43.h>
#include <bitstream/dvb/si/desc_44.h>
#include <bitstream/dvb/si/desc_46.h>
...
...
examples/dvb_gen_si.c
View file @
f3edf7b5
...
...
@@ -1794,6 +1794,11 @@ static void generate_pmt(void) {
desc_loop
=
pmtn_get_descs
(
pmt_n
);
descs_set_length
(
desc_loop
,
DESCS_MAX_SIZE
);
// This is needed so descs_get_desc(x, n) works
/* DVB Descriptor 0x42: Stuffing descriptor */
desc
=
descs_get_desc
(
desc_loop
,
desc_counter
++
);
build_desc0f
(
desc
);
desc42_init
(
desc
);
/* Every descriptor can be stuffed */
desc
=
descs_get_desc
(
desc_loop
,
desc_counter
++
);
build_desc2b
(
desc
);
...
...
mpeg/psi/descs_print.h
View file @
f3edf7b5
...
...
@@ -131,6 +131,7 @@ static inline void descl_print(uint8_t *p_descl, uint16_t i_length,
CASE_DESC
(
2
c
)
CASE_DESC_ICONV
(
40
)
CASE_DESC
(
41
)
CASE_DESC
(
42
)
CASE_DESC
(
43
)
CASE_DESC
(
44
)
CASE_DESC
(
46
)
...
...
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