Home
last modified time | relevance | path

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

12

/external/tensorflow/tensorflow/core/kernels/
Ddecode_image_op.cc114 flags_.dct_method = JDCT_IFAST; in DecodeImageOp()
132 string dct_method; in DecodeImageOp() local
133 OP_REQUIRES_OK(context, context->GetAttr("dct_method", &dct_method)); in DecodeImageOp()
136 (dct_method.empty() || dct_method == "INTEGER_FAST" || in DecodeImageOp()
137 dct_method == "INTEGER_ACCURATE"), in DecodeImageOp()
140 if (dct_method == "INTEGER_FAST") { in DecodeImageOp()
141 flags_.dct_method = JDCT_IFAST; in DecodeImageOp()
142 } else if (dct_method == "INTEGER_ACCURATE") { in DecodeImageOp()
143 flags_.dct_method = JDCT_ISLOW; in DecodeImageOp()
/external/libjpeg-turbo/
Djcdctmgr.c254 switch (cinfo->dct_method) { in start_pass_fdctmgr()
633 switch (cinfo->dct_method) { in jinit_forward_dct()
667 switch (cinfo->dct_method) { in jinit_forward_dct()
704 if (cinfo->dct_method == JDCT_FLOAT) in jinit_forward_dct()
Ddjpeg.c240 cinfo->dct_method = JDCT_ISLOW; in parse_switches()
242 cinfo->dct_method = JDCT_IFAST; in parse_switches()
244 cinfo->dct_method = JDCT_FLOAT; in parse_switches()
287 cinfo->dct_method = JDCT_FASTEST; in parse_switches()
Dcjpeg.c274 cinfo->dct_method = JDCT_ISLOW; in parse_switches()
276 cinfo->dct_method = JDCT_IFAST; in parse_switches()
278 cinfo->dct_method = JDCT_FLOAT; in parse_switches()
Djddctmgr.c152 switch (cinfo->dct_method) { in start_pass()
Djpeglib.h375 J_DCT_METHOD dct_method; /* DCT algorithm selector */ member
500 J_DCT_METHOD dct_method; /* IDCT algorithm selector */ member
Djdapimin.c205 cinfo->dct_method = JDCT_DEFAULT; in default_decompress_parms()
Djcparam.c249 cinfo->dct_method = JDCT_DEFAULT; in jpeg_set_defaults()
Dturbojpeg.c246 if(jpegQual>=96 || flags&TJFLAG_ACCURATEDCT) cinfo->dct_method=JDCT_ISLOW; in setCompDefaults()
247 else cinfo->dct_method=JDCT_FASTEST; in setCompDefaults()
326 if(flags&TJFLAG_FASTDCT) dinfo->dct_method=JDCT_FASTEST; in setDecompDefaults()
1877 if(flags&TJFLAG_FASTDCT) dinfo->dct_method=JDCT_FASTEST; in tjDecompressToYUVPlanes()
Dlibjpeg.txt966 J_DCT_METHOD dct_method
1267 J_DCT_METHOD dct_method
2175 * dct_method can be changed before each call to jpeg_start_output().
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/
Dtfexample_decoder.py353 dct_method=''): argument
390 self._dct_method = dct_method
424 image_buffer, channels=self._channels, dct_method=self._dct_method)
/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem.h63 J_DCT_METHOD dct_method = JDCT_DEFAULT; member
Djpeg_mem.cc153 cinfo.dct_method = flags.dct_method; in UncompressLow()
Djpeg_mem_unittest.cc382 flags.dct_method = JDCT_IFAST; in TEST()
/external/ImageMagick/coders/
Djpeg.c1191 jpeg_info.dct_method=JDCT_FLOAT; in ReadJPEGImage()
1200 jpeg_info.dct_method=JDCT_DEFAULT; in ReadJPEGImage()
1207 jpeg_info.dct_method=JDCT_FASTEST; in ReadJPEGImage()
1209 jpeg_info.dct_method=JDCT_FLOAT; in ReadJPEGImage()
1216 jpeg_info.dct_method=JDCT_IFAST; in ReadJPEGImage()
1218 jpeg_info.dct_method=JDCT_ISLOW; in ReadJPEGImage()
2250 jpeg_info.dct_method=JDCT_FLOAT; in WriteJPEGImage()
2259 jpeg_info.dct_method=JDCT_DEFAULT; in WriteJPEGImage()
2266 jpeg_info.dct_method=JDCT_FASTEST; in WriteJPEGImage()
2268 jpeg_info.dct_method=JDCT_FLOAT; in WriteJPEGImage()
[all …]
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.image.pbtxt45 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
61 …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/libvncserver/common/
Dturbojpeg.c187 if(jpegQual>=96) cinfo->dct_method=JDCT_ISLOW; in setCompDefaults()
188 else cinfo->dct_method=JDCT_FASTEST; in setCompDefaults()
/external/libyuv/files/source/
Dmjpeg_decoder.cc507 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()
/external/libvpx/libvpx/third_party/libyuv/source/
Dmjpeg_decoder.cc510 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py2789 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_ACCURATE")
2791 image_ops.encode_jpeg(image1), dct_method="INTEGER_ACCURATE")
2809 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_FAST")
2811 image_ops.encode_jpeg(image1), dct_method="INTEGER_FAST")
2833 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_FAST")
/external/tensorflow/
DRELEASE.md885 behavior by specifying the attribute `dct_method='INTEGER_ACCURATE'`.
/external/tensorflow/tensorflow/core/ops/
Dops.pbtxt6179 name: "dct_method"
6352 name: "dct_method"
/external/tensorflow/tensorflow/core/ops/compat/
Dops_history.v1.pbtxt14388 name: "dct_method"
14690 name: "dct_method"

12