gstreamer/subprojects/gstreamer/scripts/git-version.sh
Olivier Crête 48c43e5b7f gst-omx: Retire the whole package
The OpenMAX standard is long dead and even the Raspberry Pi OS
no longer supports it.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4976>
2023-07-16 19:10:03 +00:00

26 lines
556 B
Bash
Executable file

#!/bin/bash
# display the latest commit in the current branch of all gstreamer modules.
# run this from a directory that contains the checkouts for each of the
# modules
for m in \
gstreamer gst-plugins-base \
gst-plugins-good gst-plugins-ugly gst-plugins-bad \
gst-ffmpeg gst-libav \
gst-editing-services \
gst-python gstreamer-sharp \
gnonlin \
gst-rtsp-server \
gst-devtools \
; do
if test -d $m; then
cd $m
echo $m
git branch | grep '*'
git log | head -n 3 | sed -n '1p;3p'
echo ""
cd ..
fi
done