00001 /***************************************************************************** 00002 * dr_02.h 00003 * (c)2001-2002 VideoLAN 00004 * $Id: dr_02.h 88 2004-02-24 14:31:18Z sam $ 00005 * 00006 * Authors: Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr> 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License 00010 * as published by the Free Software Foundation; either version 2 00011 * of the License, or (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 * 00022 *****************************************************************************/ 00023 00035 #ifndef _DVBPSI_DR_02_H_ 00036 #define _DVBPSI_DR_02_H_ 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #endif 00041 00042 00043 /***************************************************************************** 00044 * dvbpsi_vstream_dr_t 00045 *****************************************************************************/ 00057 typedef struct dvbpsi_vstream_dr_s 00058 { 00059 int b_multiple_frame_rate; 00060 uint8_t i_frame_rate_code; 00061 int b_mpeg2; 00062 int b_constrained_parameter; 00063 int b_still_picture; 00065 /* used if b_mpeg2 is true */ 00066 uint8_t i_profile_level_indication; 00067 uint8_t i_chroma_format; 00068 int b_frame_rate_extension; 00070 } dvbpsi_vstream_dr_t; 00071 00072 00073 /***************************************************************************** 00074 * dvbpsi_DecodeVStreamDr 00075 *****************************************************************************/ 00084 dvbpsi_vstream_dr_t* dvbpsi_DecodeVStreamDr(dvbpsi_descriptor_t * p_descriptor); 00085 00086 00087 /***************************************************************************** 00088 * dvbpsi_GenVStreamDr 00089 *****************************************************************************/ 00099 dvbpsi_descriptor_t * dvbpsi_GenVStreamDr(dvbpsi_vstream_dr_t * p_decoded, 00100 int b_duplicate); 00101 00102 00103 #ifdef __cplusplus 00104 }; 00105 #endif 00106 00107 #else 00108 #error "Multiple inclusions of dr_02.h" 00109 #endif 00110