mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	codec: Fix ADPCM distortion caused by incorrect nibble order
Closes #2049. Signed-off-by: MerryMage <MerryMage@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									09063dc5bb
								
							
						
					
					
						commit
						0bbda3bab4
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -58,11 +58,11 @@ StereoBuffer16 DecodeADPCM(const u8* const data, const size_t sample_count, cons | |||
|         size_t outputi = framei * SAMPLES_PER_FRAME; | ||||
|         size_t datai = framei * FRAME_LEN + 1; | ||||
|         for (size_t i = 0; i < SAMPLES_PER_FRAME && outputi < sample_count; i += 2) { | ||||
|             const s16 sample1 = decode_sample(SIGNED_NIBBLES[data[datai] & 0xF]); | ||||
|             const s16 sample1 = decode_sample(SIGNED_NIBBLES[data[datai] >> 4]); | ||||
|             ret[outputi].fill(sample1); | ||||
|             outputi++; | ||||
| 
 | ||||
|             const s16 sample2 = decode_sample(SIGNED_NIBBLES[data[datai] >> 4]); | ||||
|             const s16 sample2 = decode_sample(SIGNED_NIBBLES[data[datai] & 0xF]); | ||||
|             ret[outputi].fill(sample2); | ||||
|             outputi++; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue