summarylogtreecommitdiffstats
path: root/fetch-soname-by-chromium.sh
blob: 1a21b4c8aee6867392e901c2731b901458d68a61 (plain)
1
2
3
4
5
6
#!/bin/bash
url='https://chromium.googlesource.com/chromium/third_party/ffmpeg'
_commit=$(curl -sL https://raw.githubusercontent.com/chromium/chromium/refs/tags/${1}/DEPS | grep -oP "'ffmpeg_revision': '\K[0-9a-f]{40}'" | tr -d \')
for _h in libav{codec,format}/version_major.h libavutil/version.h; do
 curl -sL https://chromium.googlesource.com/chromium/third_party/ffmpeg/+/${_commit}/${_h}?format=TEXT|base64 -d|grep -E 'VERSION_MAJOR +[0-9]'
done