fate: fix enc_dec_pcm tests with remote target

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2012-03-17 16:22:47 +00:00
parent c3da9f5060
commit b1740cb00a
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ enc_dec_pcm(){
shift 2 shift 2
encfile="${outdir}/${test}.${out_fmt}" encfile="${outdir}/${test}.${out_fmt}"
cleanfiles=$encfile cleanfiles=$encfile
avconv -i $ref "$@" -f $out_fmt -y $encfile || return avconv -i $ref "$@" -f $out_fmt -y ${target_path}/${encfile} || return
avconv -i $encfile -c:a pcm_${pcm_fmt} -f wav - avconv -i ${target_path}/${encfile} -c:a pcm_${pcm_fmt} -f wav -
} }
regtest(){ regtest(){