OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8_SIGNATURE
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/webp/
format_constants.h
21
#define
VP8_SIGNATURE
0x9d012a // Signature in VP8 data.
/external/webp/include/webp/
format_constants.h
21
#define
VP8_SIGNATURE
0x9d012a // Signature in VP8 data.
/external/chromium_org/third_party/libwebp/enc/
syntax.c
137
vp8_frm_hdr[3] = (
VP8_SIGNATURE
>> 16) & 0xff;
138
vp8_frm_hdr[4] = (
VP8_SIGNATURE
>> 8) & 0xff;
139
vp8_frm_hdr[5] = (
VP8_SIGNATURE
>> 0) & 0xff;
/external/webp/src/enc/
syntax.c
137
vp8_frm_hdr[3] = (
VP8_SIGNATURE
>> 16) & 0xff;
138
vp8_frm_hdr[4] = (
VP8_SIGNATURE
>> 8) & 0xff;
139
vp8_frm_hdr[5] = (
VP8_SIGNATURE
>> 0) & 0xff;
Completed in 41 milliseconds