OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebPDemuxer
(Results
1 - 3
of
3
) sorted by null
/external/webp/include/webp/
demux.h
16
WebPDemuxer
* demux = WebPDemux(&webp_data);
64
typedef struct
WebPDemuxer
WebPDemuxer
;
88
WEBP_EXTERN
WebPDemuxer
* WebPDemuxInternal(
93
// Returns a
WebPDemuxer
object on successful parse, NULL otherwise.
94
static WEBP_INLINE
WebPDemuxer
* WebPDemux(const WebPData* data) {
101
// and a
WebPDemuxer
object on successful parse.
102
// Note that
WebPDemuxer
keeps internal pointers to 'data' memory segment.
106
static WEBP_INLINE
WebPDemuxer
* WebPDemuxPartial(
112
WEBP_EXTERN void WebPDemuxDelete(
WebPDemuxer
* dmux)
[
all
...]
/external/webp/src/webp/
demux.h
16
WebPDemuxer
* demux = WebPDemux(&webp_data);
64
typedef struct
WebPDemuxer
WebPDemuxer
;
88
WEBP_EXTERN
WebPDemuxer
* WebPDemuxInternal(
93
// Returns a
WebPDemuxer
object on successful parse, NULL otherwise.
94
static WEBP_INLINE
WebPDemuxer
* WebPDemux(const WebPData* data) {
101
// and a
WebPDemuxer
object on successful parse.
102
// Note that
WebPDemuxer
keeps internal pointers to 'data' memory segment.
106
static WEBP_INLINE
WebPDemuxer
* WebPDemuxPartial(
112
WEBP_EXTERN void WebPDemuxDelete(
WebPDemuxer
* dmux)
[
all
...]
/external/webp/src/demux/
demux.c
61
struct
WebPDemuxer
{
84
ParseStatus (*parse)(
WebPDemuxer
* const dmux);
85
int (*valid)(const
WebPDemuxer
* const dmux);
88
static ParseStatus ParseSingleImage(
WebPDemuxer
* const dmux);
89
static ParseStatus ParseVP8X(
WebPDemuxer
* const dmux);
90
static int IsValidSimpleFormat(const
WebPDemuxer
* const dmux);
91
static int IsValidExtendedFormat(const
WebPDemuxer
* const dmux);
177
static void AddChunk(
WebPDemuxer
* const dmux, Chunk* const chunk) {
185
static int AddFrame(
WebPDemuxer
* const dmux, Frame* const frame) {
308
WebPDemuxer
* const dmux, uint32_t frame_chunk_size)
[
all
...]
Completed in 667 milliseconds