Searched refs:is_ac_tab (Results 1 – 2 of 2) sorted by relevance
/external/opencv/otherlibs/highgui/ |
D | grfmt_jpeg.cpp | 1691 int is_ac_tab = i & 1; in WriteImage() local 1693 int tableSize = 16 + (is_ac_tab ? 162 : 12); in WriteImage() 1697 lowstrm.PutByte( is_ac_tab*16 + idx ); // put DC/AC flag and table index in WriteImage() 1701 htable, buffer, 16, 9 ), is_ac_tab ? huff_ac_tab[idx] : in WriteImage() 1702 huff_dc_tab[idx], is_ac_tab ? 256 : 16 ); in WriteImage()
|
/external/opencv3/modules/videoio/src/ |
D | cap_mjpeg_encoder.cpp | 1196 int is_ac_tab = i & 1; in writeFrameData() local 1198 int tableSize = 16 + (is_ac_tab ? 162 : 12); in writeFrameData() 1202 strm.putByte( is_ac_tab*16 + idx ); // put DC/AC flag and table index in writeFrameData() 1206 htable, hbuffer, 16, 9 ), is_ac_tab ? huff_ac_tab[idx] : in writeFrameData() 1207 huff_dc_tab[idx], is_ac_tab ? 256 : 16 ); in writeFrameData()
|