comparison utils.c @ 10764:4546d91de818 libavcodec

Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg.
author stefano
date Sun, 03 Jan 2010 14:31:25 +0000
parents 7e316791ac7b
children c4e157b47af5
comparison
equal deleted inserted replaced
10763:98bf00fa95cd 10764:4546d91de818
893 unsigned avcodec_version( void ) 893 unsigned avcodec_version( void )
894 { 894 {
895 return LIBAVCODEC_VERSION_INT; 895 return LIBAVCODEC_VERSION_INT;
896 } 896 }
897 897
898 const char * avcodec_configuration(void) 898 const char *avcodec_configuration(void)
899 { 899 {
900 return FFMPEG_CONFIGURATION; 900 return FFMPEG_CONFIGURATION;
901 } 901 }
902 902
903 const char * avcodec_license(void) 903 const char *avcodec_license(void)
904 { 904 {
905 #define LICENSE_PREFIX "libavcodec license: " 905 #define LICENSE_PREFIX "libavcodec license: "
906 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; 906 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
907 } 907 }
908 908