Searched refs:group (Results 201 - 225 of 304) sorted by path

1234567891011>>

/haiku/src/add-ons/media/media-add-ons/mixer/
H A DAudioMixer.cpp447 // buffer group.
583 BBufferGroup *group = NULL; local
644 status = CreateBufferGroup(&group);
649 fBufferGroup = group;
939 // Set up the buffer group for our connection, as long as nobody handed
940 // us a buffer group (via SetBufferGroup()) prior to this. That can
944 BBufferGroup *group = NULL; local
945 if (CreateBufferGroup(&group) != B_OK)
947 fBufferGroup = group;
999 // destroy buffer group
1712 BParameterGroup *group; local
[all...]
H A DMixerCore.cpp281 MixerCore::SetOutputBufferGroup(BBufferGroup *group) argument
284 fBufferGroup = group;
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioNode.cpp887 // Are we being passed the buffer group we're already using?
891 // Ahh, someone wants us to use a different buffer group. At this point
893 // If the specified group is NULL, we need to recreate one ourselves, and
896 // group, otherwise we'll deadlock waiting for that buffer to be recycled!
900 // we were given a valid group; just use that one from now on
903 // we were passed a NULL group pointer; that means we construct
904 // our own buffer group to use from now on
907 BBufferGroup* group = new BBufferGroup(size, count); local
908 if (group == NULL || group
1664 _ProcessGroup(BParameterGroup* group, int32 index, int32& numParameters) argument
1760 BParameterGroup* group = parentGroup->MakeGroup(name); local
[all...]
H A DMultiAudioNode.h109 BBufferGroup* group);
221 void _ProcessGroup(BParameterGroup* group,
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundDeviceEngine.cpp423 oss_syncgroup group; local
424 group.id = 0;
425 group.mode = PCM_ENABLE_INPUT;
426 if (ioctl(fFD, SNDCTL_DSP_SYNCGROUP, &group, sizeof(group)) < 0) {
431 if (ioctl(fFD, SNDCTL_DSP_SYNCSTART, &group.id, sizeof(group.id)) < 0) {
H A DOpenSoundNode.cpp244 // TODO: it is not clear to me how buffer group responsibility is supposed
250 // the given buffer group. In any case, the fUsingOwnBufferGroup is correclty
253 // have not tested yet, whether an external buffer group is passed to the node
1089 // Are we being passed the buffer group we're already using?
1093 // Ahh, someone wants us to use a different buffer group. At this point
1095 // the specified group is NULL, we need to recreate one ourselves, and
1098 // group, otherwise we'll deadlock waiting for that buffer to be recycled!
1102 // we were given a valid group; just use that one from now on
1105 // we were passed a NULL group pointer; that means we construct
1106 // our own buffer group t
1941 _ProcessGroup(BParameterGroup *group, int32 index, int32& nbParameters) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_vision/
H A DProducer.cpp259 BParameterGroup *group = controls->MakeGroup("Main Controls"); local
260 BDiscreteParameter *parameter = group->MakeDiscreteParameter(
266 parameter = group->MakeDiscreteParameter(
272 parameter = group->MakeDiscreteParameter(
278 group = controls->MakeGroup("Effect Controls");
279 group->MakeContinuousParameter(
283 group->MakeContinuousParameter(
287 group = controls->MakeGroup("Adv. Effect Controls");
288 group->MakeContinuousParameter(
292 group
509 SetBufferGroup(const media_source &for_source, BBufferGroup *group) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDevice.cpp244 CamDevice::AddParameters(BParameterGroup *group, int32 &index) argument
H A DCamSensor.cpp104 CamSensor::AddParameters(BParameterGroup *group, int32 &index) argument
H A DProducer.cpp433 BBufferGroup *group)
435 TOUCH(for_source); TOUCH(group);
598 /* Create the buffer group */
943 /* Fetch a buffer from the buffer group */
1025 * buffer group. */
432 SetBufferGroup(const media_source &for_source, BBufferGroup *group) argument
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/sonix/
H A DSonixCamDevice.cpp510 SonixCamDevice::AddParameters(BParameterGroup *group, int32 &index) argument
514 CamDevice::AddParameters(group, index);
517 g = group->MakeGroup("RGB gain");
525 g = group->MakeGroup("Contrast");
531 g = group->MakeGroup("Brightness");
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/uvc/
H A DUVCCamDevice.cpp767 UVCCamDevice::_AddProcessingParameter(BParameterGroup* group, argument
777 fBrightness = _AddParameter(group, &subgroup, index,
782 fContrast = _AddParameter(group, &subgroup, index + 1,
787 fHue = _AddParameter(group, &subgroup, index + 2,
798 fSaturation = _AddParameter(group, &subgroup, index + 4,
803 fSharpness = _AddParameter(group, &subgroup, index + 5,
808 fGamma = _AddParameter(group, &subgroup, index + 6,
813 fWBTemp = _AddParameter(group, &subgroup, index + 7,
824 fWBComponent = _AddParameter(group, &subgroup, index + 9,
848 subgroup = group
901 _AddParameter(BParameterGroup* group, BParameterGroup** subgroup, int32 index, uint16 wValue, const char* name) argument
952 AddParameters(BParameterGroup* group, int32& index) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/sensors/
H A Dtas5110c1b.cpp32 virtual void AddParameters(BParameterGroup *group, int32 &firstID);
171 TAS5110C1BSensor::AddParameters(BParameterGroup *group, int32 &index) argument
173 CamSensor::AddParameters(group, index);
178 BParameterGroup *g = group->MakeGroup("global gain");
/haiku/src/add-ons/media/media-add-ons/video_producer_demo/
H A DProducer.cpp328 BBufferGroup *group)
330 TOUCH(for_source); TOUCH(group);
449 /* Create the buffer group */
694 /* Fetch a buffer from the buffer group */
748 * buffer group. */
327 SetBufferGroup(const media_source &for_source, BBufferGroup *group) argument
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTNode.cpp343 VSTNode::SetBufferGroup(const media_source &src, BBufferGroup* group) argument
355 group, 0, &changeTag);
655 BParameterGroup* group; local
696 group = fParamGroup->MakeGroup(param->Name());
697 label = group->MakeNullParameter(P_LABEL + param->Index(),
703 group->MakeNullParameter(P_LABEL2 + param->Index(),
705 value = group->MakeContinuousParameter(P_PARAM + param->Index(),
713 group->MakeNullParameter(P_LABEL3 + param->Index(),
/haiku/src/add-ons/translators/avif/
H A DAVIFTranslator.cpp159 info->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/gif/
H A DGIFTranslator.cpp216 outInfo->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/icns/
H A DICNSTranslator.cpp142 info->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp1275 info->group = formats[i].group;
/haiku/src/add-ons/translators/jpeg2000/
H A DJPEG2000Translator.cpp1239 info->group = formats[i].group;
/haiku/src/add-ons/translators/png/
H A DPNGTranslator.cpp237 outInfo->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp267 outInfo->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/raw/
H A DRAWTranslator.cpp172 info->group = B_TRANSLATOR_BITMAP;
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp120 } else if (RTF::Group *group = dynamic_cast<RTF::Group *>(&element))
121 printf("<Group \"%s\">\n", group->Name());
123 if (RTF::Group *group = dynamic_cast<RTF::Group *>(&element)) {
124 for (uint32 i = 0; i < group->CountElements(); i++)
125 dump(*group->ElementAt(i), level + 1);
385 Group *group = dynamic_cast<Group *>(element); local
386 if (group == NULL)
389 Command *command = dynamic_cast<Command *>(group->ElementAt(0));
391 return group;
461 // recreate "rtf" command to name this group
826 Group(RTF::Group *group) argument
832 GroupEnd(RTF::Group *group) argument
[all...]
H A DRTF.h169 virtual void Group(RTF::Group *group);
170 virtual void GroupEnd(RTF::Group *group);

Completed in 344 milliseconds

1234567891011>>