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

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djdmaster.c106 jdiv_round_up((long) cinfo->image_width, 8L);
114 jdiv_round_up((long) cinfo->image_width, 4L);
122 jdiv_round_up((long) cinfo->image_width * 3L, 8L);
130 jdiv_round_up((long) cinfo->image_width, 2L);
138 jdiv_round_up((long) cinfo->image_width * 5L, 8L);
146 jdiv_round_up((long) cinfo->image_width * 3L, 4L);
154 jdiv_round_up((long) cinfo->image_width * 7L, 8L);
161 cinfo->output_width = cinfo->image_width;
167 cinfo->output_width = cinfo->image_width + (JDIMENSION)
168 jdiv_round_up((long) cinfo->image_width,
[all...]
H A Dexample.c63 extern int image_width; /* Number of columns in image */
125 cinfo.image_width = image_width; /* image width and height, in pixels */
154 row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
H A Djcmaster.c61 cinfo->jpeg_width = cinfo->image_width << 3;
67 cinfo->jpeg_width = cinfo->image_width << 2;
73 cinfo->jpeg_width = (cinfo->image_width << 1) + (JDIMENSION)
74 jdiv_round_up((long) cinfo->image_width * 2, 3L);
81 cinfo->jpeg_width = cinfo->image_width << 1;
87 cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
88 jdiv_round_up((long) cinfo->image_width * 3, 5L);
95 cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
96 jdiv_round_up((long) cinfo->image_width, 3L);
103 cinfo->jpeg_width = cinfo->image_width
[all...]
H A Djcsample.c170 cinfo->image_width, output_cols * h_expand);
204 cinfo->max_v_samp_factor, cinfo->image_width);
206 expand_right_edge(output_data, cinfo->max_v_samp_factor, cinfo->image_width,
238 cinfo->image_width, output_cols * 2);
275 cinfo->image_width, output_cols * 2);
319 cinfo->image_width, output_cols * 2);
421 cinfo->image_width, output_cols);
H A Drdppm.c152 for (col = cinfo->image_width; col > 0; col--) {
170 for (col = cinfo->image_width; col > 0; col--) {
193 for (col = cinfo->image_width; col > 0; col--) {
214 for (col = cinfo->image_width; col > 0; col--) {
252 for (col = cinfo->image_width; col > 0; col--) {
276 for (col = cinfo->image_width; col > 0; col--) {
330 cinfo->image_width = (JDIMENSION) w;
H A Djdinput.c48 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
88 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
99 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
166 jdiv_round_up((long) cinfo->image_width,
H A Drdrle.c120 cinfo->image_width = width;
219 for (col = cinfo->image_width; col > 0; col--) {
295 for (col = 0; col < cinfo->image_width; col++) {
321 for (col = cinfo->image_width; col > 0; col--) {
H A Dtransupp.h173 JPP((JDIMENSION image_width, JDIMENSION image_height,
H A Drdjpgcom.c285 unsigned int image_height, image_width; local
294 image_width = read_2_bytes();
315 image_width, image_height, num_components, data_precision);
H A Djccolor.c140 JDIMENSION num_cols = cinfo->image_width;
196 JDIMENSION num_cols = cinfo->image_width;
235 JDIMENSION num_cols = cinfo->image_width;
287 JDIMENSION num_cols = cinfo->image_width;
318 JDIMENSION num_cols = cinfo->image_width;
H A Drdtarga.c182 for (col = cinfo->image_width; col > 0; col--) {
200 for (col = cinfo->image_width; col > 0; col--) {
220 for (col = cinfo->image_width; col > 0; col--) {
247 for (col = cinfo->image_width; col > 0; col--) {
463 cinfo->image_width = width;
H A Dtransupp.c136 MCU_cols = srcinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
201 MCU_cols = srcinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
472 MCU_rows = srcinfo->image_width / (dstinfo->max_v_samp_factor * DCTSIZE);
539 MCU_cols = srcinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
649 MCU_rows = srcinfo->image_width / (dstinfo->max_v_samp_factor * DCTSIZE);
890 info->output_height = srcinfo->image_width;
900 info->output_width = srcinfo->image_width;
969 trim_right_edge(info, srcinfo->image_width);
989 trim_bottom_edge(info, srcinfo->image_width);
1004 trim_right_edge(info, srcinfo->image_width);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dflashsvenc.c60 int image_width, image_height; member in struct:FlashSVContext
108 s->image_width = avctx->width;
112 s->encbuffer = av_mallocz(s->image_width * s->image_height * 3);
136 put_bits(&pb, 12, s->image_width);
142 h_blocks = s->image_width / block_width;
143 h_part = s->image_width % block_width;
231 if (buf_size < s->image_width * s->image_height * 3) {
234 buf_size, s->image_width * s->image_height * 3);
H A Dflashsv.c54 int image_width, image_height; member in struct:FlashSVContext
247 s->image_width = get_bits(&gb, 12);
264 h_blocks = s->image_width / s->block_width;
265 h_part = s->image_width % s->block_width;
296 avctx->width = s->image_width;
301 if (avctx->width != s->image_width || avctx->height != s->image_height) {
305 avctx->height, avctx->width, s->image_height, s->image_width);
320 s->image_width, s->image_height, s->block_width, s->block_height,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/gregbook/
H A Drpng-win.c125 static ulg image_width, image_height, image_rowbytes; variable
309 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
453 wimage_rowbytes = ((3*image_width + 3L) >> 2) << 2;
471 bmih->biWidth = image_width;
484 for (i = image_width; i > 0; --i) {
521 CW_USEDEFAULT, CW_USEDEFAULT, image_width+extra_width,
546 image_width, image_rowbytes, wimage_rowbytes))
559 for (i = image_width; i > 0; --i) {
568 for (i = image_width; i > 0; --i) {
596 rect.right = (LONG)image_width; /* possibl
[all...]
H A Drpng-x.c133 static ulg image_width, image_height, image_rowbytes; variable
299 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
551 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
573 size_hints->min_width = size_hints->max_width = (int)image_width;
628 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
645 xdata = (uch *)malloc(4*image_width*image_height);
648 xdata = (uch *)malloc(2*image_width*image_height);
651 xdata = (uch *)malloc(image_width*image_height);
661 (char *)xdata, image_width, image_height, pad, 0);
700 image_width, image_rowbyte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dflashsvenc.c60 int image_width, image_height; member in struct:FlashSVContext
123 s->image_width = avctx->width;
127 s->encbuffer = av_mallocz(s->image_width * s->image_height * 3);
157 put_bits(&pb, 12, s->image_width);
163 h_blocks = s->image_width / block_width;
164 h_part = s->image_width % block_width;
249 if ((res = ff_alloc_packet2(avctx, pkt, s->image_width * s->image_height * 3)) < 0)
H A Dflashsv2enc.c108 int image_width, image_height; member in struct:FlashSV2Context
150 s->image_width - col * s->block_width;
210 s->image_width = avctx->width;
213 s->block_width = (s->image_width / 12) & ~15;
222 s->cols = (s->image_width + s->block_width - 1) / s->block_width;
224 s->frame_size = s->image_width * s->image_height * 3;
293 put_bits(&pb, 12, s->image_width);
616 pos = s->image_width * rsl * 3 + col * s->block_width * 3;
648 data = s->current_frame + s->image_width * 3 * s->block_height * row + s->block_width * col * 3;
649 res = encode_block(s, &s->palette, b, prev, data, s->image_width *
[all...]
H A Dflashsv.c54 int image_width, image_height; member in struct:FlashSVContext
288 s->image_width = get_bits(&gb, 12);
309 h_blocks = s->image_width / s->block_width;
310 h_part = s->image_width % s->block_width;
343 if ((ret = ff_set_dimensions(avctx, s->image_width, s->image_height)) < 0)
348 if (avctx->width != s->image_width || avctx->height != s->image_height) {
352 avctx->height, avctx->width, s->image_height, s->image_width);
369 s->image_width, s->image_height, s->block_width, s->block_height,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djcsample.c159 cinfo->image_width, output_cols * h_expand);
192 cinfo->max_v_samp_factor, cinfo->image_width);
195 cinfo->image_width, compptr->width_in_blocks * DCTSIZE);
226 cinfo->image_width, output_cols * 2);
263 cinfo->image_width, output_cols * 2);
306 cinfo->image_width, output_cols * 2);
407 cinfo->image_width, output_cols);
H A Djdmaster.c101 jdiv_round_up((long) cinfo->image_width, 8L);
108 jdiv_round_up((long) cinfo->image_width, 4L);
115 jdiv_round_up((long) cinfo->image_width, 2L);
121 cinfo->output_width = cinfo->image_width;
150 jdiv_round_up((long) cinfo->image_width *
162 cinfo->output_width = cinfo->image_width;
H A Djdinput.c46 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
84 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
95 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
162 jdiv_round_up((long) cinfo->image_width,
H A Djccolor.c140 JDIMENSION num_cols = cinfo->image_width;
196 JDIMENSION num_cols = cinfo->image_width;
235 JDIMENSION num_cols = cinfo->image_width;
287 JDIMENSION num_cols = cinfo->image_width;
318 JDIMENSION num_cols = cinfo->image_width;
H A Djcmaster.c55 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
61 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
65 samplesperrow = (long) cinfo->image_width * (long) cinfo->input_components;
102 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
109 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
350 jdiv_round_up((long) cinfo->image_width,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dxv.c58 int image_width, image_height; member in struct:__anon3313
135 xv->image_width = encctx->width;
198 xv->image_width = encctx->width;
201 xv->image_width, xv->image_height, &xv->yuv_shminfo);
286 xv->yuv_image, 0, 0, xv->image_width, xv->image_height,

Completed in 221 milliseconds

12