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

Audio

开发平台:

Visual C++

  1. /*!
  2.  ***************************************************************************
  3.  *
  4.  * file fmo.h
  5.  *
  6.  * brief
  7.  *    Support for Flexilble Macroblock Ordering (FMO)
  8.  *
  9.  * date
  10.  *    19 June, 2002
  11.  *
  12.  * author
  13.  *    Stephan Wenger   stewe@cs.tu-berlin.de
  14.  **************************************************************************/
  15. #ifndef _FMO_H_
  16. #define _FMO_H_
  17. int FmoInit (pic_parameter_set_rbsp_t* pps, seq_parameter_set_rbsp_t* sps);
  18. int FmoFinit (void);
  19. int FmoGetNumberOfSliceGroup(void);
  20. int FmoGetLastMBOfPicture(void);
  21. int FmoGetLastMBInSliceGroup(int SliceGroup);
  22. int FmoGetSliceGroupId (int mb);
  23. int FmoGetNextMBNr (int CurrentMbNr);
  24. #endif