OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitstreamdecvideo
(Results
1 - 15
of
15
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h
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)
[
all
...]
vlc_decode.h
94
PV_STATUS DecodeUserData(
BitstreamDecVideo
*stream);
96
PV_STATUS PV_DecodeMBVec(
BitstreamDecVideo
*stream, MOT *mv_x, MOT *mv_y, int f_code_f);
99
PV_STATUS PV_VlcDecMV(
BitstreamDecVideo
*stream, int *mv);
100
int PV_VlcDecMCBPC_com_intra(
BitstreamDecVideo
*stream);
101
int PV_VlcDecMCBPC_com_inter(
BitstreamDecVideo
*stream);
103
int PV_VlcDecMCBPC_com_inter_H263(
BitstreamDecVideo
*stream);
104
PV_STATUS VlcDecTCOEFShortHeader_AnnexI(
BitstreamDecVideo
*stream, Tcoef *pTcoef);
105
PV_STATUS VlcDecTCOEFShortHeader_AnnexT(
BitstreamDecVideo
*stream, Tcoef *pTcoef); /* ANNEX_T */
106
PV_STATUS VlcDecTCOEFShortHeader_AnnexIT(
BitstreamDecVideo
*stream, Tcoef *pTcoef);
108
int PV_VlcDecCBPY(
BitstreamDecVideo
*stream, int intra)
[
all
...]
bitstream.cpp
49
PV_STATUS BitstreamFillCache(
BitstreamDecVideo
*stream)
124
void BitstreamReset(
BitstreamDecVideo
*stream, uint8 *buffer, int32 buffer_size)
127
oscl_memset(stream, 0, sizeof(
BitstreamDecVideo
));
140
int BitstreamOpen(
BitstreamDecVideo
*stream, int)
163
void BitstreamClose(
BitstreamDecVideo
*)
175
PV_STATUS BitstreamShowBits32HC(
BitstreamDecVideo
*stream, uint32 *code)
193
PV_STATUS BitstreamShowBits32(
BitstreamDecVideo
*stream, int nbits, uint32 *code)
215
PV_STATUS BitstreamShowBits16(
BitstreamDecVideo
*stream, int nbits, uint *code)
238
PV_STATUS BitstreamShow15Bits(
BitstreamDecVideo
*stream, uint *code)
257
PV_STATUS BitstreamShow13Bits(
BitstreamDecVideo
*stream, uint *code
[
all
...]
mp4lib_int.h
45
}
BitstreamDecVideo
, *LPBitstreamDecVideo;
90
BitstreamDecVideo
*bitstream; /* library bitstream buffer (input buffer) */
201
BitstreamDecVideo
*bitstream; /* library bitstream buffer (input buffer) */
276
PV_STATUS(*vlcDecCoeffIntra)(
BitstreamDecVideo
*stream, Tcoef *pTcoef/*, int intra_luma*/);
277
PV_STATUS(*vlcDecCoeffInter)(
BitstreamDecVideo
*stream, Tcoef *pTcoef);
packet_util.cpp
33
BitstreamDecVideo
*stream = video->bitstream;
148
BitstreamDecVideo
*stream = video->bitstream;
199
BitstreamDecVideo
*stream = video->bitstream;
vlc_decode.cpp
103
PV_STATUS DecodeUserData(
BitstreamDecVideo
*stream)
135
BitstreamDecVideo
*stream = video->bitstream;
267
PV_STATUS PV_DecodeMBVec(
BitstreamDecVideo
*stream, MOT *mv_x, MOT *mv_y, int f_code_f)
452
PV_STATUS PV_VlcDecMV(
BitstreamDecVideo
*stream, int *mv)
503
int PV_VlcDecMCBPC_com_intra(
BitstreamDecVideo
*stream)
536
int PV_VlcDecMCBPC_com_inter(
BitstreamDecVideo
*stream)
557
int PV_VlcDecMCBPC_com_inter_H263(
BitstreamDecVideo
*stream)
590
int PV_VlcDecCBPY(
BitstreamDecVideo
*stream, int intra)
628
PV_STATUS PV_VlcDecIntraDCPredSize(
BitstreamDecVideo
*stream, int compnum, uint *DC_size)
839
PV_STATUS VlcDecTCOEFIntra(
BitstreamDecVideo
*stream, Tcoef *pTcoef
[
all
...]
datapart_decode.cpp
43
BitstreamDecVideo
*stream = video->bitstream;
142
BitstreamDecVideo
*stream = video->bitstream;
307
BitstreamDecVideo
*stream = video->bitstream;
519
BitstreamDecVideo
*stream = video->bitstream;
576
BitstreamDecVideo
*stream = video->bitstream;
mp4dec_lib.h
76
PV_STATUS FillFrameBufferNew(
BitstreamDecVideo
*stream);
77
PV_STATUS FillFrameBuffer(
BitstreamDecVideo
*stream, int short_header);
82
PV_STATUS PV_DecodePredictedIntraDC(int compnum,
BitstreamDecVideo
*stream,
118
PV_STATUS RecoverPacketError(
BitstreamDecVideo
*stream, int marker_length, int32 *nextVop);
119
PV_STATUS RecoverGOBError(
BitstreamDecVideo
*stream, int marker_length, int32 *vopPos);
273
PV_STATUS DecodeGOVHeader(
BitstreamDecVideo
*stream, uint32 *time_base);
vlc_dequant.cpp
23
typedef PV_STATUS(*VlcDecFuncP)(
BitstreamDecVideo
*stream, Tcoef *pTcoef);
55
BitstreamDecVideo
*stream = video->bitstream;
387
BitstreamDecVideo
*stream = video->bitstream;
505
BitstreamDecVideo
*stream = video->bitstream;
807
BitstreamDecVideo
*stream = video->bitstream;
1069
BitstreamDecVideo
*stream = video->bitstream;
[
all
...]
dec_pred_intra_dc.cpp
25
BitstreamDecVideo
*stream,
conceal.cpp
39
BitstreamDecVideo
*stream = video->bitstream;
combined_decode.cpp
47
BitstreamDecVideo
*stream = video->bitstream;
347
BitstreamDecVideo
*stream = video->bitstream;
528
BitstreamDecVideo
*stream = video->bitstream;
vop.cpp
86
BitstreamDecVideo
*stream;
744
PV_STATUS DecodeGOVHeader(
BitstreamDecVideo
*stream, uint32 *time_base)
812
BitstreamDecVideo
*stream = currVol->bitstream;
[
all
...]
pvdec_api.cpp
46
extern
BitstreamDecVideo
IMEM_BitstreamDecVideo[4];
83
BitstreamDecVideo
*stream;
203
stream = (
BitstreamDecVideo
*) oscl_malloc(sizeof(
BitstreamDecVideo
));
205
video->memoryUsage += sizeof(
BitstreamDecVideo
);
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h
78
/* The following fucntion pointer is copied to
BitstreamDecVideo
structure */
Completed in 280 milliseconds