Searched refs:height (Results 101 - 125 of 665) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Dv4l2.c59 int width, height; member in struct:video_data
174 static int device_init(AVFormatContext *ctx, int *width, int *height, int pix_fmt) argument
184 fmt.fmt.pix.height = *height;
188 if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
189 av_log(ctx, AV_LOG_INFO, "The V4L2 driver changed the video from %dx%d to %dx%d\n", *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height);
191 *height = fmt.fmt.pix.height;
513 int width, height; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Dbmap.c41 __be64 *bottom, unsigned int height,
115 * that the height can be grown in the traditional way.
180 * calc_tree_height - Calculate the height of a metadata tree
189 * Returns: the height the tree should be
196 unsigned int max, height; local
209 for (height = 0; height < max; height++)
210 if (arr[height] >= size)
213 return height;
225 build_height(struct inode *inode, unsigned height) argument
364 metapointer(struct buffer_head *bh, int *boundary, unsigned int height, const struct metapath *mp) argument
393 lookup_block(struct gfs2_inode *ip, struct buffer_head *bh, unsigned int height, struct metapath *mp, int create, int *new, u64 *block) argument
462 unsigned int height; local
589 recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh, struct metapath *mp, unsigned int height, u64 block, int first, block_call_t bc, void *data) argument
655 do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, struct buffer_head *bh, __be64 *top, __be64 *bottom, unsigned int height, void *data) argument
993 unsigned int height = ip->i_di.di_height; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dmenubox.c105 int y, int x, int height)
126 y = y + height + 1;
129 if ((height < item_no) && (scroll + height < item_no)) {
149 print_buttons (WINDOW *win, int height, int width, int selected) argument
152 int y = height - 2;
166 dialog_menu (const char *title, const char *prompt, int height, int width, argument
179 y = (LINES - height) / 2;
181 draw_shadow (stdscr, y, x, height, width);
183 dialog = newwin (height, widt
104 print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, int height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Deatgv.c43 int width,height; member in struct:TgvContext
64 static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst, int width, int height) { argument
65 unsigned char *dst_end = dst + width*height;
196 for(y=0; y<s->avctx->height/4; y++)
257 s->height = AV_RL16(&buf[2]);
258 if (s->avctx->width!=s->width || s->avctx->height!=s->height) {
259 avcodec_set_dimensions(s->avctx, s->width, s->height);
272 if (avcodec_check_dimensions(avctx, s->width, s->height))
283 s->frame.data[0] = av_malloc(s->width*s->height
[all...]
H A Dlibdirac_libschro.c59 avccontext->height == vf->height){
H A Dlibschroedingerdec.c177 p_schro_params->format->height) < 0) {
179 p_schro_params->format->width, p_schro_params->format->height);
180 avccontext->height = avccontext->width = 0;
183 avccontext->height = p_schro_params->format->height;
204 avccontext->height);
270 format->height);
317 avccontext->width, avccontext->height);
H A Dtscc.c61 int height; member in struct:TsccContext
141 c->height = avctx->height;
143 if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
160 c->decomp_size = (avctx->width * c->bpp + (avctx->width + 254) / 255 + 2) * avctx->height + 2;//RLE in the 'best' case
H A Dbfi.c43 bfi->dst = av_mallocz(avctx->width * avctx->height);
54 uint8_t *frame_end = bfi->dst + avctx->width * avctx->height;
56 int i, j, height = avctx->height; local
154 while (height--) {
H A Dpnm.c102 avctx->height = h;
130 avctx->height = atoi(buf1);
131 if(avcodec_check_dimensions(avctx, avctx->width, avctx->height))
155 h = (avctx->height * 2);
159 avctx->height = h;
H A Dzmbv.c62 int width, height; member in struct:ZmbvContext
100 for(y = 0; y < c->height; y += c->bh) {
101 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
118 if((my + j < 0) || (my + j >= c->height)) {
171 for(y = 0; y < c->height; y += c->bh) {
172 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
189 if((my + j < 0) || (my + j >= c->height)) {
247 for(y = 0; y < c->height;
[all...]
H A Dqtrleenc.c65 if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
90 if (avpicture_alloc(&s->previous_frame, avctx->pix_fmt, avctx->width, avctx->height) < 0) {
95 s->max_buf_size = s->avctx->width*s->avctx->height*s->pixel_size /* image base material */
97 + s->avctx->height*2 /* skip code+rle end */
239 int end_line = s->avctx->height;
243 for (start_line = 0; start_line < s->avctx->height; start_line++)
249 for (end_line=s->avctx->height; end_line > start_line; end_line--)
258 if ((start_line == 0 && end_line == s->avctx->height) || start_line == s->avctx->height)
303 av_picture_copy(&s->previous_frame, (AVPicture *)p, avctx->pix_fmt, avctx->width, avctx->height);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dimage_utils.c215 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
229 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
234 image_get_jpeg_resolution(const char * path, int * width, int * height) argument
265 *height = 0;
267 *height = SWAP16(h);
372 image_new(int32_t width, int32_t height) argument
381 vimage->width = width; vimage->height = height;
386 printf("width:%d, height:%d, size of pix: %d\n", width, height, sizeo
546 image_upsize(image * pdest, image * psrc, int32_t width, int32_t height) argument
609 image_downsize(image * pdest, image * psrc, int32_t width, int32_t height) argument
753 image_resize(image * src_image, int32_t width, int32_t height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mod_db4/
H A Dskiplist.c49 sl->height=0;
204 sl->height = 1;
220 while(nh <= sl->height && get_b_rand()) nh++;
222 /* Now we have the new height at which we wish to insert our new node */
224 for(;sl->height<nh;sl->height++) {
235 ch = sl->height;
312 while(nh <= sl->height && get_b_rand()) nh++;
314 /* Now we have the new height at which we wish to insert our new node */
321 for(;sl->height<n
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/scripts/
H A Dbacktrace33 set height 0
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfs/
H A Dbfind.c89 int height, res; local
98 height = tree->depth;
108 if (bnode->height != height)
110 if (bnode->type != (--height ? HFS_NODE_INDEX : HFS_NODE_LEAF))
115 if (!height)
130 height, bnode->height, bnode->type, nidx, parent);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus/
H A Dbfind.c89 int height, res; local
98 height = tree->depth;
108 if (bnode->height != height)
110 if (bnode->type != (--height ? HFS_NODE_INDEX : HFS_NODE_LEAF))
115 if (!height)
130 height, bnode->height, bnode->type, nidx, parent);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus_journal/
H A Dbfind.c112 int height, res; local
121 height = tree->depth;
131 if (bnode->height != height)
133 if (bnode->type != (--height ? HFS_NODE_INDEX : HFS_NODE_LEAF))
138 if (!height)
153 height, bnode->height, bnode->type, nidx, parent);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Doutput_example.c207 c->height = 288;
233 static AVFrame *alloc_picture(int pix_fmt, int width, int height) argument
242 size = avpicture_get_size(pix_fmt, width, height);
249 pix_fmt, width, height);
286 picture = alloc_picture(c->pix_fmt, c->width, c->height);
297 tmp_picture = alloc_picture(PIX_FMT_YUV420P, c->width, c->height);
306 static void fill_yuv_image(AVFrame *pict, int frame_index, int width, int height) argument
313 for(y=0;y<height;y++) {
320 for(y=0;y<height/2;y++) {
345 img_convert_ctx = sws_getContext(c->width, c->height,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/console/
H A Dmdacon.c430 int height, int width)
435 if (width <= 0 || height <= 0)
439 scr_memsetw(dest, eattr, height*width*2);
441 for (; height > 0; height--, dest+=mda_num_columns)
447 int dy, int dx, int height, int width)
451 if (width <= 0 || height <= 0)
455 scr_memmovew(MDA_ADDR(0,dy), MDA_ADDR(0,sy), height*width*2);
461 for (; height > 0; height
429 mdacon_clear(struct vc_data *c, int y, int x, int height, int width) argument
446 mdacon_bmove(struct vc_data *c, int sy, int sx, int dy, int dx, int height, int width) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/i810/
H A Di810_accel.c145 * @dheight: height of rectangular graphics data
182 * @height: height of destination
195 static inline void color_blit(int width, int height, int pitch, int dest, argument
205 PUT_RING(height << 16 | width);
216 * @dheight: height of destination
301 u32 dx, dy, width, height, dest, rop = 0, color = 0; local
317 height = rect->height;
320 color_blit(width, height, inf
327 u32 sx, sy, dx, dy, pitch, width, height, src, dest, xdir; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/video4linux/
H A Dv4lgrab.c160 buffer = malloc(win.width * win.height * bpp);
168 read(fd, buffer, win.width * win.height * bpp);
169 f = get_brightness_adj(buffer, win.width * win.height, &newbright);
179 fprintf(stdout, "P6\n%d %d 255\n", win.width, win.height);
183 for (i = 0; i < win.width * win.height; i++) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dimage_utils.c214 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
228 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
233 image_get_jpeg_resolution(const char * path, int * width, int * height) argument
271 *height = 0;
275 *height = SWAP16(h);
402 image_new(int32_t width, int32_t height) argument
411 vimage->width = width; vimage->height = height;
413 if((vimage->buf = (pix *)malloc(width * height * sizeof(pix))) == NULL)
498 maxbuf = vimage->width * vimage->height;
572 image_upsize(image_s * pdest, image_s * psrc, int32_t width, int32_t height) argument
635 image_downsize(image_s * pdest, image_s * psrc, int32_t width, int32_t height) argument
779 image_resize(image_s * src_image, int32_t width, int32_t height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dimage_utils.c215 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
229 if((x >= 0) && (y >= 0) && (x < pimage->width) && (y < pimage->height))
234 image_get_jpeg_resolution(const char * path, int * width, int * height) argument
271 *height = 0;
273 *height = SWAP16(h);
382 image_new(int32_t width, int32_t height) argument
391 vimage->width = width; vimage->height = height;
393 //printf("width:%d, height:%d, size of pix: %d\n", width, height, sizeo
555 image_upsize(image * pdest, image * psrc, int32_t width, int32_t height) argument
618 image_downsize(image * pdest, image * psrc, int32_t width, int32_t height) argument
762 image_resize(image * src_image, int32_t width, int32_t height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/vhook/
H A Dfish.c231 void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts) argument
259 h_end = 2 * ((ci->inset * height) / 200);
260 h_start = height - h_end;
345 size = avpicture_get_size(PIX_FMT_RGB24, width, height);
348 avpicture_fill(&picture1, buf, PIX_FMT_RGB24, width, height);
352 width, height, pix_fmt,
353 width, height, PIX_FMT_RGB24,
363 picture->data, picture->linesize, 0, height,
370 fprintf(f, "P6 %d %d 255\n", width, height);
371 if (!fwrite(buf, width * height *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A Dutil.c107 void attr_clear(WINDOW * win, int height, int width, chtype attr) argument
112 for (i = 0; i < height; i++) {
290 draw_box(WINDOW * win, int y, int x, int height, int width, argument
296 for (i = 0; i < height; i++) {
301 else if (i == height - 1 && !j)
305 else if (i == height - 1 && j == width - 1)
309 else if (i == height - 1)
324 void draw_shadow(WINDOW * win, int y, int x, int height, int width) argument
330 wmove(win, y + height, x + 2);
333 for (i = y + 1; i < y + height
[all...]

Completed in 601 milliseconds

1234567891011>>