parset.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  **************************************************************************************
  3.  * file
  4.  *    parset.h
  5.  * brief
  6.  *    Picture and Sequence Parameter Sets, decoder operations
  7.  * 
  8.  * date 25 November 2002
  9.  * author
  10.  *    Main contributors (see contributors.h for copyright, address and affiliation details)
  11.  *      - Stephan Wenger        <stewe@cs.tu-berlin.de>
  12.  ***************************************************************************************
  13.  */
  14. #ifndef _PARSET_H_
  15. #define _PARSET_H_
  16. #include "parsetcommon.h"
  17. #include "nalucommon.h"
  18. void Scaling_List(int *scalingList, int sizeOfScalingList, Boolean *UseDefaultScalingMatrix, Bitstream *s);
  19. void InitVUI(seq_parameter_set_rbsp_t *sps);
  20. int  ReadVUI(DataPartition *p, seq_parameter_set_rbsp_t *sps);
  21. int  ReadHRDParameters(DataPartition *p, hrd_parameters_t *hrd);
  22. void PPSConsistencyCheck (pic_parameter_set_rbsp_t *pps);
  23. void SPSConsistencyCheck (seq_parameter_set_rbsp_t *sps);
  24. void MakePPSavailable (int id, pic_parameter_set_rbsp_t *pps);
  25. void MakeSPSavailable (int id, seq_parameter_set_rbsp_t *sps);
  26. void ProcessSPS (NALU_t *nalu);
  27. void ProcessPPS (NALU_t *nalu);
  28. void UseParameterSet (int PicParsetId);
  29. void CleanUpPPS(void);
  30. void activate_sps (seq_parameter_set_rbsp_t *sps);
  31. void activate_pps (pic_parameter_set_rbsp_t *pps);
  32. #endif