nalu.h 771 B

12345678910111213141516171819202122232425262728
  1. /*!
  2. **************************************************************************************
  3. * \file
  4. * nalu.h
  5. * \brief
  6. * Common NALU support functions
  7. *
  8. * \date 25 November 2002
  9. * \author
  10. * Main contributors (see contributors.h for copyright, address and affiliation details)
  11. * - Stephan Wenger <[email protected]>
  12. ***************************************************************************************
  13. */
  14. #ifndef _NALU_H_
  15. #define _NALU_H_
  16. #include "nalucommon.h"
  17. extern void initBitsFile (VideoParameters *p_Vid);
  18. extern void CheckZeroByteNonVCL(VideoParameters *p_Vid, NALU_t *nalu);
  19. extern void CheckZeroByteVCL (VideoParameters *p_Vid, NALU_t *nalu);
  20. extern int read_next_nalu(VideoParameters *p_Vid, NALU_t *nalu);
  21. #endif