shithub: openh264

Download patch

ref: ac1dbf5aa00a52df7a195e4ba0989ca7c5650355
parent: 977768ac880deaa63c43998a84d0b0f68651f67e
parent: 7ba7881c95c56b2ac4736e9891b02d6ed3f96cf1
author: Ethan Hugg <ethanhugg@gmail.com>
date: Mon Jan 27 17:35:05 EST 2014

Merge pull request #245 from varunbpatil/remove_unused

Remove autoclean script (Linux)

--- a/testbin/AutoClean_Linux.sh
+++ /dev/null
@@ -1,41 +1,0 @@
-#!/bin/bash
-
-CurDir="${PWD}"
-
-if [ "$(basename ${CurDir})" != "testbin" ]; then
-    usage="This file must located in ../testbin/ based on our code structure"
-    echo ${usage}
-    exit 1
-fi
-
-EncoderMakeDir="../codec/build/linux/enc"
-DecoderMakeDir="../codec/build/linux/dec"
-VPMakeDir="../processing/build/linux"
-
-CodecBinDir="../codec/build/linux/bin"
-VPBinDir="../bin/linux"
-
-MakefileLogFile="${CurDir}/CodecVPBuild.log"
-
-#************************************************
-#call Encoder make file
-echo "encoder cleaning....."
-cd ${EncoderMakeDir}
-make clean
-
-#************************************************
-#call Decoder make file
-echo "decoder cleaning....."
-cd ${CurDir}
-cd ${DecoderMakeDir}
-make clean
-
-#************************************************
-#call VP make file
-echo "VP cleaning....."
-cd ${CurDir}
-cd ${VPMakeDir}
-make clean
-
-cd ${CurDir}
-rm -f *.exe *.so *.a *.log ../bin