Searched refs:Al (Results 1 - 25 of 25) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
482 int Al, pred; local
578 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
582 if (Al > 0 && pred >= (1<<Al))
583 pred = (1<<Al)-1;
586 if (Al > 0 && pred >= (1<<Al))
587 pred = (1<<Al)-1;
593 if ((Al
[all...]
H A Djdphuff.c116 /* Successive approximation refinement scan: must have Al = Ah-1. */
117 if (cinfo->Al != cinfo->Ah-1)
120 if (cinfo->Al > 13) /* need not check for < 0 */
122 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
124 * accept. Note: large Al values could result in out-of-range DC
130 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
144 coef_bit_ptr[coefi] = cinfo->Al;
289 int Al = cinfo->Al; local
336 (*block)[0] = (JCOEF) (s << Al);
361 int Al = cinfo->Al; local
[all...]
H A Djcphuff.c383 int Al = cinfo->Al; local
402 /* Compute the DC value after the required point transform by Al.
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
471 int Al = cinfo->Al; local
494 /* We must apply the point transform by Al. For AC coefficients this
501 temp >>= Al; /* apply the point transform */ local
505 temp >>= Al; /* apply the point transform */ local
576 int Al local
627 int Al = cinfo->Al; local
654 temp >>= Al; /* apply the point transform */ local
[all...]
H A Djcmaster.c137 int Ss, Se, Ah, Al; local
142 /* -1 until that coefficient has been seen; then last Al for it */
185 Al = scanptr->Al;
188 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
191 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
201 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
221 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
224 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djcparam.c476 int Ss, int Se, int Ah, int Al)
484 scanptr->Al = Al;
491 int Ss, int Se, int Ah, int Al)
502 scanptr->Al = Al;
509 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
521 scanptr->Al = Al;
525 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
475 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
490 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djpeglib.h188 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon655
390 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
511 int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
608 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
H A Djcmarker.c344 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
H A Djdhuff.c92 /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
97 cinfo->Ah != 0 || cinfo->Al != 0)
H A Djdmarker.c347 /* Collect the additional scan parameters Ss, Se, Ah/Al. */
354 cinfo->Al = (c ) & 15;
357 cinfo->Ah, cinfo->Al);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
479 int Al, pred; local
575 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
579 if (Al > 0 && pred >= (1<<Al))
580 pred = (1<<Al)-1;
583 if (Al > 0 && pred >= (1<<Al))
584 pred = (1<<Al)-1;
590 if ((Al
[all...]
H A Djcparam.c498 int Ss, int Se, int Ah, int Al)
506 scanptr->Al = Al;
513 int Ss, int Se, int Ah, int Al)
524 scanptr->Al = Al;
531 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
543 scanptr->Al = Al;
547 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
497 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
512 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djdarith.c307 (*block)[0] = (JCOEF) (entropy->last_dc_val[ci] << cinfo->Al);
383 (*block)[jpeg_natural_order[k]] = (JCOEF) (v << cinfo->Al);
408 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
450 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
451 m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */
644 /* Successive approximation refinement scan: must have Al = Ah-1. */
645 if (cinfo->Ah-1 != cinfo->Al)
648 if (cinfo->Al > 13) { /* need not check for < 0 */
651 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
666 coef_bit_ptr[coefi] = cinfo->Al;
[all...]
H A Djdhuff.c652 int Al = cinfo->Al; local
699 (*block)[0] = (JCOEF) (s << Al);
724 int Al = cinfo->Al; local
767 (*block)[jpeg_natural_order[k]] = (JCOEF) (s << Al);
808 int p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
858 int p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
859 int m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */
1147 /* Successive approximation refinement scan: must have Al
[all...]
H A Djcarith.c386 /* Compute the DC value after the required point transform by Al.
389 m = IRIGHT_SHIFT((int) ((*block)[0]), cinfo->Al);
478 /* We must apply the point transform by Al. For AC coefficients this
483 if (v >>= cinfo->Al) break;
486 if (v >>= cinfo->Al) break;
496 if (v >>= cinfo->Al) {
503 if (v >>= cinfo->Al) {
555 int Al, blkn; local
568 Al = cinfo->Al;
[all...]
H A Djcmaster.c317 int Ss, Se, Ah, Al; local
322 /* -1 until that coefficient has been seen; then last Al for it */
365 Al = scanptr->Al;
368 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
371 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
381 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
401 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
404 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djchuff.c545 int Al = cinfo->Al; local
564 /* Compute the DC value after the required point transform by Al.
567 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
633 int Al = cinfo->Al; local
656 /* We must apply the point transform by Al. For AC coefficients this
663 temp >>= Al; /* apply the point transform */ local
667 temp >>= Al; /* apply the point transform */ local
738 int Al local
789 int Al = cinfo->Al; local
816 temp >>= Al; /* apply the point transform */ local
[all...]
H A Drdswitch.c223 scanptr->Al = (int) val;
229 scanptr->Al = 0;
H A Djpeglib.h195 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon3951
415 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
536 int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
634 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
H A Djcmarker.c344 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
H A Djdmarker.c347 /* Collect the additional scan parameters Ss, Se, Ah/Al. */
354 cinfo->Al = (c ) & 15;
357 cinfo->Ah, cinfo->Al);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmjpegdec.c470 int16_t *quant_matrix, int Al)
479 val = (val * quant_matrix[0] << Al) + s->last_dc[component];
489 int ss, int se, int Al, int *EOBRUN)
522 block[j] = level * quant_matrix[j] << Al;
529 block[j] = level * quant_matrix[j] << Al;
562 ((quant_matrix[j] ^ sign) - sign) << Al; \
587 int ss, int se, int Al, int *EOBRUN)
608 block[j] = ((quant_matrix[j]^val) - val) << Al;
825 int Al, const uint8_t *mb_bitmask,
909 s->quant_matrixes[s->quant_index[c]][0] << Al;
468 decode_dc_progressive(MJpegDecodeContext *s, DCTELEM *block, int component, int dc_index, int16_t *quant_matrix, int Al) argument
486 decode_block_progressive(MJpegDecodeContext *s, DCTELEM *block, uint8_t *last_nnz, int ac_index, int16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) argument
584 decode_block_refinement(MJpegDecodeContext *s, DCTELEM *block, uint8_t *last_nnz, int ac_index, int16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) argument
824 mjpeg_decode_scan(MJpegDecodeContext *s, int nb_components, int Ah, int Al, const uint8_t *mb_bitmask, const AVFrame *reference) argument
951 mjpeg_decode_scan_progressive_ac(MJpegDecodeContext *s, int ss, int se, int Ah, int Al, const uint8_t *mb_bitmask, const AVFrame *reference) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmjpegdec.c664 int16_t *quant_matrix, int Al)
673 val = (val * quant_matrix[0] << Al) + s->last_dc[component];
683 int ss, int se, int Al, int *EOBRUN)
716 block[j] = level * quant_matrix[j] << Al;
723 block[j] = level * quant_matrix[j] << Al;
756 ((quant_matrix[j] ^ sign) - sign) << Al; \
781 int ss, int se, int Al, int *EOBRUN)
802 block[j] = ((quant_matrix[j]^val) - val) << Al;
1168 int Al, const uint8_t *mb_bitmask,
1250 s->quant_matrixes[s->quant_sindex[i]][0] << Al;
662 decode_dc_progressive(MJpegDecodeContext *s, int16_t *block, int component, int dc_index, int16_t *quant_matrix, int Al) argument
680 decode_block_progressive(MJpegDecodeContext *s, int16_t *block, uint8_t *last_nnz, int ac_index, int16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) argument
778 decode_block_refinement(MJpegDecodeContext *s, int16_t *block, uint8_t *last_nnz, int ac_index, int16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) argument
1167 mjpeg_decode_scan(MJpegDecodeContext *s, int nb_components, int Ah, int Al, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference) argument
1276 mjpeg_decode_scan_progressive_ac(MJpegDecodeContext *s, int ss, int se, int Ah, int Al) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_ojpeg.c2092 value, equivalent to the "Al" field in a JPEG bit-stream's "Start of
2099 sp->cinfo.d.Al = *va_arg(ap,uint16 *);
2105 ((uint16*)sp->cinfo.d.Al)[i2];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dinteger.cpp389 inline D DivideFourWordsByTwo(S *T, const D &Al, const D &Ah, const D &B) argument
396 T[0] = Al.GetLowHalf();
397 T[1] = Al.GetHighHalf();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/
H A Djre-1_5_0_15-linux-i586.bin2099 b�y��q���n��y�w`�y��� +�qV�'�Al�� �_��C�6}�(}�@-��>nD�v�w� �����A�<8���� ��XU�#�q/n�V�{;���
2630 ��F�CR��$�M�56��8�Qr�d�~tZ`�M&V:C���A�\��h~����m��A<z��i� ���j���5���{?��>!�!�l����� /J*W�� �>����� <.�niP� Y!�|�3I3Vw��-��_J�p����Rh> ��b�zF���7��M�mv9q�kL'O�4������2�1f�p��i@�+e�u� Rt�~y�2x��$?L*�� Z�V�G����rV��0g���mo� Zb����Ft���r��O�=���2X�*O6�(�@�������+'g���tS�����Y]��_h^�(�.V���M)3Xp��,�����&�``���p�/��g�������n��&����Al�;�Nc�w��W2F<�������7�jzDSe7�dP�zzTh��iH��C �&�����s&.2�!#��E98<8�(�@ ZW��T'��F4�^}�_�"w
3625 ��M"��w0�b���%M��F �c���TQ�w2��q��,1���}��Bl�&K�����6�J�� -�i����������+���"=_��u��t�P�AV�G�yB)���Gf>���������Al\,��)h���1��Je��s���^i�7N�i�)�!���&��-5x� j��v��z���g��C����n�
8414 �)��r����w�A�X���H����i�_�E~��W�� =tt��`�'�pB������>A�;��)��w;E7�)-I<g�Kz�����.*-p��r�q&���`���Q$O�R����` ����$nO�b.�|O����N���7������J{Al����y�{��������*�!��P�_f��b9e\�#����. >3'�7�J��&wB�s"�|���\c����yfD�>���5��p��~O��+-E�K�K��\I��hh�05�X�o�I[� ��{8[��h�x���Z���E����3��y�dq�~������0]"��MlM�I���V��C����,G�W8a�Z� �����r�~?��n��4�y\�p��Y����o����I��~��aP`�F���y T���i�z<Sb��B�-N��@���q*�}C�J���%� �#��|;��;DH�=�~ ��4��e"y��F�{5/�0����^�B���M{Mm��e��S(D��]���^��H�� }sA���9�)�� x�ZkQ�������K�+�������!���Y��������$S��b����_�� x|�c4704�#7���v�����7D�����7�=+�Ph�?��'us�#����
12951 ���l4�V�ms�i;cn����3�d���}{�����������d��Q0�F���|7������2zP�w=�����C}HR�K' U���X2z�U�F�0��n�Z���+�p�Aq��g �9�K�b~�� i�P��hl]~�Q�.l���>>4�4���v�)�1��a���^�D���7]�|u z��6�N��eD��Ke�%l��G��R`�����sd1��o�!���;���J|d�i9����-Al���:�X���6�l[�A�BaP���|P=����mTTG���x�}��a���cl�V��Q`�����di�P�E6����J���x���$�@5��B>�����=���\��R�C9=��FH�I7�`�����)B�G��e�/7���)Q��Cl6{��mz��8������`���P����Y�����5g [����B'�l\�����VZ�I�1��$c��w��E<�z����iz� �Z�ZZ���)�)r0� W�����-���z����K��z�H g�7`t� :e$�F4�[8��ti�K��Y��G�S,&E�E�"���2�D��&Xii�V`Z ���2�L�����r��f|0m���p����T���<���+7*����t�8L!����s9�mJc�~��0i�����l*�}�?���?���J�������aM�F�ar
16661 v\�Q����Z���l�N�T����j��7^�W�� �W�)���M+MS+k}���M�����������C ����]�3!�nR�VFNq"z�]0��6q�=�#�w�il�DJ����TUP�F T0Z2W�MS(�H�q�' ���>����Z��b��:���+vg��}��n��V�]yZ�)�WRy�I��L����u���:q+%]��!����2��V�'�%Al��F�)���0\������$ �DXT#�m���~?��wtVr�� :I����+�F�B%'��) ��<������9�ps�Kb_�hb��-��5� J�p��p��'R�%�x>�]�J'�|��C�q��lv�Te�|�=����$��EW�d�w��KB�.�my���T$^�7����5V����c�@���sW��-P�������+�����c��8�8�Fq������X�G~��!���� �:P��c�]�_� [��y�pNTjY+1@��!�bNra^Q#M�M��B�f��R�<����e�9�U��J��<
[all...]

Completed in 333 milliseconds