You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	rv34_parser: Adjust #if for disabling individual parsers
As CONFIG_ values are always defined, they have to be checked via #if.
This commit is contained in:
		| @@ -76,7 +76,7 @@ static int rv34_parse(AVCodecParserContext *s, | ||||
|     return buf_size; | ||||
| } | ||||
|  | ||||
| #ifdef CONFIG_RV30_PARSER | ||||
| #if CONFIG_RV30_PARSER | ||||
| AVCodecParser ff_rv30_parser = { | ||||
|     .codec_ids      = { AV_CODEC_ID_RV30 }, | ||||
|     .priv_data_size = sizeof(RV34ParseContext), | ||||
| @@ -84,7 +84,7 @@ AVCodecParser ff_rv30_parser = { | ||||
| }; | ||||
| #endif | ||||
|  | ||||
| #ifdef CONFIG_RV40_PARSER | ||||
| #if CONFIG_RV40_PARSER | ||||
| AVCodecParser ff_rv40_parser = { | ||||
|     .codec_ids      = { AV_CODEC_ID_RV40 }, | ||||
|     .priv_data_size = sizeof(RV34ParseContext), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user