mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	bluez5-device: Log subband count instead of subband flag
As log information says, SBC log info have to have one of two subband count values: 4 or 8, instead of subband flag.
This commit is contained in:
		
							parent
							
								
									65dbc609dc
								
							
						
					
					
						commit
						8cf5e9211c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -1318,7 +1318,7 @@ static void transport_config(struct userdata *u) {
 | 
				
			||||||
        sbc_info->frame_length = sbc_get_frame_length(&sbc_info->sbc);
 | 
					        sbc_info->frame_length = sbc_get_frame_length(&sbc_info->sbc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        pa_log_info("SBC parameters: allocation=%u, subbands=%u, blocks=%u, bitpool=%u",
 | 
					        pa_log_info("SBC parameters: allocation=%u, subbands=%u, blocks=%u, bitpool=%u",
 | 
				
			||||||
                    sbc_info->sbc.allocation, sbc_info->sbc.subbands, sbc_info->sbc.blocks, sbc_info->sbc.bitpool);
 | 
					                    sbc_info->sbc.allocation, sbc_info->sbc.subbands ? 8 : 4, sbc_info->sbc.blocks, sbc_info->sbc.bitpool);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue