OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:jdec
(Results
1 - 1
of
1
) sorted by null
/hardware/intel/common/libva/test/decode/
loadjpeg.c
67
struct jdec_private *
jdec
;
local
81
jdec
= tinyjpeg_init();
82
if (
jdec
== NULL)
85
if (tinyjpeg_parse_header(
jdec
, buf, length_of_file)<0)
86
exitmessage(tinyjpeg_get_errorstring(
jdec
));
89
tinyjpeg_get_size(
jdec
, &width, &height);
92
if (tinyjpeg_decode(
jdec
) < 0)
93
exitmessage(tinyjpeg_get_errorstring(
jdec
));
95
tinyjpeg_free(
jdec
);
Completed in 89 milliseconds