diff options
author | Janne Grunau <janne-ffmpeg@jannau.net> | 2011-03-14 22:27:40 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2011-03-16 21:54:39 +0100 |
commit | a03be6e1ba4cbf9984b0bbdb674704bbb2da6713 (patch) | |
tree | fdc640229695a2ec69acebe495f579bc58a62577 | |
parent | 29ba091136a5e04574f7bfc1b17536c923958f6f (diff) | |
download | ffmpeg-a03be6e1ba4cbf9984b0bbdb674704bbb2da6713.tar.gz |
use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*
-rw-r--r-- | cmdutils.c | 4 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | libavcodec/utils.c | 2 | ||||
-rw-r--r-- | libavdevice/avdevice.c | 2 | ||||
-rw-r--r-- | libavfilter/avfilter.c | 2 | ||||
-rw-r--r-- | libavformat/utils.c | 2 | ||||
-rw-r--r-- | libavutil/utils.c | 2 | ||||
-rw-r--r-- | libpostproc/postprocess.c | 2 | ||||
-rw-r--r-- | libswscale/utils.c | 2 | ||||
-rwxr-xr-x | version.sh | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/cmdutils.c b/cmdutils.c index 7012d04cc5..1e7aacf00d 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -423,7 +423,7 @@ static void print_all_libs_info(FILE* outstream, int flags) void show_banner(void) { - fprintf(stderr, "%s version " FFMPEG_VERSION ", Copyright (c) %d-%d the FFmpeg developers\n", + fprintf(stderr, "%s version " LIBAV_VERSION ", Copyright (c) %d-%d the Libav developers\n", program_name, program_birth_year, this_year); fprintf(stderr, " built on %s %s with %s %s\n", __DATE__, __TIME__, CC_TYPE, CC_VERSION); @@ -433,7 +433,7 @@ void show_banner(void) } void show_version(void) { - printf("%s " FFMPEG_VERSION "\n", program_name); + printf("%s " LIBAV_VERSION "\n", program_name); print_all_libs_info(stdout, SHOW_VERSION); } @@ -3298,7 +3298,7 @@ cat > $TMPH <<EOF #ifndef LIBAV_CONFIG_H #define LIBAV_CONFIG_H #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)" -#define FFMPEG_LICENSE "$(c_escape $license)" +#define LIBAV_LICENSE "$(c_escape $license)" #define FFMPEG_DATADIR "$(eval c_escape $datadir)" #define CC_TYPE "$cc_type" #define CC_VERSION $cc_version diff --git a/libavcodec/utils.c b/libavcodec/utils.c index be9c912560..13e58a219d 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1041,7 +1041,7 @@ const char *avcodec_configuration(void) const char *avcodec_license(void) { #define LICENSE_PREFIX "libavcodec license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } void avcodec_init(void) diff --git a/libavdevice/avdevice.c b/libavdevice/avdevice.c index 01db8776ac..6c363feaa4 100644 --- a/libavdevice/avdevice.c +++ b/libavdevice/avdevice.c @@ -31,5 +31,5 @@ const char * avdevice_configuration(void) const char * avdevice_license(void) { #define LICENSE_PREFIX "libavdevice license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index c0ead5c4be..a46bc53d6a 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -40,7 +40,7 @@ const char *avfilter_configuration(void) const char *avfilter_license(void) { #define LICENSE_PREFIX "libavfilter license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask) diff --git a/libavformat/utils.c b/libavformat/utils.c index 2f1db44572..b1c9755646 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -57,7 +57,7 @@ const char *avformat_configuration(void) const char *avformat_license(void) { #define LICENSE_PREFIX "libavformat license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } /* fraction handling */ diff --git a/libavutil/utils.c b/libavutil/utils.c index 488bac4cc3..52152f5af3 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -37,5 +37,5 @@ const char *avutil_configuration(void) const char *avutil_license(void) { #define LICENSE_PREFIX "libavutil license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 7466b18be3..6834dd723d 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -100,7 +100,7 @@ const char *postproc_configuration(void) const char *postproc_license(void) { #define LICENSE_PREFIX "libpostproc license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } #if HAVE_ALTIVEC_H diff --git a/libswscale/utils.c b/libswscale/utils.c index 34988a0c66..1570297258 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -59,7 +59,7 @@ const char *swscale_configuration(void) const char *swscale_license(void) { #define LICENSE_PREFIX "libswscale license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1; } #define RET 0xC3 //near return opcode for x86 diff --git a/version.sh b/version.sh index b34ee2c88c..66a1c6f0ac 100755 --- a/version.sh +++ b/version.sh @@ -23,7 +23,7 @@ if [ -z "$2" ]; then exit fi -NEW_REVISION="#define FFMPEG_VERSION \"$version\"" +NEW_REVISION="#define LIBAV_VERSION \"$version\"" OLD_REVISION=$(cat version.h 2> /dev/null) # Update version.h only on revision changes to avoid spurious rebuilds |