Home
last modified time | relevance | path

Searched refs:dct_method (Results 1 – 25 of 36) sorted by relevance

12

/external/tensorflow/tensorflow/core/kernels/image/
Ddecode_image_op.cc109 string dct_method; in DecodeImageV2Op() local
110 OP_REQUIRES_OK(context, context->GetAttr("dct_method", &dct_method)); in DecodeImageV2Op()
113 (dct_method.empty() || dct_method == "INTEGER_FAST" || in DecodeImageV2Op()
114 dct_method == "INTEGER_ACCURATE"), in DecodeImageV2Op()
119 if (dct_method.empty() || dct_method == "INTEGER_FAST") { in DecodeImageV2Op()
120 flags_.dct_method = JDCT_IFAST; in DecodeImageV2Op()
121 } else if (dct_method == "INTEGER_ACCURATE") { in DecodeImageV2Op()
122 flags_.dct_method = JDCT_ISLOW; in DecodeImageV2Op()
126 flags_.dct_method = JDCT_IFAST; in DecodeImageV2Op()
/external/ImageMagick/coders/
Djpeg.c1035 *dct_method, in ReadJPEGImage_() local
1234 dct_method=GetImageOption(image_info,"jpeg:dct-method"); in ReadJPEGImage_()
1235 if (dct_method != (const char *) NULL) in ReadJPEGImage_()
1236 switch (*dct_method) in ReadJPEGImage_()
1241 if (LocaleCompare(dct_method,"default") == 0) in ReadJPEGImage_()
1242 jpeg_info->dct_method=JDCT_DEFAULT; in ReadJPEGImage_()
1248 if (LocaleCompare(dct_method,"fastest") == 0) in ReadJPEGImage_()
1249 jpeg_info->dct_method=JDCT_FASTEST; in ReadJPEGImage_()
1250 if (LocaleCompare(dct_method,"float") == 0) in ReadJPEGImage_()
1251 jpeg_info->dct_method=JDCT_FLOAT; in ReadJPEGImage_()
[all …]
/external/libjpeg-turbo/
Djcdctmgr.c254 switch (cinfo->dct_method) { in start_pass_fdctmgr()
632 switch (cinfo->dct_method) { in jinit_forward_dct()
666 switch (cinfo->dct_method) { in jinit_forward_dct()
703 if (cinfo->dct_method == JDCT_FLOAT) in jinit_forward_dct()
Ddjpeg.c253 cinfo->dct_method = JDCT_ISLOW; in parse_switches()
255 cinfo->dct_method = JDCT_IFAST; in parse_switches()
257 cinfo->dct_method = JDCT_FLOAT; in parse_switches()
300 cinfo->dct_method = JDCT_FASTEST; in parse_switches()
Dcjpeg.c323 cinfo->dct_method = JDCT_ISLOW; in parse_switches()
325 cinfo->dct_method = JDCT_IFAST; in parse_switches()
327 cinfo->dct_method = JDCT_FLOAT; in parse_switches()
Djddctmgr.c152 switch (cinfo->dct_method) { in start_pass()
Djpeglib.h381 J_DCT_METHOD dct_method; /* DCT algorithm selector */ member
506 J_DCT_METHOD dct_method; /* IDCT algorithm selector */ member
Djdapimin.c205 cinfo->dct_method = JDCT_DEFAULT; in default_decompress_parms()
Djcparam.c250 cinfo->dct_method = JDCT_DEFAULT; in jpeg_set_defaults()
Dturbojpeg.c305 cinfo->dct_method = JDCT_ISLOW; in setCompDefaults()
307 cinfo->dct_method = JDCT_FASTEST; in setCompDefaults()
1318 if (flags & TJFLAG_FASTDCT) this->dinfo.dct_method = JDCT_FASTEST; in tjDecompress2()
1493 if (flags & TJFLAG_FASTDCT) this->dinfo.dct_method = JDCT_FASTEST; in tjDecodeYUVPlanes()
1736 if (flags & TJFLAG_FASTDCT) dinfo->dct_method = JDCT_FASTEST; in tjDecompressToYUVPlanes()
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DDecodeJpeg.pbtxt47 name: "dct_method"
DDecodeAndCropJpeg.pbtxt51 name: "dct_method"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DDecodeJpeg.pbtxt47 name: "dct_method"
DDecodeAndCropJpeg.pbtxt51 name: "dct_method"
/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem.h63 J_DCT_METHOD dct_method = JDCT_DEFAULT; member
Djpeg_mem.cc164 cinfo.dct_method = flags.dct_method; in UncompressLow()
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.io.pbtxt37 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
65 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
Dtensorflow.image.pbtxt53 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
69 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.io.pbtxt57 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
85 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
Dtensorflow.image.pbtxt53 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
69 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DecodeJpeg.pbtxt48 name: "dct_method"
Dapi_def_DecodeAndCropJpeg.pbtxt54 name: "dct_method"
/external/tensorflow/tensorflow/lite/tools/evaluation/stages/
Dimage_preprocessing_stage.cc89 flags.dct_method = JDCT_ISLOW; in LoadImageJpeg()
/external/libaom/libaom/third_party/libyuv/source/
Dmjpeg_decoder.cc505 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()
/external/libyuv/files/source/
Dmjpeg_decoder.cc516 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()

12