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

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dalbumart.h17 find_album_art(const char * path, const char * image_data, int image_size);
H A Dalbumart.c175 check_embedded_art(const char * path, const char * image_data, int image_size) argument
188 if( !image_data || !image_size || !path )
194 hash = DJBHash(image_data, image_size);
221 imsrc = image_new_from_jpeg(NULL, 0, image_data, image_size);
248 nwritten = fwrite((void *)image_data, image_size, 1, dstfile);
250 if( nwritten != image_size )
340 find_album_art(const char * path, const char * image_data, int image_size) argument
349 if( (image_size && (album_art = check_embedded_art(path, image_data, image_size))) ||
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dalbumart.h28 int64_t find_album_art(const char *path, uint8_t *image_data, int image_size);
H A Dalbumart.c162 check_embedded_art(const char *path, uint8_t *image_data, int image_size) argument
174 if( !image_data || !image_size || !path )
180 hash = DJBHash(image_data, image_size);
207 imsrc = image_new_from_jpeg(NULL, 0, image_data, image_size, 1, ROTATE_NONE);
235 nwritten = fwrite((void *)image_data, 1, image_size, dstfile);
237 if( nwritten != image_size )
240 (unsigned long)nwritten, image_size);
349 find_album_art(const char *path, uint8_t *image_data, int image_size) argument
354 if( (image_size && (album_art = check_embedded_art(path, image_data, image_size))) ||
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/lasat/
H A Dhead.h16 u32 image_size; member in struct:bootloader_header
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/dbbrowse/
H A Dpgmctrl.cpp67 const int image_size = 16; local
69 p_imageListNormal = new wxImageList(image_size, image_size, true);
71 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(aLogo)).ConvertToImage().Rescale(image_size, image_size)));
72 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(DsnClosed)).ConvertToImage().Rescale(image_size, image_size)));
73 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(DsnOpen)).ConvertToImage().Rescale(image_size, image_size)));
74 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(DocClosed)).ConvertToImage().Rescale(image_size, image_siz
[all...]
H A Ddbtree.cpp62 const int image_size = 16; local
64 p_imageListNormal = new wxImageList(image_size, image_size, true);
78 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(aLogo)).ConvertToImage().Rescale(image_size, image_size)));
79 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(DsnClosed)).ConvertToImage().Rescale(image_size, image_size)));
80 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(DsnOpen)).ConvertToImage().Rescale(image_size, image_size)));
81 p_imageListNormal->Add(wxBitmap(wxBitmap(wxICON(TAB)).ConvertToImage().Rescale(image_size, image_siz
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-flc.c81 psong->image_size = block->data.picture.data_length;
82 if((psong->image = malloc(psong->image_size)))
83 memcpy(psong->image, block->data.picture.data, psong->image_size);
H A Dtagutils.h55 int image_size; member in struct:song_metadata
H A Dtagutils-mp3.c45 id3_length_t image_size = 0; local
79 else if(!strcmp(pid3frame->id, "APIC") && !image_size)
84 image = id3_field_getbinarydata(&pid3frame->fields[4], &image_size);
85 if( image_size )
87 psong->image = malloc(image_size);
88 memcpy(psong->image, image, image_size);
89 psong->image_size = image_size;
90 //DEBUG DPRINTF(E_DEBUG, L_SCANNER, "Found thumbnail: %d\n", psong->image_size);
H A Dtagutils-aac.c170 psong->image_size = current_size - 8 - 16;
171 if((psong->image = malloc(psong->image_size)))
172 memcpy(psong->image, current_data+16, psong->image_size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/tagutils/
H A Dtagutils-flc.c85 psong->image_size = block->data.picture.data_length;
86 if((psong->image = malloc(psong->image_size)))
87 memcpy(psong->image, block->data.picture.data, psong->image_size);
H A Dtagutils.h56 int image_size; member in struct:song_metadata
H A Dtagutils-mp3.c44 id3_length_t image_size = 0; local
78 else if(!strcmp(pid3frame->id, "APIC") && !image_size)
84 image = id3_field_getbinarydata(&pid3frame->fields[4], &image_size);
85 if( image_size )
87 psong->image = malloc(image_size);
88 memcpy(psong->image, image, image_size);
89 psong->image_size = image_size;
90 //DEBUG DPRINTF(E_DEBUG, L_SCANNER, "Found thumbnail: %d\n", psong->image_size);
H A Dtagutils-aac.c158 psong->image_size = current_size - 8 - 16;
159 if((psong->image = malloc(psong->image_size)))
160 memcpy(psong->image, current_data+16, psong->image_size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/vme/devices/
H A Dvme_user.c318 size_t image_size; local
323 image_size = vme_get_size(image[minor].resource);
326 if ((*ppos < 0) || (*ppos > (image_size - 1))) {
332 if (*ppos + count > image_size)
333 okcount = image_size - *ppos;
361 size_t image_size; local
366 image_size = vme_get_size(image[minor].resource);
369 if ((*ppos < 0) || (*ppos > (image_size - 1))) {
375 if (*ppos + count > image_size)
376 okcount = image_size
403 size_t image_size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Drtas_flash.c151 unsigned long block_size, image_size; local
154 image_size = 0;
164 image_size += block_size;
168 if (image_size < (256 << 10)) {
169 if (image_size < 2)
173 printk(KERN_INFO "FLASH: flash image with %ld bytes stored for hardware flash on reboot\n", image_size);
588 unsigned long image_size; local
629 image_size = 0;
634 image_size += f->blocks[i].length;
646 printk(KERN_ALERT "FLASH: flash image is %ld bytes\n", image_size);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dcdxl.c108 uint32_t current_size, video_size, image_size; local
130 image_size = FFALIGN(width, 16) * height * cdxl->header[19] / 8;
131 video_size = palette_size + image_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dsmc.c96 int image_size = height * s->frame.linesize[0]; local
129 if (row_ptr >= image_size) {
131 row_ptr, image_size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsmc.c97 int image_size = height * s->frame->linesize[0]; local
130 if (row_ptr >= image_size) {
132 row_ptr, image_size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/sn/kernel/
H A Dio_init.c265 size_t image_size; local
270 image_size = pci_get_rom_size(dev, rom, size + 1);
273 image_size - 1;
H A Dio_acpi_init.c431 size_t image_size, size; local
447 image_size = pci_get_rom_size(dev, addr, size);
450 (unsigned long) addr + image_size - 1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/power/
H A Dpower.h67 extern unsigned long image_size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/kernel/
H A Dperf.c309 size_t image_size; local
315 image_size = PCXU_IMAGE_SIZE;
317 image_size = PCXW_IMAGE_SIZE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dtcm825x.c385 static enum image_size tcm825x_find_size(struct v4l2_int_device *s,
389 enum image_size isize;
417 enum image_size isize = tcm825x_find_size(s, pix->width, pix->height);
599 enum image_size isize;

Completed in 182 milliseconds

12