diff -rw pvr350-0.0.3/device.c /usr/local/src/pvr/VDR/PLUGINS/src/pvr350-0.0.3/device.c
350a351,363
>    struct v4l2_control ctrl;
>    int ret;
>    memset(&ctrl, 0, sizeof(ctrl));
> 
>    ctrl.id = V4L2_CID_AUDIO_VOLUME;
>    //ctrl.value =  (int) (Volume * 655.35);
>    ctrl.value = (int)(Volume*256);
> 
>    printf("PVR350::cPvr350Device::SetVolumeDevice (%d,%d)\n",Volume,ctrl.value);
>    
>    if ( ( ret =ioctl(fd_out, VIDIOC_S_CTRL, &ctrl) ) < 0 ) {
>      printf("cPvr350Device::SetVolumeDevice result: %d\n",ret);
>    }

