A2DP を選択しても何も変わりません。動作する conf ファイルは何ですか?

A2DP を選択しても何も変わりません。動作する conf ファイルは何ですか?
Xubuntu 14.04.3
Thinkpad t450s
Mpow Swift headset
$ bluetoothd -v
4.101
$ pulseaudio -v
4.0

A2DP は動作していました (他のスレッドに従って /etc/bluetooth/audio.conf ファイルを微調整した後)。以前はヘッドセットを切断して再接続できました。HFP/HSP ではなく A2DP を手動で選択する必要がありましたが、動作しました。バージョンを変更したり、システム アップデートを実行したりしていませんでしたが、何かが起こったようで、A2DP を選択しても何も起こりません。「オフ」が選択されている場合、A2DP を選択するとオーディオは出力されません。「HFP/HSP」が選択されている場合、A2DP を選択すると HFP/HSP 出力が継続されます。

実際に機能するセットアップをお持ちの方は、audio.conf やその他のファイル/設定を投稿して、私が持っているものと一致させてもらえませんか?

デフォルトで A2DP を選択する設定はありますか?

前もって感謝します!

これが私の audio.conf です。(ソケットを有効にしてみましたが、結果は同じでした。HFP を有効にしてみましたが、結果は同じでした。)

$ sudo cat /etc/bluetooth/audio.conf
# Configuration file for the audio service

# This section contains options which are not specific to any
# particular interface
[General]

# Switch to master role for incoming connections (defaults to true)
#Master=true

# If we want to disable support for specific services
# Defaults to supporting all implemented services
#Disable=Gateway,Source,Socket
#Enable=Gateway,Source
Enable=Source,Sink,Headset,Gateway,Control,Media
Disable=Socket

# SCO routing. Either PCM or HCI (in which case audio is routed to/from ALSA)
# Defaults to HCI
#SCORouting=PCM

# Automatically connect both A2DP and HFP/HSP profiles for incoming
# connections. Some headsets that support both profiles will only connect the
# other one automatically so the default setting of true is usually a good
# idea.
AutoConnect=true

# Headset interface specific options (i.e. options which affect how the audio
# service interacts with remote headset devices)
[Headset]

# Set to true to support HFP, false means only HSP is supported
# Defaults to true
HFP=false

# Maximum number of connected HSP/HFP devices per adapter. Defaults to 1
MaxConnected=1

# Set to true to enable use of fast connectable mode (faster page scanning)
# for HFP when incoming call starts. Default settings are restored after
# call is answered or rejected. Page scan interval is much shorter and page
# scan type changed to interlaced. Such allows faster connection initiated
# by a headset.
FastConnectable=false

# Just an example of potential config options for the other interfaces
[A2DP]
SBCSources=1
MPEG12Sources=0

答え1

わかりました。ヘッドセットを無効にするように変更してみましたが、完全に機能しなくなりました。選択項目の後に (unplugged) が付くだけで、オーディオは出力されませんでした。

Enable=Source,Sink,Gateway,Control,Media
Disable=Socket,Headset

$ sudo service bluetooth restart 
bluetooth stop/waiting
bluetooth start/running, process 8552
$ sudo alsa force-reload
Unloading ALSA sound driver modules: snd-seq-midi snd-seq-midi-event snd-seq snd-rawmidi snd-seq-device snd-hda-codec-hdmi snd-hda-codec-realtek snd-hda-codec-generic snd-hda-intel snd-hda-controller snd-hda-codec snd-hwdep snd-pcm snd-timer (failed: modules still loaded: snd-hda-codec-hdmi snd-hda-codec-realtek snd-hda-codec-generic snd-hda-intel snd-hda-controller snd-hda-codec snd-hwdep snd-pcm snd-timer).
Loading ALSA sound driver modules: snd-seq-midi snd-seq-midi-event snd-seq snd-rawmidi snd-seq-device snd-hda-codec-hdmi snd-hda-codec-realtek snd-hda-codec-generic snd-hda-intel snd-hda-controller snd-hda-codec snd-hwdep snd-pcm snd-timer.
$ pulseaudio -k

それで、それを元に戻すと、再び動作するようになりました。

Enable=Source,Sink,Gateway,Control,Media,Headset
Disable=Socket

$ sudo service bluetooth restart 
bluetooth stop/waiting
bluetooth start/running, process 15071

それがどういう意味なのかは分かりません。Linux は時々最悪です!

関連情報