Searched refs:pan (Results 1 - 25 of 31) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_pan.c103 PanContext *const pan = ctx->priv; local
104 char *arg, *arg0, *tokenizer, *args = av_strdup(pan->args);
109 if (!pan->args) {
111 "pan filter needs a channel layout and a set "
118 ret = ff_parse_channel_layout(&pan->out_channel_layout,
119 &pan->nb_output_channels, arg, ctx);
133 if (!((pan->out_channel_layout >> out_ch_id) & 1)) {
143 out_ch_id = av_get_channel_layout_nb_channels(pan->out_channel_layout & (((int64_t)1 << out_ch_id) - 1));
145 if (out_ch_id < 0 || out_ch_id >= pan->nb_output_channels) {
155 pan
201 are_gains_pure(const PanContext *pan) argument
225 PanContext *pan = ctx->priv; local
256 PanContext *pan = ctx->priv; local
369 PanContext *pan = inlink->dst->priv; local
386 PanContext *pan = ctx->priv; local
397 AVFILTER_DEFINE_CLASS(pan); variable
[all...]
H A Dallfilters.c95 REGISTER_FILTER(PAN, pan, af);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/include/winamp2/
H A Dout.h45 void (*SetPan)(int pan); // pan is -128 to 128
H A Din2.h51 void (*SetPan)(int pan); // from -127 to 127.. usually just call outMod->SetPan
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/sh/
H A Daica.h66 uint32_t pan; /* Pan 0-255 */ member in struct:aica_channel
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/include/mach/qdsp5/
H A Dqdsp5audppcmdi.h526 unsigned short pan; member in struct:__anon15199
555 } __attribute__((packed)) pan; typedef in typeref:struct:__anon15203
561 pan pan_filter;
568 pan pan_filter[2];
575 pan pan_filter[3];
582 pan pan_filter[4];
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pwc/
H A Dpwc-ctrl.c119 /* Formatters for the motorized pan & tilt [GS]ET_MPT_CTL */
1250 static int _pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt) argument
1259 pan = 64 * pan / 100;
1261 buf[0] = pan & 0xFF;
1262 buf[1] = (pan >> 8) & 0xFF;
1269 int pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt) argument
1274 if (pan < pdev->angle_range.pan_min ||
1275 pan > pdev->angle_range.pan_max ||
1281 pan
[all...]
H A Dpwc-ioctl.h165 int pan; /* degrees * 100 */ member in struct:pwc_mpt_angles
282 /* Motorized pan & tilt functions */
H A Dpwc.h250 /*** motorized pan/tilt feature */
297 extern int pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt);
H A Dpwc-if.c1022 int pan, tilt; local
1028 else if (sscanf(buf, "%d %d", &pan, &tilt) > 0)
1029 ret = pwc_mpt_set_angle(pdev, pan, tilt);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/synth/emux/
H A Demux_synth.c639 int pan; local
641 /* pan & loop start (pan 8bit, MSB, 0:right, 0xff:left) */
643 pan = 255 - (int)vp->reg.fixpan * 2;
645 pan = chan->control[MIDI_CTL_MSB_PAN] - 64;
646 if (vp->reg.pan >= 0) /* 0-127 */
647 pan += vp->reg.pan - 64;
648 pan = 127 - (int)pan *
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/sound/
H A Dsfnt_info.h133 signed char pan, fixpan; /* panning, fixed panning */ member in struct:soundfont_voice_info
H A Dtrident.h349 unsigned char pan; /* pan control */ member in struct:snd_trident_pcm_mixer
406 struct snd_kcontrol *ctl_pan; /* pan */
H A Dwavefront.h334 u8 pan:4; member in struct:wf_layer
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/qdsp5/
H A Daudmgr.h209 int audpp_set_volume_and_pan(unsigned id, unsigned volume, int pan);
H A Daudmgr_new.h206 int audpp_set_volume_and_pan(unsigned id, unsigned volume, int pan);
H A Daudpp.c374 int audpp_set_volume_and_pan(unsigned id, unsigned volume, int pan) argument
376 /* cmd, obj_cfg[7], cmd_type, volume, pan */
387 cmd[10] = pan;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/media/
H A Dpwc-ioctl.h166 int pan; /* degrees * 100 */ member in struct:pwc_mpt_angles
283 /* Motorized pan & tilt functions */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Din_flac.c171 static void setpan(int pan) argument
173 mod_.outMod->SetPan(pan);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/drivers/opl4/
H A Dopl4_synth.c390 int pan = voice->sound->panpot; local
393 pan += (voice->chan->control[MIDI_CTL_MSB_PAN] - 0x40) >> 3;
394 if (pan < -7)
395 pan = -7;
396 else if (pan > 7)
397 pan = 7;
399 | (pan & OPL4_PAN_POT_MASK);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/oss/
H A Dopl3.c461 int block, fnum, freq, voice_mode, pan; local
469 pan = devc->voc[voice].panning;
581 if (pan != 0xffff)
584 if (pan < -64)
587 if (pan > 64)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dtabg.h339 wxPanelTabView(wxPanel *pan, long style = wxTAB_STYLE_DRAW_BOX | wxTAB_STYLE_COLOUR_INTERIOR);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/isa/gus/
H A Dgus_pcm.c116 unsigned char pan; local
146 pan = runtime->channels == 2 ? (!voice ? 1 : 14) : 8;
150 snd_gf1_write8(gus, SNDRV_GF1_VB_PAN, pan);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/trident/
H A Dtrident_main.c547 Description: This routine will write the new voice pan
552 Pan - new pan value
920 voice->Pan = mix->pan;
1421 voice->Pan = mix->pan;
2664 Description: PCM front pan control
2683 ucontrol->value.integer.value[0] = mix->pan;
2705 change = val != mix->pan;
2706 mix->pan = val;
2876 tmix->pan = T4D_DEFAULT_PCM_PAN;
3582 tmix->pan
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dfbsysfs.c499 __ATTR(pan, S_IRUGO|S_IWUSR, show_pan, store_pan),

Completed in 230 milliseconds

12