Lines Matching refs:stream

33     PV_STATUS BitstreamFillBuffer(BitstreamDecVideo *stream);
34 PV_STATUS BitstreamFillCache(BitstreamDecVideo *stream);
35 void BitstreamReset(BitstreamDecVideo *stream, uint8 *buffer, int32 buffer_size);
36 int BitstreamOpen(BitstreamDecVideo *stream, int layer);
37 void BitstreamClose(BitstreamDecVideo *stream);
39 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code);
40 uint32 BitstreamReadBits32(BitstreamDecVideo *stream, int nbits);
42 uint BitstreamReadBits16(BitstreamDecVideo *stream, int nbits);
43 uint BitstreamRead1Bits(BitstreamDecVideo *stream);
45 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code);
46 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code);
47 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code);
48 uint BitstreamReadBits16_INLINE(BitstreamDecVideo *stream, int nbits);
49 uint BitstreamRead1Bits_INLINE(BitstreamDecVideo *stream);
51 __inline PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code)
56 if (stream->incnt < nbits)
59 status = BitstreamFillCache(stream);
62 *code = stream->curr_word >> (32 - nbits);
69 __inline PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code)
73 if (stream->incnt < 15)
76 status = BitstreamFillCache(stream);
78 *code = stream->curr_word >> 17;
83 __inline PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code)
87 if (stream->incnt < 13)
90 status = BitstreamFillCache(stream);
92 *code = stream->curr_word >> 19;
95 __inline uint BitstreamReadBits16_INLINE(BitstreamDecVideo *stream, int nbits)
99 if (stream->incnt < nbits)
102 BitstreamFillCache(stream);
104 code = stream->curr_word >> (32 - nbits);
105 PV_BitstreamFlushBits(stream, nbits);
110 __inline uint BitstreamRead1Bits_INLINE(BitstreamDecVideo *stream)
114 if (stream->incnt < 1)
117 BitstreamFillCache(stream);
119 code = stream->curr_word >> 31;
120 PV_BitstreamFlushBits(stream, 1);
133 PV_STATUS PV_BitstreamFlushBitsCheck(BitstreamDecVideo *stream, int nbits);
135 uint32 BitstreamReadBits32HC(BitstreamDecVideo *stream);
136 PV_STATUS BitstreamShowBits32HC(BitstreamDecVideo *stream, uint32 *code);
140 PV_STATUS BitstreamCheckEndBuffer(BitstreamDecVideo *stream);
142 PV_STATUS PV_BitstreamShowBitsByteAlign(BitstreamDecVideo *stream, int nbits, uint32 *code);
144 PV_STATUS PV_BitstreamShowBitsByteAlignNoForceStuffing(BitstreamDecVideo *stream, int nbits, uint32 *code);
145 Bool validStuffing_h263(BitstreamDecVideo *stream);
146 PV_STATUS quickSearchH263SliceHeader(BitstreamDecVideo *stream);
148 PV_STATUS PV_BitstreamByteAlign(BitstreamDecVideo *stream);
149 PV_STATUS BitstreamByteAlignNoForceStuffing(BitstreamDecVideo *stream);
150 Bool validStuffing(BitstreamDecVideo *stream);
152 PV_STATUS movePointerTo(BitstreamDecVideo *stream, int32 pos);
153 PV_STATUS PVSearchNextM4VFrame(BitstreamDecVideo *stream);
154 PV_STATUS PVSearchNextH263Frame(BitstreamDecVideo *stream);
155 PV_STATUS quickSearchVideoPacketHeader(BitstreamDecVideo *stream, int marker_length);
159 void PVLocateM4VFrameBoundary(BitstreamDecVideo *stream);
160 void PVSearchH263FrameBoundary(BitstreamDecVideo *stream);
162 PV_STATUS quickSearchMotionMarker(BitstreamDecVideo *stream);
163 PV_STATUS quickSearchDCM(BitstreamDecVideo *stream);
164 PV_STATUS quickSearchGOBHeader(BitstreamDecVideo *stream);
165 void BitstreamShowBuffer(BitstreamDecVideo *stream, int32 startbit, int32 endbit, uint8 *bitBfr);
168 int32 getPointer(BitstreamDecVideo *stream);