Searched refs:palette (Results 201 - 225 of 318) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddvdsubdec.c35 uint32_t palette[16]; member in struct:DVDSubContext
155 rgba_palette[i] = (ctx->palette[colormap[i]] & 0x00ffffff)
317 /* HD set palette */
575 ctx->palette[i] = strtoul(p, &p, 16);
600 if (strncmp("palette:", data, 8) == 0) {
633 av_log(avctx, AV_LOG_DEBUG, "palette:");
635 av_log(avctx, AV_LOG_DEBUG, " 0x%06x", ctx->palette[i]);
653 { "palette", "set the global palette", OFFSET(palette_str), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VD },
H A Diff.c50 uint32_t *mask_buf; ///< temporary buffer for palette indices
51 uint32_t *mask_palbuf; ///< masking palette table
56 unsigned transparency; ///< TODO: transparency color index in palette
58 int init; // 1 if buffer and palette data already initialized, 0 otherwise
136 // Gray to RGB, required for palette table of grayscale images with bpp < 8
142 * Convert CMAP buffer (stored in extradata) to lavc palette format
148 const uint8_t *const palette = avctx->extradata + AV_RB16(avctx->extradata); local
161 pal[i] = 0xFF000000 | AV_RB24(palette + i*3);
164 pal[i + 32] = 0xFF000000 | (AV_RB24(palette + i*3) & 0xFEFEFE) >> 1;
167 } else { // Create gray-scale color palette fo
276 const uint8_t *const palette = avctx->extradata + AV_RB16(avctx->extradata); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpng.h442 png_byte index; /* used for palette files */
477 /* When the depth of the sPLT palette is 8 bits, the color and alpha samples
484 png_charp name; /* palette name */
485 png_byte depth; /* depth of palette samples */
486 png_sPLT_entryp entries; /* palette entries */
487 png_int_32 nentries; /* number of palette entries */
594 * cleaned up before the structure is discarded: palette, trans, text,
618 png_colorp palette; /* array of color values (valid & PNG_INFO_PLTE) */ member in struct:png_info_struct
619 png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */
620 png_uint_16 num_trans; /* number of transparent palette colo
1093 png_colorp palette; /* palette from the input file */ member in struct:png_struct_def
[all...]
H A Dpngrutil.c405 /* read and check the palette */
409 png_color palette[PNG_MAX_PALETTE_LENGTH]; local
449 png_warning(png_ptr, "Invalid palette chunk");
455 png_error(png_ptr, "Invalid palette chunk");
462 for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++)
478 palette[i].red = buf[0];
479 palette[i].green = buf[1];
480 palette[i].blue = buf[2];
521 png_set_PLTE(png_ptr, info_ptr, palette, num);
1388 (png_uint_16)png_ptr->palette[bu
[all...]
H A Dpng.c531 png_zfree(png_ptr, info_ptr->palette);
532 info_ptr->palette = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmovenc.c3845 uint32_t palette[16]; local
3849 if (strncmp("palette:", cur, 8) == 0) {
3856 &palette[ 0], &palette[ 1], &palette[ 2], &palette[ 3],
3857 &palette[ 4], &palette[ 5], &palette[ 6], &palette[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dbitmap.cpp941 const wxPalette *palette) const
947 return handler->SaveFile(this, filename, type, palette);
1042 void wxBitmap::SetPalette(const wxPalette& palette) argument
1047 M_BITMAPDATA->m_bitmapPalette = palette ;
1117 // Construct a mask from a bitmap and a palette index indicating
1170 // Create a mask from a bitmap and a palette index indicating
1274 bool wxBitmapHandler::SaveFile(const wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dstk-webcam.c991 pix_format->pixelformat = dev->vsettings.palette;
992 if (dev->vsettings.palette == V4L2_PIX_FMT_SBGGR8)
1046 if (dev->vsettings.palette == V4L2_PIX_FMT_SBGGR8)
1097 dev->vsettings.palette = fmtd->fmt.pix.pixelformat;
1382 dev->vsettings.palette = V4L2_PIX_FMT_RGB565;
H A Dcpia.c1400 static inline int valid_mode(u16 palette, u16 depth) argument
1402 if ((palette == VIDEO_PALETTE_YUV422 && depth == 16) ||
1403 (palette == VIDEO_PALETTE_YUYV && depth == 16))
1407 return (palette == VIDEO_PALETTE_GREY && depth == 8) ||
1408 (palette == VIDEO_PALETTE_RGB555 && depth == 16) ||
1409 (palette == VIDEO_PALETTE_RGB565 && depth == 16) ||
1410 (palette == VIDEO_PALETTE_RGB24 && depth == 24) ||
1411 (palette == VIDEO_PALETTE_RGB32 && depth == 32) ||
1412 (palette == VIDEO_PALETTE_UYVY && depth == 16);
2042 out_fmt = cam->vp.palette;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngrutil.c501 /* Read and check the palette */
505 png_color palette[PNG_MAX_PALETTE_LENGTH]; local
547 png_warning(png_ptr, "Invalid palette chunk");
554 png_error(png_ptr, "Invalid palette chunk");
561 for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++)
577 palette[i].red = buf[0];
578 palette[i].green = buf[1];
579 palette[i].blue = buf[2];
621 png_set_PLTE(png_ptr, info_ptr, palette, num);
1478 (png_uint_16)png_ptr->palette[bu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dicon.tex287 \func{bool}{SaveFile}{\param{const wxString\& }{name}, \param{wxBitmapType}{ type}, \param{wxPalette* }{palette = NULL}}
307 \docparam{palette}{An optional palette used for saving the icon.}
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dpxa168fb.h310 #define CFG_CSB_256x24(palette) ((palette) << 14) /* Palette */
H A Dsh7760fb.c104 u32 *palette = info->pseudo_palette; local
116 palette[regno] = (red << info->var.red.offset) |
518 * palette memory.
H A Dau1200fb.c1082 * Set color in LCD palette.
1087 volatile u32 *palette = lcd->palette; local
1104 palette = (u32*) fbi->pseudo_palette;
1131 palette[regno] = value;
H A Dimsttfb.c230 * passed through the palette in the DAC. That is, "indirect
314 __u32 palette[16]; member in struct:imstt_par
897 par->palette[regno] =
902 par->palette[regno] =
907 par->palette[regno] = (i << 16) |i;
1349 info->pseudo_palette = par->palette;
H A Dpm2fb.c102 u32 palette[16]; member in struct:pm2fb_par
931 /* Truecolor has hardware independent palette */
949 par->palette[regno] = v;
1181 fgx = par->palette[image->fg_color];
1182 bgx = par->palette[image->bg_color];
1659 info->pseudo_palette = default_par->palette;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dfile-tree.cc586 painter->fillRect( option.rect, option.palette.highlight( ) );
589 painter->setBrush(option.palette.highlightedText());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/svg/
H A Ddcsvg.h276 void SetPalette(const wxPalette& WXUNUSED(palette))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dimage.h371 void SetPalette(const wxPalette& palette);
385 // objects. Each of them contains an 'index' (useful to build a palette
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Ddc.h68 virtual void SetPalette(const wxPalette& palette);
240 // MSW specific, select a logical palette into the HDC
243 // Realize tells it to also reset the system palette to this one.
246 // Find out what palette our parent window has, then select it into the dc
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/usbvision/
H A Dusbvision.h427 struct usbvision_v4l2_format_st palette; member in struct:usb_usbvision
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/aty/
H A Datyfb.h130 struct { u8 red, green, blue; } palette[256]; member in struct:atyfb_par
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/kconfig/
H A Dqconf.cc401 disabledColorGroup = palette().active();
402 disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text());
403 inactivedColorGroup = palette().active();
404 inactivedColorGroup.setColor(QColorGroup::Highlight, palette().disabled().highlight());
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/ivtv/
H A Divtvfb.c870 u32 color, *palette; local
886 palette = info->pseudo_palette;
906 palette[regno] = color;
1078 /* Allocate the pseudo palette */
1166 /* Release pseudo palette */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dmakefile.sl161 palette.obj \
381 palette.obj: $(MSWDIR)\palette.cpp
382 $(CCC) $(CPPFLAGS) $(IFLAGS) $(MSWDIR)\palette.cpp /BINARY palette.obj

Completed in 489 milliseconds

1234567891011>>