OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VP8Decoder
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/include/
vp8.h
28
class
VP8Decoder
: public VideoDecoder {
30
static
VP8Decoder
* Create();
32
virtual ~
VP8Decoder
() {};
33
}; // end of
VP8Decoder
class
/external/chromium_org/third_party/libvpx/source/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/libvpx/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/chromium_org/third_party/libwebp/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
218
//
VP8Decoder
: the main opaque structure handed over to user
220
struct
VP8Decoder
{
307
int VP8SetError(
VP8Decoder
* const dec,
312
void VP8ParseProba(VP8BitReader* const br,
VP8Decoder
* const dec);
314
int VP8ParseIntraModeRow(VP8BitReader* const br,
VP8Decoder
* const dec);
317
void VP8ParseQuant(
VP8Decoder
* const dec);
320
int VP8InitFrame(
VP8Decoder
* const dec, VP8Io* io);
325
VP8StatusCode VP8EnterCritical(
VP8Decoder
* const dec, VP8Io* const io);
328
int VP8ExitCritical(
VP8Decoder
* const dec, VP8Io* const io);
336
VP8Decoder
* const dec)
[
all
...]
Completed in 255 milliseconds