[encoder] Added 1/8th pel MV refinement
[schroedinger/research-port.git] / testsuite / manual / encode_googleperf
blob46ff7002174aa20f7d76cce49b6ae6abd97bb5fb
1 #!/bin/bash
4 GST_LAUNCH=$(type -p gst-launch-0.10)
5 if test "$GST_LAUNCH" = "" ; then
6 echo This test requires GStreamer
7 fi
9 if test ! -f /usr/lib/libprofiler.so -o ! -f /usr/bin/pprof ; then
10 echo This test requires the Google profiler tools.
11 exit 1
14 schroopts="mv-precision=1"
16 CPUPROFILE=prof.out \
17 LD_PRELOAD=/usr/lib/libprofiler.so \
18 $GST_LAUNCH \
19 filesrc location=~/media/masters/sage.HD720-master.drc ! \
20 schrodec ! \
21 schroenc $schroopts ! filesink location=out.drc
23 pprof --pdf $GST_LAUNCH prof.out >prof.pdf