OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VP8Decoder
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/include/
vp8.h
27
class
VP8Decoder
: public VideoDecoder {
29
static
VP8Decoder
* Create();
31
virtual ~
VP8Decoder
() {}
32
}; // end of
VP8Decoder
class
/external/libvpx/libvpx/test/
codec_factory.h
75
class
VP8Decoder
: public Decoder {
77
VP8Decoder
(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
80
VP8Decoder
(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag,
123
return new
VP8Decoder
(cfg, flags, deadline);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
codec_factory.h
70
class
VP8Decoder
: public Decoder {
72
VP8Decoder
(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
108
return new
VP8Decoder
(cfg, deadline);
/external/opencv3/3rdparty/libwebp/dec/
decode_vp8.h
35
//
VP8Decoder
* dec = VP8New();
123
typedef struct
VP8Decoder
VP8Decoder
;
126
VP8Decoder
* VP8New(void);
136
int VP8GetHeaders(
VP8Decoder
* const dec, VP8Io* const io);
140
int VP8Decode(
VP8Decoder
* const dec, VP8Io* const io);
143
VP8StatusCode VP8Status(
VP8Decoder
* const dec);
146
const char* VP8StatusMessage(
VP8Decoder
* const dec);
150
void VP8Clear(
VP8Decoder
* const dec);
153
void VP8Delete(
VP8Decoder
* const dec)
[
all
...]
vp8i.h
183
//
VP8Decoder
: the main opaque structure handed over to user
185
struct
VP8Decoder
{
293
int VP8SetError(
VP8Decoder
* const dec,
298
void VP8ParseProba(VP8BitReader* const br,
VP8Decoder
* const dec);
299
void VP8ParseIntraMode(VP8BitReader* const br,
VP8Decoder
* const dec);
302
void VP8ParseQuant(
VP8Decoder
* const dec);
305
int VP8InitFrame(
VP8Decoder
* const dec, VP8Io* io);
307
void VP8ReconstructBlock(
VP8Decoder
* const dec);
312
VP8StatusCode VP8EnterCritical(
VP8Decoder
* const dec, VP8Io* const io);
315
int VP8ExitCritical(
VP8Decoder
* const dec, VP8Io* const io)
[
all
...]
/external/webp/src/dec/
decode_vp8.h
35
//
VP8Decoder
* dec = VP8New();
123
typedef struct
VP8Decoder
VP8Decoder
;
126
VP8Decoder
* VP8New(void);
137
int VP8GetHeaders(
VP8Decoder
* const dec, VP8Io* const io);
141
int VP8Decode(
VP8Decoder
* const dec, VP8Io* const io);
144
VP8StatusCode VP8Status(
VP8Decoder
* const dec);
147
const char* VP8StatusMessage(
VP8Decoder
* const dec);
151
void VP8Clear(
VP8Decoder
* const dec);
154
void VP8Delete(
VP8Decoder
* const dec)
[
all
...]
vp8i.h
181
//
VP8Decoder
: the main opaque structure handed over to user
183
struct
VP8Decoder
{
270
int VP8SetError(
VP8Decoder
* const dec,
275
void VP8ParseProba(VP8BitReader* const br,
VP8Decoder
* const dec);
277
int VP8ParseIntraModeRow(VP8BitReader* const br,
VP8Decoder
* const dec);
280
void VP8ParseQuant(
VP8Decoder
* const dec);
283
int VP8InitFrame(
VP8Decoder
* const dec, VP8Io* const io);
288
VP8StatusCode VP8EnterCritical(
VP8Decoder
* const dec, VP8Io* const io);
291
int VP8ExitCritical(
VP8Decoder
* const dec, VP8Io* const io);
299
VP8Decoder
* const dec)
[
all
...]
Completed in 755 milliseconds