Mercurial > mplayer.hg
view tests/refupdate.sh @ 34799:b1b974133fa1
Avoid repeating mixer error messages from ao.
This avoids continuous printing of e.g.
"[AO_ALSA] Unable to find simple control 'PCM',0."
even after MPlayer switched to software volume control.
author | reimar |
---|---|
date | Sun, 06 May 2012 09:08:12 +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