view tests/refupdate.sh @ 34493:da31318562d9

vd_theora: Skip th_decode_ycbcr_out() for packets representing dropped frames. In case of 0-byte packets we do not need to call th_decode_ycbcr_out() to decode the frame because we have a duplicated frame, and so we can use the last frame. patch by Giorgio Vazzana, mywing81 gmail com
author diego
date Thu, 19 Jan 2012 14:36:17 +0000
parents 6dc79618ec0e
children
line wrap: on
line source

#!/bin/sh
# updates all changed/new results in ref/
find res -name '*.bad' | while read bad_res ; do
  ref_file="ref/${bad_res#res/}"
  ref_file="${ref_file%.bad}"
  mkdir -p "$(dirname "$ref_file")"
  cp "$bad_res" "$ref_file"
done