⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dr_69.c

📁 ts流的解复用
💻 C
字号:
/***************************************************************************** * dr_69.c * (c)2007 VideoLAN * $Id: dr_69.c 153 2007-10-12 21:05:05Z jpsaman $ * * Authors: Jiri Pinkava <master_up@post.cz> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. * *****************************************************************************/#include "config.h"#include <stdio.h>#include <stdlib.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_69.h"/***************************************************************************** * dvbpsi_DecodePDCDr *****************************************************************************/dvbpsi_PDC_dr_t * dvbpsi_DecodePDCDr(dvbpsi_descriptor_t * p_descriptor){  dvbpsi_PDC_dr_t * p_decoded;  /* Check the tag */  if(p_descriptor->i_tag != 0x69)  {    DVBPSI_ERROR_ARG("dr_69 decoder", "bad tag (0x%x)", p_descriptor->i_tag);    return NULL;  }  /* Don't decode twice */  if(p_descriptor->p_decoded)    return p_descriptor->p_decoded;  /* Decode data and check the length */  if( p_descriptor->i_length != 3)  {    DVBPSI_ERROR_ARG("dr_69 decoder", "bad length (%d)",                     p_descriptor->i_length);    return NULL;  }  /* Allocate memory */  p_decoded = (dvbpsi_PDC_dr_t*)malloc(sizeof(dvbpsi_PDC_dr_t));  if(!p_decoded)  {    DVBPSI_ERROR("dr_69 decoder", "out of memory");    return NULL;  }  p_decoded->i_PDC[0] = ((p_descriptor->p_data[0] & 0x0f) << 1) |      (p_descriptor->p_data[1] >> 7);  p_decoded->i_PDC[1] = ((p_descriptor->p_data[1] >> 3) & 0x0f);  p_decoded->i_PDC[2] = ((p_descriptor->p_data[1] << 2) & 0x1c) |       (p_descriptor->p_data[2] >> 6);  p_decoded->i_PDC[3] = p_descriptor->p_data[2] & 0x3f;  p_descriptor->p_decoded = (void*)p_decoded;  return p_decoded;}/***************************************************************************** * dvbpsi_GenPDCDr *****************************************************************************/dvbpsi_descriptor_t * dvbpsi_GenPDCDr(dvbpsi_PDC_dr_t * p_decoded,                                          int b_duplicate){  /* Create the descriptor */  dvbpsi_descriptor_t * p_descriptor =                dvbpsi_NewDescriptor(0x69, 3, NULL);  if(p_descriptor)  {    /* Encode data */    p_descriptor->p_data[0] = 0xf0 | (p_decoded->i_PDC[0] >> 1);    p_descriptor->p_data[1] = (p_decoded->i_PDC[0] << 7) |         (p_decoded->i_PDC[1] << 3) | (p_decoded->i_PDC[2] >> 2);    p_descriptor->p_data[2] = (p_decoded->i_PDC[2] << 6 ) |         p_decoded->i_PDC[3];    if(b_duplicate)    {      /* Duplicate decoded data */      dvbpsi_PDC_dr_t * p_dup_decoded =                (dvbpsi_PDC_dr_t*)malloc(sizeof(dvbpsi_PDC_dr_t));      if(p_dup_decoded)        memcpy(p_dup_decoded, p_decoded, sizeof(dvbpsi_PDC_dr_t));      p_descriptor->p_decoded = (void*)p_dup_decoded;    }  }  return p_descriptor;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -