latency: fix custom event leaks
[platform/upstream/gstreamer.git] / scripts / git-version.sh
1 #!/bin/bash
2
3 # display the latest commit in the current branch of all gstreamer modules.
4 # run this from a directory that contains the checkouts for each of the
5 # modules
6
7 for m in \
8   gstreamer gst-plugins-base \
9   gst-plugins-good gst-plugins-ugly gst-plugins-bad \
10   gst-ffmpeg gst-libav \
11   gst-editing-services \
12   gst-python gstreamer-sharp \
13   gnonlin \
14   gst-rtsp-server \
15   gst-omx \
16   gst-devtools \
17   ; do
18   if test -d $m; then
19     cd $m
20       echo $m
21       git branch | grep '*'
22       git log | head -n 3 | sed -n '1p;3p'
23       echo ""
24     cd ..
25   fi
26 done