OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ptcoef
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp
839
PV_STATUS VlcDecTCOEFIntra(BitstreamDecVideo *stream, Tcoef *
pTcoef
)
847
/* if(GetTcoeffIntra(code,
pTcoef
,&tab,stream)!=PV_SUCCESS) return status;*/
872
pTcoef
->sign = (code >> (12 - tab->len)) & 1;
873
pTcoef
->run = (uint) tab->run; //(tab->val >> 8) & 255;
874
pTcoef
->level = (int) tab->level; //tab->val & 255;
875
pTcoef
->last = (uint) tab->last; //(tab->val >> 16) & 1;
886
if (!
pTcoef
->sign)
892
/* if(GetTcoeffIntra(code,
pTcoef
,&tab,stream)!=PV_SUCCESS) return status;*/
919
pTcoef
->sign = (code >> (12 - tab->len)) & 1;
920
pTcoef
->run = (uint)tab->run; //(tab->val >> 8) & 255
[
all
...]
vlc_decode.h
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
);
110
PV_STATUS VlcDecTCOEFIntra(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
111
PV_STATUS VlcDecTCOEFInter(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
112
PV_STATUS VlcDecTCOEFShortHeader(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
113
PV_STATUS RvlcDecTCOEFIntra(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
114
PV_STATUS RvlcDecTCOEFInter(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
mp4lib_int.h
276
PV_STATUS(*vlcDecCoeffIntra)(BitstreamDecVideo *stream, Tcoef *
pTcoef
/*, int intra_luma*/);
277
PV_STATUS(*vlcDecCoeffInter)(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
vlc_dequant.cpp
23
typedef PV_STATUS(*VlcDecFuncP)(BitstreamDecVideo *stream, Tcoef *
pTcoef
);
[
all
...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
stat_bits.c
86
Word16 *
ptcoef
;
local
130
ptcoef
= tnsInfo->coef + i*TNS_MAX_ORDER_SHORT;
134
if ((
ptcoef
[k] > 3) || (
ptcoef
[k] < -4)) {
142
ptcoef
= tnsInfo->coef + i*TNS_MAX_ORDER_SHORT;
145
if ((
ptcoef
[k] > 1) || (
ptcoef
[k] < -2)) {
Completed in 255 milliseconds