Home
last modified time | relevance | path

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

/external/libvpx/libvpx/test/
Ddecode_api_test.cc36 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_decode(NULL, NULL, 0, NULL, 0)); in TEST()
37 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_decode(NULL, buf, 0, NULL, 0)); in TEST()
39 vpx_codec_decode(NULL, buf, NELEMENTS(buf), NULL, 0)); in TEST()
41 vpx_codec_decode(NULL, NULL, NELEMENTS(buf), NULL, 0)); in TEST()
51 vpx_codec_decode(&dec, buf, NELEMENTS(buf), NULL, 0)); in TEST()
53 vpx_codec_decode(&dec, NULL, NELEMENTS(buf), NULL, 0)); in TEST()
54 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_decode(&dec, buf, 0, NULL, 0)); in TEST()
129 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST()
132 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST()
151 vpx_codec_decode(&dec, data, data_sz, NULL, 0)); in TestPeekInfo()
Ddecode_test_driver.cc37 res_dec = vpx_codec_decode( in DecodeFrame()
/external/libvpx/libvpx/vpx/
Dexports_dec2 text vpx_codec_decode
Dvpx_decoder.h215 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data,
/external/libvpx/libvpx/examples/
Dsimple_decoder.c129 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
Dvpx_dec_fuzzer.cc153 vpx_codec_decode(&codec, buffer, frame_size, nullptr, 0); in LLVMFuzzerTestOneInput()
Dpostproc.c115 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000)) in main()
Ddecode_with_drops.c118 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
Ddecode_to_md5.c112 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) in main()
Dvp9cx_set_ref.c263 if (vpx_codec_decode(dcodec, pkt->data.frame.buf, in encode_frame()
/external/libvpx/libvpx/vpx/src/
Dvpx_decoder.c104 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data, 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.c846 if (vpx_codec_decode(&decoder, buf, (unsigned int)bytes_in_buffer, NULL, in main_loop()
879 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.c1745 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()