You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Mark adx_decode_init() as type int instead of void, the function returns
a value. Fixes the warning: adxdec.c:36: warning: 'return' with a value, in function returning void Originally committed as revision 14814 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -30,7 +30,7 @@ | ||||
|  * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/ | ||||
|  */ | ||||
|  | ||||
| static av_cold void adx_decode_init(AVCodecContext *avctx) | ||||
| static av_cold int adx_decode_init(AVCodecContext *avctx) | ||||
| { | ||||
|     avctx->sample_fmt = SAMPLE_FMT_S16; | ||||
|     return 0; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user