You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	lavfi/anullsrc: simplify logging code in config_props
This commit is contained in:
		| @@ -98,10 +98,8 @@ static int config_props(AVFilterLink *outlink) | |||||||
| { | { | ||||||
|     ANullContext *null = outlink->src->priv; |     ANullContext *null = outlink->src->priv; | ||||||
|     char buf[128]; |     char buf[128]; | ||||||
|     int chans_nb; |  | ||||||
|  |  | ||||||
|     chans_nb = av_get_channel_layout_nb_channels(null->channel_layout); |     av_get_channel_layout_string(buf, sizeof(buf), 0, null->channel_layout); | ||||||
|     av_get_channel_layout_string(buf, sizeof(buf), chans_nb, null->channel_layout); |  | ||||||
|     av_log(outlink->src, AV_LOG_VERBOSE, |     av_log(outlink->src, AV_LOG_VERBOSE, | ||||||
|            "sample_rate:%d channel_layout:'%s' nb_samples:%d\n", |            "sample_rate:%d channel_layout:'%s' nb_samples:%d\n", | ||||||
|            null->sample_rate, buf, null->nb_samples); |            null->sample_rate, buf, null->nb_samples); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user