Commit 9eeddee2 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Add 0x4c (Time shifted service) descriptor.

parent 173c3586
...@@ -47,6 +47,7 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \ ...@@ -47,6 +47,7 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \
descriptors/dr_49.h \ descriptors/dr_49.h \
descriptors/dr_4a.h \ descriptors/dr_4a.h \
descriptors/dr_4b.h \ descriptors/dr_4b.h \
descriptors/dr_4c.h \
descriptors/dr_4d.h \ descriptors/dr_4d.h \
descriptors/dr_4e.h \ descriptors/dr_4e.h \
descriptors/dr_4f.h \ descriptors/dr_4f.h \
...@@ -96,6 +97,7 @@ descriptors_src = descriptors/dr_02.c \ ...@@ -96,6 +97,7 @@ descriptors_src = descriptors/dr_02.c \
descriptors/dr_49.c \ descriptors/dr_49.c \
descriptors/dr_4a.c \ descriptors/dr_4a.c \
descriptors/dr_4b.c \ descriptors/dr_4b.c \
descriptors/dr_4c.c \
descriptors/dr_4d.c \ descriptors/dr_4d.c \
descriptors/dr_4e.c \ descriptors/dr_4e.c \
descriptors/dr_4f.c \ descriptors/dr_4f.c \
......
...@@ -59,6 +59,7 @@ ...@@ -59,6 +59,7 @@
#include "dr_49.h" #include "dr_49.h"
#include "dr_4a.h" #include "dr_4a.h"
#include "dr_4b.h" #include "dr_4b.h"
#include "dr_4c.h"
#include "dr_4d.h" #include "dr_4d.h"
#include "dr_4e.h" #include "dr_4e.h"
#include "dr_4f.h" #include "dr_4f.h"
......
/*****************************************************************************
* 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;
}
/*****************************************************************************
* 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
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