Searching for answers on the VLC forum, one developer tends to think it is a hardware problem:
https://forum.videolan.org/viewtopic.php?f=13&t=116899
There are two sound cards and I am using the second (ACL662) card:
Code:
$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: Generic_1 [HD-Audio Generic], device 0: ALC662 rev3 Analog [ALC662 rev3 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
To get the second card to be the default for alsa, I created a
/etc/modprobe.d/soundcard.conf file:
Code:
options snd-hda-intel index=1,0
And then the sound card order is changed to put the ACL662 device first:
Code:
$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Generic_1 [HD-Audio Generic], device 0: ALC662 rev3 Analog [ALC662 rev3 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
Does anyone else have stuttering problems with vlc and two sound cards?