Home
last modified time | relevance | path

Searched refs:CreateDecoder (Results 1 – 25 of 51) sorted by relevance

123

/external/libvpx/test/
Dcodec_factory.h37 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const = 0;
39 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg,
116 Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const override { in CreateDecoder() function
117 return CreateDecoder(cfg, 0); in CreateDecoder()
120 Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg, in CreateDecoder() function
213 Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const override { in CreateDecoder() function
214 return CreateDecoder(cfg, 0); in CreateDecoder()
217 Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg, in CreateDecoder() function
Dtile_independence_test.cc34 fw_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest()
35 inv_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest()
/external/libaom/test/
Dcodec_factory.h39 virtual Decoder *CreateDecoder(aom_codec_dec_cfg_t cfg) const = 0;
41 virtual Decoder *CreateDecoder(aom_codec_dec_cfg_t cfg,
127 Decoder *CreateDecoder(aom_codec_dec_cfg_t cfg) const override { in CreateDecoder() function
128 return CreateDecoder(cfg, 0); in CreateDecoder()
131 Decoder *CreateDecoder(aom_codec_dec_cfg_t cfg, in CreateDecoder() function
Dtile_independence_test.cc38 fw_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest()
39 inv_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest()
Ddecode_multithreaded_test.cc43 single_thread_dec_ = codec_->CreateDecoder(cfg, 0); in AV1DecodeMultiThreadedTest()
48 multi_thread_dec_[i] = codec_->CreateDecoder(cfg, 0); in AV1DecodeMultiThreadedTest()
Ddecode_test_driver.cc58 Decoder *const decoder = codec_->CreateDecoder(dec_cfg, flags_); in RunLoop()
/external/lzma/CPP/7zip/Compress/
DCodecExports.cpp73 || (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in FindCodecClassId()
105 c = codec.CreateDecoder(); in CreateCoderMain()
133 if (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in CreateCoder2()
153 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
154 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject) in CreateDecoder() function
213 if (codec.CreateDecoder) in GetMethodProperty()
222 value->boolVal = BoolToVARIANT_BOOL(codec.CreateDecoder != NULL); in GetMethodProperty()
DCodec.def5 CreateDecoder PRIVATE
/external/rust/crabbyavif/c_api_tests/
Ddecoder_tests.cc28 DecoderPtr CreateDecoder(const char* file_name) { in CreateDecoder() function
43 auto decoder = CreateDecoder("alpha_noispe.avif"); in TEST()
63 auto decoder = CreateDecoder("alpha_premultiplied.avif"); in TEST()
79 auto decoder = CreateDecoder("colors-animated-8bpc.avif"); in TEST()
96 auto decoder = CreateDecoder("colors-animated-8bpc.avif"); in TEST()
117 auto decoder = CreateDecoder("colors-animated-8bpc-alpha-exif-xmp.avif"); in TEST()
213 auto decoder = CreateDecoder("colors-animated-8bpc.avif"); in TEST()
266 auto decoder = CreateDecoder("color_grid_alpha_nogrid.avif"); in TEST()
278 auto decoder = CreateDecoder("color_grid_gainmap_different_grid.avif"); in TEST()
311 auto decoder = CreateDecoder(("gainmap_oriented.avif")); in TEST()
[all …]
/external/lzma/CPP/7zip/Common/
DCreateCoder.cpp172 if ((encode ? codec.CreateEncoder : codec.CreateDecoder) in FindMethod_Index()
214 if (codec.Id == methodId && (encode ? codec.CreateEncoder : codec.CreateDecoder)) in FindMethod_Index()
359 if (codec.CreateDecoder) in CreateCoder_Index()
361 void *p = codec.CreateDecoder(); in CreateCoder_Index()
405 …const HRESULT res = _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder, (void **)&co… in CreateCoder_Index()
410 … return _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressFilter, (void **)&filter); in CreateCoder_Index()
413 … return _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder2, (void **)&cod.Coder2); in CreateCoder_Index()
/external/webrtc/api/video_codecs/test/
Dvideo_decoder_factory_template_tests.cc38 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
51 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
/external/webrtc/api/video_codecs/
Dvideo_decoder_factory_template_dav1d_adapter.h26 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
Dvideo_decoder_factory_template_libvpx_vp9_adapter.h25 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
Dvideo_decoder_factory_template_libvpx_vp8_adapter.h26 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
Dvideo_decoder_factory_template_open_h264_adapter.h32 static std::unique_ptr<VideoDecoder> CreateDecoder( in CreateDecoder() function
Dvideo_decoder_factory_template.h82 return V::CreateDecoder(format); in CreateVideoDecoderInternal()
/external/lzma/CPP/7zip/Archive/
DArchive2.def11 CreateDecoder PRIVATE
/external/pdfium/core/fxcodec/flate/
Dflatemodule.h24 static std::unique_ptr<ScanlineDecoder> CreateDecoder(
/external/pdfium/core/fxcodec/tiff/
Dtiff_decoder.h28 static std::unique_ptr<ProgressiveDecoderIface::Context> CreateDecoder(
/external/pdfium/core/fxcodec/fax/
Dfaxmodule.h30 static std::unique_ptr<ScanlineDecoder> CreateDecoder(
/external/pdfium/core/fxcodec/jpeg/
Djpegmodule.h40 static std::unique_ptr<ScanlineDecoder> CreateDecoder(
/external/pdfium/testing/fuzzers/
Dpdf_codec_fax_fuzzer.cc39 FaxModule::CreateDecoder(span.subspan(kParameterSize), width, height, K, in LLVMFuzzerTestOneInput()
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.cpp281 MY_GET_FUNC (lib.CreateDecoder, Func_CreateDecoder, lib.Lib, "CreateDecoder") in LoadCodecs()
956 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
1019 Z7_COM7F_IMF(CCodecs::CreateDecoder(UInt32 index, const GUID *iid, void **coder)) in Z7_COM7F_IMF()
1023 return CreateDecoder(index, iid, coder); in Z7_COM7F_IMF()
1031 if (lib.CreateDecoder) in Z7_COM7F_IMF()
1032 return lib.CreateDecoder(ci.CodecIndex, iid, (void **)coder); in Z7_COM7F_IMF()
1311 u.DecoderIsAssigned = (cod.CreateDecoder != NULL); in Get_CodecsInfoUser_Vector()
DLoadCodecs.h244 Func_CreateDecoder CreateDecoder; member
262 CreateDecoder(NULL), in CCodecLib()
/external/webrtc/modules/video_coding/codecs/h264/test/
Dh264_impl_unittest.cc40 std::unique_ptr<VideoDecoder> CreateDecoder() override { in CreateDecoder() function in webrtc::TestH264Impl

123