You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	swr: include stdint.h instead of inttypes.h.
stdint.h is for the [u]int*_t types, which is the only thing we need for the prototypes. inttypes.h includes stdint.h and defines more thing we don't need here. Bump micro in case a user app was relying on this include for its own code.
This commit is contained in:
		| @@ -92,7 +92,7 @@ | ||||
|  * swr_free(). | ||||
|  */ | ||||
|  | ||||
| #include <inttypes.h> | ||||
| #include <stdint.h> | ||||
| #include "libavutil/samplefmt.h" | ||||
|  | ||||
| #include "libswresample/version.h" | ||||
|   | ||||
| @@ -30,7 +30,7 @@ | ||||
|  | ||||
| #define LIBSWRESAMPLE_VERSION_MAJOR 0 | ||||
| #define LIBSWRESAMPLE_VERSION_MINOR 17 | ||||
| #define LIBSWRESAMPLE_VERSION_MICRO 100 | ||||
| #define LIBSWRESAMPLE_VERSION_MICRO 101 | ||||
|  | ||||
| #define LIBSWRESAMPLE_VERSION_INT  AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \ | ||||
|                                                   LIBSWRESAMPLE_VERSION_MINOR, \ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user