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
9eeddee2
Commit
9eeddee2
authored
May 13, 2013
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 0x4c (Time shifted service) descriptor.
parent
173c3586
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
198 additions
and
0 deletions
+198
-0
src/Makefile.am
src/Makefile.am
+2
-0
src/descriptors/dr.h
src/descriptors/dr.h
+1
-0
src/descriptors/dr_4c.c
src/descriptors/dr_4c.c
+97
-0
src/descriptors/dr_4c.h
src/descriptors/dr_4c.h
+98
-0
No files found.
src/Makefile.am
View file @
9eeddee2
...
...
@@ -47,6 +47,7 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \
descriptors/dr_49.h
\
descriptors/dr_4a.h
\
descriptors/dr_4b.h
\
descriptors/dr_4c.h
\
descriptors/dr_4d.h
\
descriptors/dr_4e.h
\
descriptors/dr_4f.h
\
...
...
@@ -96,6 +97,7 @@ descriptors_src = descriptors/dr_02.c \
descriptors/dr_49.c
\
descriptors/dr_4a.c
\
descriptors/dr_4b.c
\
descriptors/dr_4c.c
\
descriptors/dr_4d.c
\
descriptors/dr_4e.c
\
descriptors/dr_4f.c
\
...
...
src/descriptors/dr.h
View file @
9eeddee2
...
...
@@ -59,6 +59,7 @@
#include "dr_49.h"
#include "dr_4a.h"
#include "dr_4b.h"
#include "dr_4c.h"
#include "dr_4d.h"
#include "dr_4e.h"
#include "dr_4f.h"
...
...
src/descriptors/dr_4c.c
0 → 100644
View file @
9eeddee2
/*****************************************************************************
* dr_4c.c
* Copyright (C) 2013, VideoLAN Association
*
* Authors: Jean-Paul Saman <jpsaman@videolan.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#if defined(HAVE_INTTYPES_H)
#include <inttypes.h>
#elif defined(HAVE_STDINT_H)
#include <stdint.h>
#endif
#include "../dvbpsi.h"
#include "../dvbpsi_private.h"
#include "../descriptor.h"
#include "dr_4c.h"
/*****************************************************************************
* dvbpsi_DecodeTimeShiftedServiceDr
*****************************************************************************/
dvbpsi_tshifted_service_dr_t
*
dvbpsi_DecodeTimeShiftedServiceDr
(
dvbpsi_descriptor_t
*
p_descriptor
)
{
/* Check the tag */
if
(
!
dvbpsi_CanDecodeAsDescriptor
(
p_descriptor
,
0x4c
))
return
NULL
;
/* Don't decode twice */
if
(
dvbpsi_IsDescriptorDecoded
(
p_descriptor
))
return
p_descriptor
->
p_decoded
;
if
(
p_descriptor
->
i_length
<
2
)
return
NULL
;
/* Allocate memory */
dvbpsi_tshifted_service_dr_t
*
p_decoded
;
p_decoded
=
(
dvbpsi_tshifted_service_dr_t
*
)
calloc
(
1
,
sizeof
(
dvbpsi_tshifted_service_dr_t
));
if
(
!
p_decoded
)
return
NULL
;
/* Decode data */
p_decoded
->
i_ref_service_id
=
p_descriptor
->
p_data
[
0
]
<<
8
|
p_descriptor
->
p_data
[
1
];
p_descriptor
->
p_decoded
=
(
void
*
)
p_decoded
;
return
p_decoded
;
}
/*****************************************************************************
* dvbpsi_GenTimeShiftedServiceDr
*****************************************************************************/
dvbpsi_descriptor_t
*
dvbpsi_GenTimeShiftedServiceDr
(
dvbpsi_tshifted_service_dr_t
*
p_decoded
,
bool
b_duplicate
)
{
/* Create the descriptor */
dvbpsi_descriptor_t
*
p_descriptor
=
dvbpsi_NewDescriptor
(
0x4c
,
2
,
NULL
);
if
(
!
p_descriptor
)
return
NULL
;
/* Encode data */
p_descriptor
->
p_data
[
0
]
=
p_decoded
->
i_ref_service_id
>>
8
;
p_descriptor
->
p_data
[
1
]
=
p_decoded
->
i_ref_service_id
;
if
(
b_duplicate
)
{
/* Duplicate decoded data */
p_descriptor
->
p_decoded
=
dvbpsi_DuplicateDecodedDescriptor
(
p_decoded
,
sizeof
(
dvbpsi_tshifted_service_dr_t
));
}
return
p_descriptor
;
}
src/descriptors/dr_4c.h
0 → 100644
View file @
9eeddee2
/*****************************************************************************
* dr_4c.h
* Copyright (C) 2013, VideoLAN Association
*
* Authors: Jean-Paul Saman <jpsaman@videolan.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
/*!
* \file <dr_4c.h>
* \author Jean-Paul Saman <jpsaman@videolan.org>
* \brief Application interface for the time shifted service
* descriptor decoder and generator.
*
* Application interface for the DVB time shifted service descriptor
* descriptor decoder and generator. This descriptor's definition can be found in
* ETSI EN 300 468 section 6.2.45.
*/
#ifndef DR_4C_H_
#define DR_4C_H_
#ifdef __cplusplus
extern
"C"
{
#endif
/*****************************************************************************
* dvbpsi_tshifted_service_dr_t
*****************************************************************************/
/*!
* \struct dvbpsi_tshifted_service_dr_t
* \brief "time shifted service" descriptor structure.
*
* This structure is used to store a decoded "time shifted service"
* descriptor. (ETSI EN 300 468 section 6.2.45).
*/
/*!
* \typedef struct dvbpsi_tshifted_service_dr_s dvbpsi_tshifted_service_dr_t
* \brief dvbpsi_tshifted_service_dr_t type definition.
*/
/*!
* \struct dvbpsi_tshifted_service_dr_s
* \brief struct dvbpsi_tshifted_service_dr_s @see dvbpsi_tshifted_service_dr_t
*/
typedef
struct
dvbpsi_tshifted_service_dr_s
{
uint16_t
i_ref_service_id
;
/*!< reference service id */
}
dvbpsi_tshifted_service_dr_t
;
/*****************************************************************************
* dvbpsi_DecodeTimeShiftedServiceDr
*****************************************************************************/
/*!
* \fn dvbpsi_tshifted_service_dr_t *dvbpsi_DecodeTimeShiftedServiceDr(
dvbpsi_descriptor_t *p_descriptor)
* \brief "time shifted service" descriptor decoder.
* \param p_descriptor pointer to the descriptor structure
* \return a pointer to a new "time shifted service" descriptor structure
* which contains the decoded data.
*/
dvbpsi_tshifted_service_dr_t
*
dvbpsi_DecodeTimeShiftedServiceDr
(
dvbpsi_descriptor_t
*
p_descriptor
);
/*****************************************************************************
* dvbpsi_GenTimeShiftedServiceDr
*****************************************************************************/
/*!
* \fn dvbpsi_descriptor_t *dvbpsi_GenTimeShiftedServiceDr(dvbpsi_tshifted_service_dr_t *p_decoded,
bool b_duplicate);
* \brief "time shifted service" descriptor generator.
* \param p_decoded pointer to a decoded "time shifted service" descriptor structure
* \param b_duplicate if true then duplicate the p_decoded structure into
* the descriptor
* \return a pointer to a new descriptor structure which contains encoded data.
*/
dvbpsi_descriptor_t
*
dvbpsi_GenTimeShiftedServiceDr
(
dvbpsi_tshifted_service_dr_t
*
p_decoded
,
bool
b_duplicate
);
#ifdef __cplusplus
};
#endif
#else
#error "Multiple inclusions of dr_4c.h"
#endif
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