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

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/hardware/
H A Dhwtimer.c54 * PARAMETERS: Resolution - Where the resolution is returned
56 * RETURN: Status and timer resolution
58 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
61 acpi_status acpi_get_timer_resolution(u32 * resolution) argument
65 if (!resolution) {
70 *resolution = 24;
72 *resolution = 32;
121 * rollovers, the timer resolution, and timer frequency.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/seq/
H A Dseq_timer.h29 unsigned long resolution; /* time per tick in nsec */ member in struct:snd_seq_timer_tick
40 int ppq; /* time resolution, ticks/quarter */
50 unsigned long preferred_resolution; /* timer resolution, ticks/sec */
69 unsigned long resolution)
71 if (tick->resolution > 0) {
72 tick->fraction += resolution;
73 tick->cur_tick += (unsigned int)(tick->fraction / tick->resolution);
74 tick->fraction %= tick->resolution;
68 snd_seq_timer_update_tick(struct snd_seq_timer_tick *tick, unsigned long resolution) argument
H A Dseq_timer.c48 tick->resolution = (tempo * 1000) / ppq;
54 tick->resolution = (tempo / ppq) * 1000;
55 tick->resolution += s;
57 if (tick->resolution <= 0)
58 tick->resolution = 1;
140 unsigned long resolution,
155 resolution *= ticks;
157 resolution = (resolution >> 16) * tmr->skew +
158 (((resolution
139 snd_seq_timer_interrupt(struct snd_timer_instance *timeri, unsigned long resolution, unsigned long ticks) argument
435 unsigned long resolution; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/
H A Dtimer_compat.c31 u32 resolution; member in struct:snd_timer_info32
52 info.resolution = t->hw.resolution;
60 u32 resolution; member in struct:snd_timer_status32
77 status.resolution = snd_timer_resolution(tu->timeri);
H A Dtimer.c370 return timer->hw.resolution;
379 unsigned long resolution = 0; local
388 resolution = snd_timer_resolution(ti);
390 ti->ccallback(ti, SNDRV_TIMER_EVENT_START, &tstamp, resolution);
401 ts->ccallback(ti, event + 100, &tstamp, resolution);
609 unsigned long resolution, ticks; local
623 resolution = ti->resolution;
628 ti->callback(ti, resolution, ticks);
644 unsigned long resolution, tick local
873 unsigned long resolution = 0; local
1101 snd_timer_user_interrupt(struct snd_timer_instance *timeri, unsigned long resolution, unsigned long ticks) argument
1145 snd_timer_user_ccallback(struct snd_timer_instance *timeri, int event, struct timespec *tstamp, unsigned long resolution) argument
1168 snd_timer_user_tinterrupt(struct snd_timer_instance *timeri, unsigned long resolution, unsigned long ticks) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dtimer.h37 #define SNDRV_TIMER_HW_SLAVE 0x00000004 /* only slave timer (variable resolution) */
58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member in struct:snd_timer_hardware
59 unsigned long resolution_min; /* minimal resolution */
60 unsigned long resolution_max; /* maximal resolution */
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member in struct:snd_timer_instance
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/mouse/
H A Dpsmouse.h60 unsigned int resolution; member in struct:psmouse
67 void (*set_resolution)(struct psmouse *psmouse, unsigned int resolution);
96 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution);
H A Dlifebook.c205 static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution) argument
210 if (resolution == 0 || resolution > 400)
211 resolution = 400;
213 p = params[resolution / 100];
215 psmouse->resolution = 50 << p;
H A Dlogips2pp.c175 * Support 800 dpi resolution _only_ if the user wants it (there are good
180 static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution) argument
182 if (resolution > 400) {
190 psmouse->resolution = 800;
192 psmouse_set_resolution(psmouse, resolution);
H A Dpsmouse-base.c49 module_param_named(resolution, psmouse_resolution, uint, 0644);
50 MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
74 PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
75 (void *) offsetof(struct psmouse, resolution),
99 * (connecting, disconnecting, changing rate or resolution via
814 * Here we set the mouse resolution.
817 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution) argument
822 if (resolution == 0 || resolution > 200)
823 resolution
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dconfigure.c89 RI(flac_cfg.output.resolution.normal.dither_24_to_16, 0);
90 RI(flac_cfg.output.resolution.replaygain.dither, 0);
91 RI(flac_cfg.output.resolution.replaygain.noise_shaping, 1);
92 RI(flac_cfg.output.resolution.replaygain.bps_out, 16);
107 WI(flac_cfg.output.resolution.normal.dither_24_to_16);
108 WI(flac_cfg.output.resolution.replaygain.dither);
109 WI(flac_cfg.output.resolution.replaygain.noise_shaping);
110 WI(flac_cfg.output.resolution.replaygain.bps_out);
211 Check(IDC_DITHER, flac_cfg.output.resolution.normal.dither_24_to_16);
212 Check(IDC_DITHERRG, flac_cfg.output.resolution
[all...]
H A Dplayback.h70 } resolution; member in struct:__anon903
H A Dplayback.c145 cfg.resolution.replaygain.bps_out :
146 cfg.resolution.normal.dither_24_to_16 ? min(stream_data->bits_per_sample, 16) : stream_data->bits_per_sample;
148 if (stream_data->has_replaygain && cfg.replaygain.enable && cfg.resolution.replaygain.dither)
149 FLAC__replaygain_synthesis__init_dither_context(&stream_data->dither_context, stream_data->bits_per_sample, cfg.resolution.replaygain.noise_shaping);
251 cfg.resolution.replaygain.dither,
H A Din_flac.c182 static void do_vis(char *data, int nch, int resolution, int position, unsigned samples) argument
193 switch(resolution) {
196 size = resolution / 8;
207 resolution = 8;
211 mod_.SAAddPCMData(data, nch, resolution, position);
212 mod_.VSAAddPCMData(data, nch, resolution, position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dconfigure.h65 } resolution; member in struct:__anon911::__anon914
H A Dplugin.c217 xmms_cfg_read_boolean(cfg, "flac", "output.resolution.normal.dither_24_to_16", &flac_cfg.output.resolution.normal.dither_24_to_16);
218 xmms_cfg_read_boolean(cfg, "flac", "output.resolution.replaygain.dither", &flac_cfg.output.resolution.replaygain.dither);
220 if(!xmms_cfg_read_int(cfg, "flac", "output.resolution.replaygain.noise_shaping", &flac_cfg.output.resolution.replaygain.noise_shaping))
221 flac_cfg.output.resolution.replaygain.noise_shaping = 1;
223 if(!xmms_cfg_read_int(cfg, "flac", "output.resolution.replaygain.bps_out", &flac_cfg.output.resolution.replaygain.bps_out))
224 flac_cfg.output.resolution
[all...]
H A Dconfigure.c81 /* resolution */
157 xmms_cfg_write_boolean(cfg, "flac", "output.resolution.normal.dither_24_to_16", flac_cfg.output.resolution.normal.dither_24_to_16);
158 xmms_cfg_write_boolean(cfg, "flac", "output.resolution.replaygain.dither", flac_cfg.output.resolution.replaygain.dither);
159 xmms_cfg_write_int(cfg, "flac", "output.resolution.replaygain.noise_shaping", flac_cfg.output.resolution.replaygain.noise_shaping);
160 xmms_cfg_write_int(cfg, "flac", "output.resolution.replaygain.bps_out", flac_cfg.output.resolution.replaygain.bps_out);
282 flac_cfg.output.resolution
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/acpi/
H A Dachware.h123 acpi_status acpi_get_timer_resolution(u32 * resolution);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dmetadata.h23 char *resolution; member in struct:metadata_s
H A Dmetadata.c503 /* If SOF parsing fails, then fall through to reading the JPEG data with libjpeg to get the resolution */
521 //DEBUG DPRINTF(E_DEBUG, L_METADATA, " * resolution: %dx%d\n", width, height);
535 asprintf(&m.resolution, "%dx%d", width, height);
541 path, name, file.st_size, file.st_mtime, date, m.resolution, thumb, cam, m.dlna_pn, m.mime);
551 if( m.resolution )
552 free(m.resolution);
713 asprintf(&m.resolution, "%dx%d", ctx->streams[video_stream]->codec->width, ctx->streams[video_stream]->codec->height);
741 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 TS\n", video_stream, basename(path), m.resolution);
762 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 PS\n", video_stream, basename(path), m.resolution);
774 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s [UNKNOWN CONTAINER] is %s MPEG2\n", video_stream, basename(path), m.resolution);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dmetadata.h38 char *resolution; member in struct:metadata_s
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dmetadata.h24 char *resolution; member in struct:metadata_s
H A Dmetadata.c252 if( m->resolution && (flags & FLAG_RESOLUTION) )
253 free(m->resolution);
577 /* If SOF parsing fails, then fall through to reading the JPEG data with libjpeg to get the resolution */
595 //DEBUG DPRINTF(E_DEBUG, L_METADATA, " * resolution: %dx%d\n", width, height);
608 asprintf(&m.resolution, "%dx%d", width, height);
614 path, name, file.st_size, file.st_mtime, m.date, m.resolution, thumb, m.creator, m.dlna_pn, m.mime);
795 asprintf(&m.resolution, "%dx%d", ctx->streams[video_stream]->codec->width, ctx->streams[video_stream]->codec->height);
823 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 TS\n", video_stream, basename(path), m.resolution);
844 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 PS\n", video_stream, basename(path), m.resolution);
856 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s [UNKNOWN CONTAINER] is %s MPEG2\n", video_stream, basename(path), m.resolution);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/gus/
H A Dgus_timer.c130 .resolution = 80000,
139 .resolution = 320000,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Dtimer.c72 .resolution = 20833, /* 1 sample @ 48KHZ = 20.833...us */

Completed in 117 milliseconds

1234