HomeSort by relevance Sort by last modified time
    Searched refs:numcomps (Results 1 - 16 of 16) sorted by null

  /external/pdfium/third_party/libopenjpeg20/
image.c 49 image->numcomps = numcmpts;
52 image->numcomps * sizeof(opj_image_comp_t));
99 for (compno = 0; compno < image->numcomps; compno++) {
141 for (i = 0; i < p_image_header->numcomps; ++i) {
180 for (compno = 0; compno < p_image_dest->numcomps; compno++) {
190 p_image_dest->numcomps = p_image_src->numcomps;
192 p_image_dest->comps = (opj_image_comp_t*) opj_malloc(p_image_dest->numcomps *
196 p_image_dest->numcomps = 0;
200 for (compno = 0; compno < p_image_dest->numcomps; compno++)
    [all...]
pi.h 101 OPJ_UINT32 numcomps; member in struct:opj_pi_iterator
j2k.c 10437 OPJ_UINT32 numcomps = p_j2k->m_private_image->numcomps; local
    [all...]
jp2.c 586 opj_read_bytes(p_image_header_data, &(jp2->numcomps), 2); /* NC */
589 if ((jp2->numcomps - 1U) >=
590 16384U) { /* unsigned underflow is well defined: 1U <= jp2->numcomps <= 16384U */
597 jp2->comps = (opj_jp2_comps_t*) opj_calloc(jp2->numcomps,
661 opj_write_bytes(l_current_ihdr_ptr, jp2->numcomps, 2); /* NC */
695 l_bpcc_size = 8 + jp2->numcomps;
711 for (i = 0; i < jp2->numcomps; ++i) {
743 if (p_bpc_header_size != jp2->numcomps) {
749 for (i = 0; i < jp2->numcomps; ++i) {
899 image->numcomps; /* FIXME image->numcomps == jp2->numcomps before color is applied ??? *
    [all...]
pi.c 351 for (compno = 0; compno < pi->numcomps; compno++) {
487 for (compno = 0; compno < pi->numcomps; compno++) {
1363 OPJ_UINT32 numcomps = p_image->numcomps; local
1563 OPJ_UINT32 numcomps = p_image->numcomps; local
    [all...]
tcd.c 61 fprintf(fd, " x0=%d, y0=%d, x1=%d, y1=%d, numcomps=%d\n",
62 tile->x0, tile->y0, tile->x1, tile->y1, tile->numcomps);
63 for (compno = 0; compno < tile->numcomps; compno++) {
248 for (compno = 0; compno < tcd_tile->numcomps; compno++) {
349 for (compno = 0; compno < tcd_tile->numcomps; compno++) {
465 for (compno = 0; compno < tcd_tile->numcomps; compno++) {
658 p_image->numcomps, sizeof(opj_tcd_tilecomp_t));
663 p_tcd->tcd_image->tiles->numcomps = p_image->numcomps;
798 /*tile->numcomps = image->numcomps; *
    [all...]
jp2.h 162 OPJ_UINT32 numcomps; member in struct:opj_jp2
339 * @param numcomps Number of components to decode.
347 OPJ_UINT32 numcomps,
openjpeg.h 679 OPJ_UINT32 numcomps; member in struct:opj_image
841 int numcomps; member in struct:opj_codestream_info
    [all...]
openjpeg.c 250 OPJ_UINT32 numcomps,
338 OPJ_UINT32 numcomps,
443 OPJ_UINT32 numcomps,
464 numcomps,
    [all...]
tcd.h 231 OPJ_UINT32 numcomps; /* number of components in tile */ member in struct:opj_tcd_tile
283 /* Array of size image->numcomps indicating if a component must be decoded. NULL if all components must be decoded */
387 @param comps_indices Array of numcomps values representing the indices
t1.c 176 OPJ_UINT32 numcomps,
188 OPJ_UINT32 numcomps,
    [all...]
t2.c 244 l_image->numcomps : 1;
431 first_pass_failed = (OPJ_BOOL*)opj_malloc(l_image->numcomps * sizeof(OPJ_BOOL));
436 memset(first_pass_failed, OPJ_TRUE, l_image->numcomps * sizeof(OPJ_BOOL));
    [all...]
j2k.h 717 * @param numcomps Number of components to decode.
725 OPJ_UINT32 numcomps,
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 196 if (img->numcomps < 3) {
510 if (m_Image->color_space != OPJ_CLRSPC_SYCC && m_Image->numcomps == 3 &&
514 } else if (m_Image->numcomps <= 2) {
537 *components = m_Image->numcomps;
546 if (pitch<static_cast<int>(m_Image->comps[0].w * 8 * m_Image->numcomps + 31)>>
552 std::vector<uint8_t*> channel_bufs(m_Image->numcomps);
553 std::vector<int> adjust_comps(m_Image->numcomps);
554 for (uint32_t i = 0; i < m_Image->numcomps; i++) {
567 for (uint32_t channel = 0; channel < m_Image->numcomps; ++channel) {
573 uint8_t* pPixel = pScanline + col * m_Image->numcomps;
    [all...]
fx_codec_jpx_unittest.cpp 427 img.numcomps = 3;
  /external/ImageMagick/coders/
jp2.c 392 for (i=0; i < (ssize_t) jp2_image->numcomps; i++)
411 if (jp2_image->numcomps <= 2)
414 if (jp2_image->numcomps > 1)
417 if (jp2_image->numcomps > 3)
419 for (i=0; i < (ssize_t) jp2_image->numcomps; i++)
455 for (i=0; i < (ssize_t) jp2_image->numcomps; i++)
477 if (jp2_image->numcomps == 2)
749 parameters->tcp_rates[0]=((float) (jp2_image->numcomps*jp2_image->comps[0].w*
    [all...]

Completed in 631 milliseconds