You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Use compression level to set mp3lame quality option.
Patch by Nicolas George nicolas george normalesup org Original thread: [PATCH] libmp3lame: set noise shaping & psychoacoustic algorithms quality Date: 07/31/2008 03:53 PM Originally committed as revision 14494 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		
				
					committed by
					
						 Benoit Fouet
						Benoit Fouet
					
				
			
			
				
	
			
			
			
						parent
						
							014d2f0509
						
					
				
				
					commit
					afffd357b0
				
			| @@ -50,8 +50,11 @@ static av_cold int MP3lame_encode_init(AVCodecContext *avctx) | ||||
|     lame_set_in_samplerate(s->gfp, avctx->sample_rate); | ||||
|     lame_set_out_samplerate(s->gfp, avctx->sample_rate); | ||||
|     lame_set_num_channels(s->gfp, avctx->channels); | ||||
|     /* lame 3.91 dies on quality != 5 */ | ||||
|     lame_set_quality(s->gfp, 5); | ||||
|     if(avctx->compression_level == FF_COMPRESSION_DEFAULT) { | ||||
|         lame_set_quality(s->gfp, 5); | ||||
|     } else { | ||||
|         lame_set_quality(s->gfp, avctx->compression_level); | ||||
|     } | ||||
|     /* lame 3.91 doesn't work in mono */ | ||||
|     lame_set_mode(s->gfp, JOINT_STEREO); | ||||
|     lame_set_brate(s->gfp, avctx->bit_rate/1000); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user