OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:finput
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
EvaluationTestBench.c
53
FILE *
finput
;
local
75
finput
= fopen(argv[argc-1], "rb");
76
if (
finput
== NULL)
83
fseek(
finput
, 0L, SEEK_END);
84
strmLen = (u32)ftell(
finput
);
85
rewind(
finput
);
96
fread(byteStrm, sizeof(u8), strmLen,
finput
);
97
fclose(
finput
);
DecTestBench.c
106
FILE *
finput
;
local
174
finput
= fopen(argv[argc-1],"rb");
175
if (
finput
== NULL)
182
fseek(
finput
,0L,SEEK_END);
183
strmLen = (u32)ftell(
finput
);
184
rewind(
finput
);
195
fread(byteStrmStart, sizeof(u8), strmLen,
finput
);
196
fclose(
finput
);
TestBenchMultipleInstance.c
71
FILE *
finput
;
local
149
finput
= fopen(argv[argc-instCount+i],"rb");
150
if (
finput
== NULL)
159
fseek(
finput
,0L,SEEK_END);
160
strmLen = (u32)ftell(
finput
);
161
rewind(
finput
);
168
fread(decoder[i]->byteStrmStart, sizeof(u8), strmLen,
finput
);
169
fclose(
finput
);
Completed in 38 milliseconds