mirror of https://git.ffmpeg.org/ffmpeg.git
fate: fix concat demuxer extended tests on windows
Line endings do matter to md5sum... Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
9bd4f26b55
commit
c9944f7596
|
@ -262,7 +262,7 @@ concat(){
|
||||||
awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile
|
awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile
|
||||||
|
|
||||||
if [ "$mode" = "md5" ]; then
|
if [ "$mode" = "md5" ]; then
|
||||||
run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile > $packetfile
|
run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | sed 's/\r//g' > $packetfile
|
||||||
do_md5sum $packetfile
|
do_md5sum $packetfile
|
||||||
else
|
else
|
||||||
run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile
|
run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile
|
||||||
|
|
Loading…
Reference in New Issue