Home
last modified time | relevance | path

Searched refs:vpx_codec_decode (Results 1 – 15 of 15) sorted by relevance

/external/libvpx/libvpx/test/
Ddecode_api_test.cc39 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_decode(NULL, NULL, 0, NULL, 0)); in TEST()
40 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_decode(NULL, buf, 0, NULL, 0)); in TEST()
42 vpx_codec_decode(NULL, buf, NELEMENTS(buf), NULL, 0)); in TEST()
44 vpx_codec_decode(NULL, NULL, NELEMENTS(buf), NULL, 0)); in TEST()
54 vpx_codec_decode(&dec, buf, NELEMENTS(buf), NULL, 0)); in TEST()
56 vpx_codec_decode(&dec, NULL, NELEMENTS(buf), NULL, 0)); in TEST()
58 vpx_codec_decode(&dec, buf, 0, NULL, 0)); in TEST()
138 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST()
141 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST()
Ddecode_test_driver.cc38 res_dec = vpx_codec_decode(&decoder_, in DecodeFrame()
/external/libvpx/libvpx/vpx/
Dexports_dec2 text vpx_codec_decode
Dvpx_decoder.h220 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
/external/libvpx/libvpx/examples/
Dsimple_decoder.c133 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
Dpostproc.c119 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000)) in main()
Ddecode_with_drops.c121 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
Ddecode_to_md5.c116 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
/external/libvpx/libvpx/vpx/src/
Dvpx_decoder.c108 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, in vpx_codec_decode() function
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc1194 if (vpx_codec_decode(decoder_, NULL, 0, 0, VPX_DL_REALTIME)) { in Decode()
1217 if (vpx_codec_decode(decoder_, buffer, input_image._length, 0, in Decode()
1316 if (vpx_codec_decode(decoder_, partition, partition_length, 0, in DecodePartitions()
1323 if (vpx_codec_decode(decoder_, NULL, 0, 0, VPX_DL_REALTIME)) in DecodePartitions()
/external/libvpx/libvpx/
Dusage_dx.dox3 The vpx_codec_decode() function is at the core of the decode loop. It
Dvpxdec.c894 if (vpx_codec_decode(&decoder, buf, (unsigned int)bytes_in_buffer, in main_loop()
919 if (vpx_codec_decode(&decoder, NULL, 0, NULL, 0)) { in main_loop()
Dusage.dox120 frame takes 2000us to decode, the call to vpx_codec_decode() will return
Dvpxenc.c1739 vpx_codec_decode(&stream->decoder, pkt->data.frame.buf, in get_cx_data()
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc914 if (vpx_codec_decode(decoder_, buffer, in Decode()