mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
Merge pull request #63859 from talyz/fix-aac-defaults
pulseaudio-modules-bt: Patch default settings for AAC encoding
This commit is contained in:
commit
277f865c2a
@ -35,6 +35,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./fix-install-path.patch
|
./fix-install-path.patch
|
||||||
|
./fix-aac-defaults.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -0,0 +1,15 @@
|
|||||||
|
diff --git a/src/modules/bluetooth/a2dp/a2dp_aac.c b/src/modules/bluetooth/a2dp/a2dp_aac.c
|
||||||
|
index 394a7a0..cf5abaf 100644
|
||||||
|
--- a/src/modules/bluetooth/a2dp/a2dp_aac.c
|
||||||
|
+++ b/src/modules/bluetooth/a2dp/a2dp_aac.c
|
||||||
|
@@ -90,8 +90,8 @@ pa_aac_encoder_init(pa_a2dp_source_read_cb_t read_cb, pa_a2dp_source_read_buf_fr
|
||||||
|
info->read_pcm = read_cb;
|
||||||
|
info->read_buf_free = free_cb;
|
||||||
|
info->aacenc_handle_opened = false;
|
||||||
|
- info->aac_enc_bitrate_mode = 5;
|
||||||
|
- info->aac_afterburner = false;
|
||||||
|
+ info->aac_enc_bitrate_mode = 0;
|
||||||
|
+ info->aac_afterburner = true;
|
||||||
|
info->force_pa_fmt = PA_SAMPLE_INVALID;
|
||||||
|
return true;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user