mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +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
					
				@ -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…
	
		Reference in New Issue
	
	Block a user