H.264编码解码器源码(c语言版本)

源代码在线查看: h.264

软件大小: 1777 K
上传用户: multicolor
关键词: 264 编码解码器 源码 c语言
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				/*!
				 **************************************************************************************
				 * \file
				 *    parset.h
				 * \brief
				 *    Picture and Sequence Parameter Sets, decoder operations
				 *    This code reflects JVT version xxx
				 * \date 25 November 2002
				 * \author
				 *    Main contributors (see contributors.h for copyright, address and affiliation details) 
				 *      - Stephan Wenger        
				 ***************************************************************************************
				 */
				#ifndef _PARSET_H_
				#define _PARSET_H_
				
				
				#include "parsetcommon.h"
				#include "nalucommon.h"
				
				void DumpSPS (seq_parameter_set_rbsp_t *sps);
				void DumpPPS (pic_parameter_set_rbsp_t *pps);
				
				void PPSConsistencyCheck (pic_parameter_set_rbsp_t *pps);
				void SPSConsistencyCheck (seq_parameter_set_rbsp_t *sps);
				
				void MakePPSavailable (int id, pic_parameter_set_rbsp_t *pps);
				void MakeSPSavailable (int id, seq_parameter_set_rbsp_t *sps);
				
				void ProcessSPS (NALU_t *nalu);
				void ProcessPPS (NALU_t *nalu);
				
				void UseParameterSet (int PicParsetId);
				
				#endif
							

相关资源