Searched refs:vpx_codec_decode (Results 1 – 15 of 15) sorted by relevance
/external/libvpx/libvpx/test/ |
D | decode_api_test.cc | 39 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()
|
D | decode_test_driver.cc | 38 res_dec = vpx_codec_decode(&decoder_, in DecodeFrame()
|
/external/libvpx/libvpx/vpx/ |
D | exports_dec | 2 text vpx_codec_decode
|
D | vpx_decoder.h | 220 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
|
/external/libvpx/libvpx/examples/ |
D | simple_decoder.c | 133 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
|
D | postproc.c | 119 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000)) in main()
|
D | decode_with_drops.c | 121 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
|
D | decode_to_md5.c | 116 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_decoder.c | 108 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/ |
D | vp8_impl.cc | 1194 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/ |
D | usage_dx.dox | 3 The vpx_codec_decode() function is at the core of the decode loop. It
|
D | vpxdec.c | 894 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()
|
D | usage.dox | 120 frame takes 2000us to decode, the call to vpx_codec_decode() will return
|
D | vpxenc.c | 1739 vpx_codec_decode(&stream->decoder, pkt->data.frame.buf, in get_cx_data()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.cc | 914 if (vpx_codec_decode(decoder_, buffer, in Decode()
|