comparison utils.c @ 5491:a7aeae5a367b libavformat

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 38093ab40afe
children 9cc93fd4bb72
comparison
equal deleted inserted replaced
5490:38093ab40afe 5491:a7aeae5a367b
39 unsigned avformat_version(void) 39 unsigned avformat_version(void)
40 { 40 {
41 return LIBAVFORMAT_VERSION_INT; 41 return LIBAVFORMAT_VERSION_INT;
42 } 42 }
43 43
44 const char * avformat_configuration(void) 44 const char *avformat_configuration(void)
45 { 45 {
46 return FFMPEG_CONFIGURATION; 46 return FFMPEG_CONFIGURATION;
47 } 47 }
48 48
49 const char * avformat_license(void) 49 const char *avformat_license(void)
50 { 50 {
51 #define LICENSE_PREFIX "libavformat license: " 51 #define LICENSE_PREFIX "libavformat license: "
52 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; 52 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
53 } 53 }
54 54