OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:codenum
(Results
1 - 9
of
9
) sorted by null
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_CompareMotionCostToMV.c
42
OMX_U16 sizeCodeNum,
codeNum
;
44
/* Mapping val to
codeNum
*/
45
codeNum
= armAbs (val);
48
codeNum
= (2 *
codeNum
) - 1;
52
codeNum
= 2 *
codeNum
;
56
sizeCodeNum = (2 * armLogSize (
codeNum
+ 1)) - 1;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
vlc_encode.cpp
22
AVCEnc_Status ue_v(AVCEncBitstream *bitstream, uint
codeNum
)
24
if (AVCENC_SUCCESS != SetEGBitstring(bitstream,
codeNum
))
34
uint
codeNum
;
39
codeNum
= -value * 2;
43
codeNum
= value * 2 - 1;
46
status = ue_v(bitstream,
codeNum
);
69
//
codeNum
= (1<<leadingZeros)-1+infobits;
70
AVCEnc_Status SetEGBitstring(AVCEncBitstream *bitstream, uint
codeNum
)
76
if (!
codeNum
)
84
while ((uint)(1 << leadingZeros) <
codeNum
+ 2
[
all
...]
avcenc_lib.h
[
all
...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_vlc.c
74
Decode unsigned Exp-Golomb code. This is the same as
codeNum
used
78
codeNum
= 2^leadingZeros - 1 + GetBits(leadingZeros)
94
codeNum
decoded code word is stored here
103
u32 h264bsdDecodeExpGolombUnsigned(strmData_t *pStrmData, u32 *
codeNum
)
113
ASSERT(
codeNum
);
121
*
codeNum
= 0;
129
*
codeNum
= 1 + ((bits >> 29) & 0x1);
137
*
codeNum
= 3 + ((bits >> 27) & 0x3);
145
*
codeNum
= 7 + ((bits >> 25) & 0x7);
159
*
codeNum
= 0
[
all
...]
/external/qemu/proxy/
proxy_http_connector.c
136
int http1, http2,
codenum
;
local
139
if ( sscanf(line, "HTTP/%d.%d %d", &http1, &http2, &
codenum
) != 3 ) {
147
if (
codenum
/2 != 100) {
149
root->name,
codenum
);
/hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h
135
void ue_v(mp4StreamType *psBits, uint32 *
codeNum
);
/hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp
[
all
...]
/external/chromium_org/media/mp2t/
es_parser_h264.cc
382
// corresponds to their
codenum
not to their actual value.
/frameworks/av/libvideoeditor/vss/mcs/src/
M4MCS_API.c
664
M4OSA_ERR NSWAVCMCS_uExpVLC( NSWAVC_bitStream_t_MCS *bS, M4OSA_Int32
codeNum
)
671
/* The
codeNum
cannot be less than zero for this ue(v) */
672
if(
codeNum
< 0 )
678
temp =
codeNum
+ 1;
687
data =
codeNum
+ 1;
694
M4OSA_ERR NSWAVCMCS_sExpVLC( NSWAVC_bitStream_t_MCS *bS, M4OSA_Int32
codeNum
)
702
if(
codeNum
> 0 )
707
if(
codeNum
> 0 )
709
abscodeNum =
codeNum
;
713
abscodeNum = -
codeNum
;
[
all
...]
Completed in 231 milliseconds