Lines Matching defs:pvp
777 voss_httpd_start(vprofile_t *pvp)
784 if (pvp->http.host == NULL || pvp->http.port == NULL || pvp->http.nstate == 0)
787 pvp->http.state = malloc(sizeof(pvp->http.state[0]) * pvp->http.nstate);
788 if (pvp->http.state == NULL)
791 for (x = 0; x != pvp->http.nstate; x++) {
792 pvp->http.state[x].fd = -1;
793 pvp->http.state[x].ts = 0;
800 pvc->profile = pvp;
802 if (pvp->http.rtp_ifname != NULL) {
809 perr = voss_httpd_bind_rtp(pvc, pvp->http.rtp_ifname,
810 &pvp->http.rtp_fd);
816 pvp->channels, AFMT_S16_LE, 44100);
818 pvp->http.rtp_fd = -1;
821 error = vclient_setup_buffers(pvc, 0, 0, pvp->channels,
822 vclient_get_default_fmt(pvp, VTYPE_WAV_HDR),
837 TAILQ_INSERT_TAIL(&pvp->head, pvc, entry);