/external/libvpx/nestegg/include/nestegg/ |
nestegg.h | 28 nestegg * demux_ctx; 81 typedef struct nestegg nestegg; /**< Opaque handle referencing the stream state. */ typedef in typeref:struct:nestegg 134 typedef void (* nestegg_log)(nestegg * context, unsigned int severity, char const * format, ...); 136 /** Initialize a nestegg context. During initialization the parser will 139 @param context Storage for the new nestegg context. @see nestegg_destroy 144 int nestegg_init(nestegg ** context, nestegg_io io, nestegg_log callback); 146 /** Destroy a nestegg context and free associated memory. 147 @param context #nestegg context to be freed. @see nestegg_init */ 148 void nestegg_destroy(nestegg * context) [all...] |
/external/libvpx/ |
examples.mk | 21 vpxdec.SRCS += nestegg/halloc/halloc.h 22 vpxdec.SRCS += nestegg/halloc/src/align.h 23 vpxdec.SRCS += nestegg/halloc/src/halloc.c 24 vpxdec.SRCS += nestegg/halloc/src/hlist.h 25 vpxdec.SRCS += nestegg/halloc/src/macros.h 26 vpxdec.SRCS += nestegg/include/nestegg/nestegg.h 27 vpxdec.SRCS += nestegg/src/nestegg. [all...] |
vpxdec.c | 32 #include "nestegg/include/nestegg/nestegg.h" 209 nestegg *nestegg_ctx; 511 nestegg_log_cb(nestegg * context, unsigned int severity, char const * format, [all...] |
/external/libvpx/nestegg/src/ |
nestegg.c | 11 #include "nestegg/halloc/halloc.h" 12 #include "nestegg/include/nestegg/nestegg.h" 285 struct nestegg { struct 443 E_SINGLE_MASTER(ID_EBML, TYPE_MASTER, nestegg, ebml), 444 E_SINGLE_MASTER_O(ID_SEGMENT, TYPE_MASTER, nestegg, segment), 676 ne_read_string(nestegg * ctx, char ** val, uint64_t length) 693 ne_read_binary(nestegg * ctx, struct ebml_binary * val, uint64_t length) 780 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data [all...] |
/external/libvpx/nestegg/test/ |
test.c | 12 #include "nestegg/nestegg.h" 41 log_callback(nestegg * ctx, unsigned int severity, char const * fmt, ...) 79 nestegg * ctx;
|