Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d811d15479f
Choose a base ref
...
head repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d470e40fe61b
Choose a head ref
  • 5 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2014

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9387328 View commit details

Commits on Nov 23, 2014

  1. Copy the full SHA
    fda7e1a View commit details
  2. Copy the full SHA
    9789a90 View commit details
  3. Copy the full SHA
    2488eb7 View commit details

Commits on Nov 24, 2014

  1. Merge pull request #38 from CarlFK/master

    Adds test_ui_lag1.sh
    mithro committed Nov 24, 2014
    Copy the full SHA
    d470e40 View commit details
Showing with 31 additions and 0 deletions.
  1. +31 −0 tests/test_ui_lag1.sh
31 changes: 31 additions & 0 deletions tests/test_ui_lag1.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/bin/bash -ex

# test_ui_lag1.sh
# demos issue #30: lag between thumb and canvas

cd ../tools

./gst-switch-srv & srvpid=$!
sleep 5
./gst-switch-ui & uipid=$!

# srcpid=()
for i in 1 2 3 4 5 6; do
sleep 2
gst-launch-1.0 videotestsrc pattern=18 is-live=1 \
! textoverlay text="s ${i}" \
halignment=2 valignment=2 font-desc="Sans 40" \
! timeoverlay font-desc="Sans 40" \
! clockoverlay time-format="%S" font-desc="Sans 240" \
! video/x-raw, width=300, height=200 \
! gdppay \
! tcpclientsink port=3000 \
& srcpid[i]=$!
done

read -p "press enter to kill all the processes:"

kill $srvpid $uipid
for i in 1 2 3 4 5 6; do kill ${srcpid[i]}; done