ffmpeg 各版本号对应表格

想看看ffmpeg各个版本对应表,

bash 复制代码
#! /bin/bash


FF_PATH=$1
CURRENT=`pwd`
RESULT="$CURRENT/test_version.txt"

cd $FF_PATH

if [ -f $RESULT ]; then
    rm $RESULT 
fi

for i in `git branch -a | grep remotes/origin/release/ | grep -v HEAD | grep -v master`; do
    git checkout $i
    echo "Branch: $i" >> $RESULT
    pushd $FF_PATH/libavcodec
    grep -A 3 -E "#define[[:space:]]*LIBAVCODEC_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd

    pushd $FF_PATH/libavformat  
    grep -A 3 -E "#define[[:space:]]*LIBAVFORMAT_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd

    pushd $FF_PATH/libavutil
    grep  -E "#define[[:space:]]*LIBAVFILTER_VERSION_MAJOR[[:space:]]*[0-9]+" version_major.h >>  $RESULT 
    grep  -E "#define[[:space:]]*LIBAVFILTER_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    grep -A 3 -E "#define[[:space:]]*LIBAVUTIL_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd

    pushd $FF_PATH/libswscale
    grep  -E "#define[[:space:]]*LIBSWSCALE_VERSION_MAJOR[[:space:]]*[0-9]+" version_major.h >>  $RESULT 
    grep  -E "#define[[:space:]]*LIBSWSCALE_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    grep -A 2 -E "#define[[:space:]]*LIBSWSCALE_VERSION_MINOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd

    pushd $FF_PATH/libavfilter
    grep  -E "#define[[:space:]]*LIBAVFILTER_VERSION_MAJOR[[:space:]]*[0-9]+" version_major.h >>  $RESULT 
    grep  -E "#define[[:space:]]*LIBAVFILTER_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    grep -A 2 -E "#define[[:space:]]*LIBAVFILTER_VERSION_MINOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd

    pushd $FF_PATH/libavdevice
    grep -E "#define[[:space:]]*LIBAVDEVICE_VERSION_MAJOR[[:space:]]*[0-9]+" version_major.h >>  $RESULT 
    grep -E "#define[[:space:]]*LIBAVDEVICE_VERSION_MAJOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    grep -A 2 -E "#define[[:space:]]*LIBAVDEVICE_VERSION_MINOR[[:space:]]*[0-9]+" version.h >>  $RESULT 
    popd
done

echo "Done"

版本对应:

bash 复制代码
Branch: remotes/origin/release/0.10
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR 61
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MINOR 32
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR  2
#define LIBAVFILTER_VERSION_MINOR 61
#define LIBAVFILTER_VERSION_MICRO 100

Branch: remotes/origin/release/0.11
#define LIBAVCODEC_VERSION_MAJOR 54
#define LIBAVCODEC_VERSION_MINOR  23
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR  6
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR  2
#define LIBAVFILTER_VERSION_MINOR 77
#define LIBAVFILTER_VERSION_MICRO 100

Branch: remotes/origin/release/0.5
Branch: remotes/origin/release/0.6
Branch: remotes/origin/release/0.7
#define LIBAVCODEC_VERSION_MAJOR 52
#define LIBAVCODEC_VERSION_MINOR 123
#define LIBAVCODEC_VERSION_MICRO  0

#define LIBAVFORMAT_VERSION_MAJOR 52
#define LIBAVFORMAT_VERSION_MINOR 111
#define LIBAVFORMAT_VERSION_MICRO  0

Branch: remotes/origin/release/0.8
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR  8
#define LIBAVCODEC_VERSION_MICRO  0

#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MINOR  5
#define LIBAVFORMAT_VERSION_MICRO  0

Branch: remotes/origin/release/0.9
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR 42
#define LIBAVCODEC_VERSION_MICRO  4

#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MINOR 24
#define LIBAVFORMAT_VERSION_MICRO  2

Branch: remotes/origin/release/1.0
#define LIBAVCODEC_VERSION_MAJOR 54
#define LIBAVCODEC_VERSION_MINOR 59
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 29
#define LIBAVFORMAT_VERSION_MICRO 104

#define LIBAVUTIL_VERSION_MAJOR 51
#define LIBAVUTIL_VERSION_MINOR 73
#define LIBAVUTIL_VERSION_MICRO 101

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  3
#define LIBAVFILTER_VERSION_MINOR  17
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  54
#define LIBAVDEVICE_VERSION_MINOR   2
#define LIBAVDEVICE_VERSION_MICRO 101

Branch: remotes/origin/release/1.1
#define LIBAVCODEC_VERSION_MAJOR 54
#define LIBAVCODEC_VERSION_MINOR 86
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 59
#define LIBAVFORMAT_VERSION_MICRO 106

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  13
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 103

#define LIBAVFILTER_VERSION_MAJOR  3
#define LIBAVFILTER_VERSION_MINOR  32
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  54
#define LIBAVDEVICE_VERSION_MINOR   3
#define LIBAVDEVICE_VERSION_MICRO 102

Branch: remotes/origin/release/1.2
#define LIBAVCODEC_VERSION_MAJOR 54
#define LIBAVCODEC_VERSION_MINOR 92
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 63
#define LIBAVFORMAT_VERSION_MICRO 104

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  18
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 2
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR  3
#define LIBAVFILTER_VERSION_MINOR  42
#define LIBAVFILTER_VERSION_MICRO 103

#define LIBAVDEVICE_VERSION_MAJOR  54
#define LIBAVDEVICE_VERSION_MINOR   3
#define LIBAVDEVICE_VERSION_MICRO 103

Branch: remotes/origin/release/2.0
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR  18
#define LIBAVCODEC_VERSION_MICRO 102

#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 12
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  38
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 3
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR  3
#define LIBAVFILTER_VERSION_MINOR  79
#define LIBAVFILTER_VERSION_MICRO 101

#define LIBAVDEVICE_VERSION_MAJOR  55
#define LIBAVDEVICE_VERSION_MINOR   3
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.1
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR  39
#define LIBAVCODEC_VERSION_MICRO 101

#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 19
#define LIBAVFORMAT_VERSION_MICRO 104

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  48
#define LIBAVUTIL_VERSION_MICRO 101

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 5
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  3
#define LIBAVFILTER_VERSION_MINOR  90
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  55
#define LIBAVDEVICE_VERSION_MINOR   5
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.2
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR  52
#define LIBAVCODEC_VERSION_MICRO 102

#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 33
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  66
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 5
#define LIBSWSCALE_VERSION_MICRO 102

#define LIBAVFILTER_VERSION_MAJOR   4
#define LIBAVFILTER_VERSION_MINOR   2
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  55
#define LIBAVDEVICE_VERSION_MINOR  10
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.3
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR  69
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 48
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  52
#define LIBAVUTIL_VERSION_MINOR  92
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 2
#define LIBSWSCALE_VERSION_MINOR 6
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   4
#define LIBAVFILTER_VERSION_MINOR  11
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  55
#define LIBAVDEVICE_VERSION_MINOR  13
#define LIBAVDEVICE_VERSION_MICRO 102

Branch: remotes/origin/release/2.4
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR  1
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR  4
#define LIBAVFORMAT_VERSION_MICRO 101

#define LIBAVUTIL_VERSION_MAJOR  54
#define LIBAVUTIL_VERSION_MINOR   7
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 3
#define LIBSWSCALE_VERSION_MINOR 0
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR  5
#define LIBAVFILTER_VERSION_MINOR  1
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR 56
#define LIBAVDEVICE_VERSION_MINOR  0
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.5
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR  13
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR  15
#define LIBAVFORMAT_VERSION_MICRO 102

#define LIBAVUTIL_VERSION_MAJOR  54
#define LIBAVUTIL_VERSION_MINOR  15
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 3
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  5
#define LIBAVFILTER_VERSION_MINOR  2
#define LIBAVFILTER_VERSION_MICRO 103

#define LIBAVDEVICE_VERSION_MAJOR 56
#define LIBAVDEVICE_VERSION_MINOR  3
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.6
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR  26
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR  25
#define LIBAVFORMAT_VERSION_MICRO 101

#define LIBAVUTIL_VERSION_MAJOR  54
#define LIBAVUTIL_VERSION_MINOR  20
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 3
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  5
#define LIBAVFILTER_VERSION_MINOR  11
#define LIBAVFILTER_VERSION_MICRO 102

#define LIBAVDEVICE_VERSION_MAJOR 56
#define LIBAVDEVICE_VERSION_MINOR  4
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.7
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR  41
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR  36
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  54
#define LIBAVUTIL_VERSION_MINOR  27
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 3
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  5
#define LIBAVFILTER_VERSION_MINOR  16
#define LIBAVFILTER_VERSION_MICRO 101

#define LIBAVDEVICE_VERSION_MAJOR 56
#define LIBAVDEVICE_VERSION_MINOR  4
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/2.8
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR 60
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR  40
#define LIBAVFORMAT_VERSION_MICRO 101

#define LIBAVUTIL_VERSION_MAJOR  54
#define LIBAVUTIL_VERSION_MINOR  31
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR 3
#define LIBSWSCALE_VERSION_MINOR 1
#define LIBSWSCALE_VERSION_MICRO 101

#define LIBAVFILTER_VERSION_MAJOR  5
#define LIBAVFILTER_VERSION_MINOR  40
#define LIBAVFILTER_VERSION_MICRO 101

#define LIBAVDEVICE_VERSION_MAJOR 56
#define LIBAVDEVICE_VERSION_MINOR  4
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/3.0
#define LIBAVCODEC_VERSION_MAJOR  57
#define LIBAVCODEC_VERSION_MINOR  24
#define LIBAVCODEC_VERSION_MICRO 102

#define LIBAVFORMAT_VERSION_MAJOR  57
#define LIBAVFORMAT_VERSION_MINOR  25
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  55
#define LIBAVUTIL_VERSION_MINOR  17
#define LIBAVUTIL_VERSION_MICRO 103

#define LIBSWSCALE_VERSION_MAJOR   4
#define LIBSWSCALE_VERSION_MINOR   0
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   6
#define LIBAVFILTER_VERSION_MINOR  31
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  57
#define LIBAVDEVICE_VERSION_MINOR   0
#define LIBAVDEVICE_VERSION_MICRO 101

Branch: remotes/origin/release/3.1
#define LIBAVCODEC_VERSION_MAJOR  57
#define LIBAVCODEC_VERSION_MINOR  48
#define LIBAVCODEC_VERSION_MICRO 101

#define LIBAVFORMAT_VERSION_MAJOR  57
#define LIBAVFORMAT_VERSION_MINOR  41
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  55
#define LIBAVUTIL_VERSION_MINOR  28
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   4
#define LIBSWSCALE_VERSION_MINOR   1
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   6
#define LIBAVFILTER_VERSION_MINOR  47
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  57
#define LIBAVDEVICE_VERSION_MINOR   0
#define LIBAVDEVICE_VERSION_MICRO 101

Branch: remotes/origin/release/3.2
#define LIBAVCODEC_VERSION_MAJOR  57
#define LIBAVCODEC_VERSION_MINOR  64
#define LIBAVCODEC_VERSION_MICRO 101

#define LIBAVFORMAT_VERSION_MAJOR  57
#define LIBAVFORMAT_VERSION_MINOR  56
#define LIBAVFORMAT_VERSION_MICRO 101

#define LIBAVUTIL_VERSION_MAJOR  55
#define LIBAVUTIL_VERSION_MINOR  34
#define LIBAVUTIL_VERSION_MICRO 101

#define LIBSWSCALE_VERSION_MAJOR   4
#define LIBSWSCALE_VERSION_MINOR   2
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   6
#define LIBAVFILTER_VERSION_MINOR  65
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  57
#define LIBAVDEVICE_VERSION_MINOR   1
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/3.3
#define LIBAVCODEC_VERSION_MAJOR  57
#define LIBAVCODEC_VERSION_MINOR  89
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  57
#define LIBAVFORMAT_VERSION_MINOR  71
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  55
#define LIBAVUTIL_VERSION_MINOR  58
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   4
#define LIBSWSCALE_VERSION_MINOR   6
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   6
#define LIBAVFILTER_VERSION_MINOR  82
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  57
#define LIBAVDEVICE_VERSION_MINOR   6
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/3.4
#define LIBAVCODEC_VERSION_MAJOR  57
#define LIBAVCODEC_VERSION_MINOR 107
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  57
#define LIBAVFORMAT_VERSION_MINOR  83
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  55
#define LIBAVUTIL_VERSION_MINOR  78
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   4
#define LIBSWSCALE_VERSION_MINOR   8
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   6
#define LIBAVFILTER_VERSION_MINOR 107
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  57
#define LIBAVDEVICE_VERSION_MINOR  10
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/4.0
#define LIBAVCODEC_VERSION_MAJOR  58
#define LIBAVCODEC_VERSION_MINOR  18
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  58
#define LIBAVFORMAT_VERSION_MINOR  12
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  56
#define LIBAVUTIL_VERSION_MINOR  14
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   5
#define LIBSWSCALE_VERSION_MINOR   1
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   7
#define LIBAVFILTER_VERSION_MINOR  16
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  58
#define LIBAVDEVICE_VERSION_MINOR   3
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/4.1
#define LIBAVCODEC_VERSION_MAJOR  58
#define LIBAVCODEC_VERSION_MINOR  35
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  58
#define LIBAVFORMAT_VERSION_MINOR  20
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  56
#define LIBAVUTIL_VERSION_MINOR  22
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   5
#define LIBSWSCALE_VERSION_MINOR   3
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   7
#define LIBAVFILTER_VERSION_MINOR  40
#define LIBAVFILTER_VERSION_MICRO 101

#define LIBAVDEVICE_VERSION_MAJOR  58
#define LIBAVDEVICE_VERSION_MINOR   5
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/4.2
#define LIBAVCODEC_VERSION_MAJOR  58
#define LIBAVCODEC_VERSION_MINOR  54
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  58
#define LIBAVFORMAT_VERSION_MINOR  29
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  56
#define LIBAVUTIL_VERSION_MINOR  31
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   5
#define LIBSWSCALE_VERSION_MINOR   5
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   7
#define LIBAVFILTER_VERSION_MINOR  57
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  58
#define LIBAVDEVICE_VERSION_MINOR   8
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/4.3
#define LIBAVCODEC_VERSION_MAJOR  58
#define LIBAVCODEC_VERSION_MINOR  91
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  58
#define LIBAVFORMAT_VERSION_MINOR  45
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  56
#define LIBAVUTIL_VERSION_MINOR  51
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   5
#define LIBSWSCALE_VERSION_MINOR   7
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   7
#define LIBAVFILTER_VERSION_MINOR  85
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  58
#define LIBAVDEVICE_VERSION_MINOR  10
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/4.4
#define LIBAVCODEC_VERSION_MAJOR  58
#define LIBAVCODEC_VERSION_MINOR 134
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  58
#define LIBAVFORMAT_VERSION_MINOR  76
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  56
#define LIBAVUTIL_VERSION_MINOR  70
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   5
#define LIBSWSCALE_VERSION_MINOR   9
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   7
#define LIBAVFILTER_VERSION_MINOR 110
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  58
#define LIBAVDEVICE_VERSION_MINOR  13
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/5.0
#define LIBAVCODEC_VERSION_MAJOR  59
#define LIBAVCODEC_VERSION_MINOR  18
#define LIBAVCODEC_VERSION_MICRO 100

#define LIBAVFORMAT_VERSION_MAJOR  59
#define LIBAVFORMAT_VERSION_MINOR  16
#define LIBAVFORMAT_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_MAJOR  57
#define LIBAVUTIL_VERSION_MINOR  17
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   6
#define LIBSWSCALE_VERSION_MINOR   4
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   8
#define LIBAVFILTER_VERSION_MINOR  24
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  59
#define LIBAVDEVICE_VERSION_MINOR   4
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/5.1
#define LIBAVUTIL_VERSION_MAJOR  57
#define LIBAVUTIL_VERSION_MINOR  28
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   6
#define LIBSWSCALE_VERSION_MINOR   7
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   8
#define LIBAVFILTER_VERSION_MINOR  44
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  59
#define LIBAVDEVICE_VERSION_MINOR   7
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/6.0
#define LIBAVUTIL_VERSION_MAJOR  58
#define LIBAVUTIL_VERSION_MINOR   2
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   7
#define LIBSWSCALE_VERSION_MINOR   1
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   9
#define LIBAVFILTER_VERSION_MINOR   3
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  60
#define LIBAVDEVICE_VERSION_MINOR   1
#define LIBAVDEVICE_VERSION_MICRO 100

Branch: remotes/origin/release/6.1
#define LIBAVUTIL_VERSION_MAJOR  58
#define LIBAVUTIL_VERSION_MINOR  29
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBSWSCALE_VERSION_MAJOR   7
#define LIBSWSCALE_VERSION_MINOR   5
#define LIBSWSCALE_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_MAJOR   9
#define LIBAVFILTER_VERSION_MINOR  12
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVDEVICE_VERSION_MAJOR  60
#define LIBAVDEVICE_VERSION_MINOR   3
#define LIBAVDEVICE_VERSION_MICRO 100
相关推荐
胡耀超15 小时前
DataOceanAI Dolphin(ffmpeg音频转化教程) 多语言(中国方言)语音识别系统部署与应用指南
python·深度学习·ffmpeg·音视频·语音识别·多模态·asr
byxdaz15 小时前
FFmpeg QoS 处理
ffmpeg
codelancera2 天前
ffmpeg-调整视频分辨率
ffmpeg·音视频
chenchao_shenzhen3 天前
RK3568嵌入式音视频硬件编解码4K 60帧 rkmpp FFmpeg7.1 音视频开发
ffmpeg·音视频·rk3588·音视频开发·嵌入式开发·瑞芯微rk3568·硬件编解码
_多拉不懂A梦3 天前
FFmepg源码系列-avformat_open_input()
c++·ffmpeg·音视频
阿飞__8 天前
C++使用FFmpeg进行视频推流
c++·ffmpeg·音视频
mortimer8 天前
pydub下音频处理:跨越wav格式的4GB限制这道坎
python·ffmpeg·numpy
aqi008 天前
FFmpeg开发笔记(八十)使用百变魔音AiSound实现变声特效
android·ffmpeg·音视频·直播·流媒体
王江奎8 天前
FFmpeg 视频旋转信息处理:3.4 vs 7.0.2
ffmpeg·音视频