mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 04:26:37 +08:00 
			
		
		
		
	Silence "string-plus-int" warning shown by clang.
libswscale/utils.c:89:42: warning: adding 'unsigned long' to a string does not append to the string [-Wstring-plus-int]
This commit is contained in:
		| @@ -1444,7 +1444,7 @@ const char *avcodec_configuration(void) | |||||||
| const char *avcodec_license(void) | const char *avcodec_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libavcodec license: " | #define LICENSE_PREFIX "libavcodec license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| int av_get_exact_bits_per_sample(enum AVCodecID codec_id) | int av_get_exact_bits_per_sample(enum AVCodecID codec_id) | ||||||
|   | |||||||
| @@ -75,7 +75,7 @@ const char * avdevice_configuration(void) | |||||||
| const char * avdevice_license(void) | const char * avdevice_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libavdevice license: " | #define LICENSE_PREFIX "libavdevice license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| static void *device_next(void *prev, int output, | static void *device_next(void *prev, int output, | ||||||
|   | |||||||
| @@ -88,7 +88,7 @@ const char *avfilter_configuration(void) | |||||||
| const char *avfilter_license(void) | const char *avfilter_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libavfilter license: " | #define LICENSE_PREFIX "libavfilter license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| void ff_command_queue_pop(AVFilterContext *filter) | void ff_command_queue_pop(AVFilterContext *filter) | ||||||
|   | |||||||
| @@ -77,7 +77,7 @@ const char *avformat_configuration(void) | |||||||
| const char *avformat_license(void) | const char *avformat_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libavformat license: " | #define LICENSE_PREFIX "libavformat license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| int ff_lock_avformat(void) | int ff_lock_avformat(void) | ||||||
|   | |||||||
| @@ -70,7 +70,7 @@ const char *avutil_configuration(void) | |||||||
| const char *avutil_license(void) | const char *avutil_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libavutil license: " | #define LICENSE_PREFIX "libavutil license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| const char *av_get_media_type_string(enum AVMediaType media_type) | const char *av_get_media_type_string(enum AVMediaType media_type) | ||||||
|   | |||||||
| @@ -108,7 +108,7 @@ const char *postproc_configuration(void) | |||||||
| const char *postproc_license(void) | const char *postproc_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libpostproc license: " | #define LICENSE_PREFIX "libpostproc license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| #define GET_MODE_BUFFER_SIZE 500 | #define GET_MODE_BUFFER_SIZE 500 | ||||||
|   | |||||||
| @@ -46,7 +46,7 @@ const char *swresample_configuration(void) | |||||||
| const char *swresample_license(void) | const char *swresample_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libswresample license: " | #define LICENSE_PREFIX "libswresample license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){ | int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){ | ||||||
|   | |||||||
| @@ -86,7 +86,7 @@ const char *swscale_configuration(void) | |||||||
| const char *swscale_license(void) | const char *swscale_license(void) | ||||||
| { | { | ||||||
| #define LICENSE_PREFIX "libswscale license: " | #define LICENSE_PREFIX "libswscale license: " | ||||||
|     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; | ||||||
| } | } | ||||||
|  |  | ||||||
| typedef struct FormatEntry { | typedef struct FormatEntry { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Carl Eugen Hoyos
					Carl Eugen Hoyos