Use the output data type to determine the maximum number of samples that can be
[FFMpeg-mirror/lagarith.git] / version.sh
blob250caef007e2ed898515ca354a3b83865eb8f3d0
1 #!/bin/sh
3 # check for SVN revision number
4 revision=$(cat snapshot_version 2> /dev/null)
5 test $revision || revision=$(cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2)
6 test $revision || revision=$(cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2)
7 test $revision || revision=$(cd "$1" && sed -n -e '/^dir$/{n
10 }' .svn/entries 2>/dev/null)
11 test $revision && revision=SVN-r$revision
13 # check for git short hash
14 if ! test $revision; then
15 revision=$(cd "$1" && git log -1 --pretty=format:%h)
16 test $revision && revision=git-$revision
19 # no revision number found
20 test $revision || revision=UNKNOWN
22 # releases extract the version number from the VERSION file
23 version=$(cat VERSION 2> /dev/null)
24 test $version || version=$revision
26 test -n "$3" && version=$version-$3
28 NEW_REVISION="#define FFMPEG_VERSION \"$version\""
29 OLD_REVISION=$(cat version.h 2> /dev/null)
31 # Update version.h only on revision changes to avoid spurious rebuilds
32 if test "$NEW_REVISION" != "$OLD_REVISION"; then
33 echo "$NEW_REVISION" > "$2"