Mercurial > mplayer.hg
view tests/refupdate.sh @ 36149:f69d9caa3d84
Split init_vo and call only the necessary part from get_buffer.
This unbreaks mencoder which would run into a libavcodec
assert when trying to open the encoder from inside the
open function of the decoder.
author | reimar |
---|---|
date | Tue, 07 May 2013 20:39:14 +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