blob: d10e6bfa15dff4f01bf5191e773e4eb6e2fef3f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*!
**************************************************************************************
* \file
* nalu.h
* \brief
* Common NALU support functions
*
* \date 25 November 2002
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Stephan Wenger <stewe@cs.tu-berlin.de>
***************************************************************************************
*/
#ifndef _NALU_H_
#define _NALU_H_
#include "nalucommon.h"
extern void initBitsFile (VideoParameters *p_Vid);
extern void CheckZeroByteNonVCL(VideoParameters *p_Vid, NALU_t *nalu);
extern void CheckZeroByteVCL (VideoParameters *p_Vid, NALU_t *nalu);
extern int read_next_nalu(VideoParameters *p_Vid, NALU_t *nalu);
#endif
|